Verse Cortex Weekly Digest
Week of June 21, 2026
This week: 1 release notes · 7 new templates · 6 sample projects · 5 verse tutorials · 235 community snippets · 6 creative devices · 75 guides & concepts · 4 other
Contents
- Release Notes (1)
- New Templates (7)
- Sample Projects (6)
- Verse Tutorials (5)
- Community Snippets (235)
- Creative Devices (6)
- Guides & Concepts (75)
- Other (4)
Release Notes
[UPDATED] What's New in Unreal Editor for Fortnite
Stay tuned for updates on the latest Unreal Editor for Fortnite Release Notes!
- Source: https://dev.epicgames.com/documentation/en-us/fortnite/whats-new-in-unreal-editor-for-fortnite
- Local: data/epic-docs/documentation/en-us/fortnite/whats-new-in-unreal-editor-for-fortnite.md
New Templates
[UPDATED] Template Islands in Fortnite Creative
A template island helps you get started with a specific design concept or game mode, such as a zone war, box fight, or escape island.
- Source: https://dev.epicgames.com/documentation/en-us/fortnite/template-islands-in-fortnite-creative
- Local: data/epic-docs/documentation/en-us/fortnite/template-islands-in-fortnite-creative.md
[UPDATED] Unreal Editor for Fortnite Starter Templates
Unreal Editor for Fortnite (UEFN) comes with a wide range of starter kits. These feature examples and game examples are designed to help ramp-up your projects by letting you experience the features and mechanics available in the editor.
- Source: https://dev.epicgames.com/documentation/en-us/fortnite/unreal-editor-for-fortnite-starter-templates
- Local: data/epic-docs/documentation/en-us/fortnite/unreal-editor-for-fortnite-starter-templates.md
[UPDATED] Verse Detonation Template in Unreal Editor for Fortnite
The Verse Detonation Template shows you how to create a game where two teams battle to arm and disarm bomb sites.
- Source: https://dev.epicgames.com/documentation/fortnite/verse-detonation-template-in-unreal-editor-for-fortnite
- Local: data/epic-docs/documentation/fortnite/verse-detonation-template-in-unreal-editor-for-fortnite.md
[UPDATED] Verse Elimination Template in Unreal Editor for Fortnite
In Verse Elimination, players will battle with a loadout that changes with each elimination. These mechanics are achieved by linking devices like the Item Granter device to the Verse device.
- Source: https://dev.epicgames.com/documentation/fortnite/verse-elimination-template-in-unreal-editor-for-fortnite
- Local: data/epic-docs/documentation/fortnite/verse-elimination-template-in-unreal-editor-for-fortnite.md
[UPDATED] Verse Parkour Template in Unreal Editor for Fortnite
The Verse Parkour Template will show you how to create a game mode where players can strategically maneuver through obstacles and platforms to collect batteries.
- Source: https://dev.epicgames.com/documentation/fortnite/verse-parkour-template-in-unreal-editor-for-fortnite
- Local: data/epic-docs/documentation/fortnite/verse-parkour-template-in-unreal-editor-for-fortnite.md
[UPDATED] Verse Stand-Up Comedy Club Template in Unreal Editor for Fortnite
This tutorial is a companion document to the Verse Stand-Up template, which showcases how to use devices that support a social and cinematic experience inside of a comedy club:
- Source: https://dev.epicgames.com/documentation/fortnite/verse-standup-comedy-club-template-in-unreal-editor-for-fortnite
- Local: data/epic-docs/documentation/fortnite/verse-standup-comedy-club-template-in-unreal-editor-for-fortnite.md
[UPDATED] Verse Starter Template in Unreal Editor for Fortnite
Jump into the world of Verse with the VKT - Verse Device Starter Games template and play Verse Commander, a minigame where you solve puzzles by sending commands to your character.
- Source: https://dev.epicgames.com/documentation/fortnite/verse-starter-template-in-unreal-editor-for-fortnite
- Local: data/epic-docs/documentation/fortnite/verse-starter-template-in-unreal-editor-for-fortnite.md
Sample Projects
[UPDATED] Verse Starter 01 Creating the NPC Behavior in Unreal Editor for Fortnite
The character in this example uses a Custom type character definition, since they only need to move around, and don't need access to the guard or wildlife API. The character's behavior is driven by a custom Verse Behavior named verse_commander_character.
- Source: https://dev.epicgames.com/documentation/fortnite/verse-starter-01-creating-the-npc-behavior-in-unreal-editor-for-fortnite
- Local: data/epic-docs/documentation/fortnite/verse-starter-01-creating-the-npc-behavior-in-unreal-editor-for-fortnite.md
[UPDATED] Verse Starter 02 Defining Boards for the Game in Unreal Editor for Fortnite
In the previous step, we created an NPC that can move forward, rotate left, and rotate right when it receives commands. Now in this step, we'll set up gameboards that the character can move around on.
- Source: https://dev.epicgames.com/documentation/fortnite/verse-starter-02-defining-boards-for-the-game-in-unreal-editor-for-fortnite
- Local: data/epic-docs/documentation/fortnite/verse-starter-02-defining-boards-for-the-game-in-unreal-editor-for-fortnite.md
[UPDATED] Verse Starter 03 Designing Levels for in Unreal Editor for Fortnite
Each of the gameboards was designed with the top-down camera in mind. The size of the UI, coupled with needing to keep everything in frame and not have the NPC appear too small, limited the maximum size of each gameboard. This meant the boards had to be about 4 by 6 tiles in size. Since the top-down camera made it difficult to see the NPC's orientation given their small size on the screen, an…
- Source: https://dev.epicgames.com/documentation/fortnite/verse-starter-03-designing-levels-for-in-unreal-editor-for-fortnite
- Local: data/epic-docs/documentation/fortnite/verse-starter-03-designing-levels-for-in-unreal-editor-for-fortnite.md
[UPDATED] Verse Starter 04 Representing Command Data for in Unreal Editor for Fortnite
A common pattern in programming is creating a data representation of a concept, like character commands, that you can pass around and treat as data within your code. In this minigame, commands need to be treated as data to generate from the UI interaction and pass to the character to perform.
- Source: https://dev.epicgames.com/documentation/fortnite/verse-starter-04-representing-command-data-for-in-unreal-editor-for-fortnite
- Local: data/epic-docs/documentation/fortnite/verse-starter-04-representing-command-data-for-in-unreal-editor-for-fortnite.md
[UPDATED] Verse Starter 05 Controlling the NPC with UI in Unreal Editor for Fortnite
The Verse Commander minigame has the following UI:
- Source: https://dev.epicgames.com/documentation/fortnite/verse-starter-05-controlling-the-npc-with-ui-in-unreal-editor-for-fortnite
- Local: data/epic-docs/documentation/fortnite/verse-starter-05-controlling-the-npc-with-ui-in-unreal-editor-for-fortnite.md
[UPDATED] Verse Starter 06 Managing the Game Loop for in Unreal Editor for Fortnite
The core behavior of the minigame is defined in the verse_commander_minigame Verse device. This device starts the minigame, handles communication between the UI and the character, and runs the boards used in the game.
- Source: https://dev.epicgames.com/documentation/fortnite/verse-starter-06-managing-the-game-loop-for-in-unreal-editor-for-fortnite
- Local: data/epic-docs/documentation/fortnite/verse-starter-06-managing-the-game-loop-for-in-unreal-editor-for-fortnite.md
Verse Tutorials
[UPDATED] Learn the Basics of Writing Code in Verse
In Modify and Run Your First Verse Program, you learned how to access Verse through Unreal Editor for Fortnite (UEFN), and how to modify a Verse program and troubleshoot your code.
- Source: https://dev.epicgames.com/documentation/en-us/uefn/learn-the-basics-of-writing-code-in-verse
- Local: data/epic-docs/documentation/en-us/uefn/learn-the-basics-of-writing-code-in-verse.md
[UPDATED] Learn the Basics of Writing Code in Verse
In Modify and Run Your First Verse Program, you learned how to access Verse through Unreal Editor for Fortnite (UEFN), and how to modify a Verse program and troubleshoot your code.
- Source: https://dev.epicgames.com/documentation/en-us/fortnite/learn-the-basics-of-writing-code-in-verse
- Local: data/epic-docs/documentation/en-us/fortnite/learn-the-basics-of-writing-code-in-verse.md
[UPDATED] Singleton in Verse
- Source: https://dev.epicgames.com/community/snippets/ojb/fortnite-singleton-in-verse
- Local: data/epic-docs/community/snippets/ojb/fortnite-singleton-in-verse.md
[UPDATED] The basics of writting code in verse
- Source: https://dev.epicgames.com/community/snippets/7aA/fortnite-the-basics-of-writting-code-in-verse
- Local: data/epic-docs/community/snippets/7aA/fortnite-the-basics-of-writting-code-in-verse.md
[UPDATED] Verse Tags in Fortnite
With Verse tags, you can find objects (both Creative devices and entities) marked with a specific tag while the game is running. Verse tags let you work with multiple objects without needing to set up properties and assign references in Unreal Editor for Fortnite (UEFN). You can create Verse tags in Verse code, and add or remove them from objects either in UEFN using the UI, or…
- Source: https://dev.epicgames.com/documentation/en-us/uefn/gameplay-tags-in-verse
- Local: data/epic-docs/documentation/en-us/uefn/gameplay-tags-in-verse.md
Community Snippets
[UPDATED] 1V1 Zero delay And aim Training 2023
- Source: https://dev.epicgames.com/community/snippets/M18X/fortnite-1v1-zero-delay-and-aim-training-2023
- Local: data/epic-docs/community/snippets/M18X/fortnite-1v1-zero-delay-and-aim-training-2023.md
[UPDATED] 20 Guards Following Player Using Leash
- Source: https://dev.epicgames.com/community/snippets/M1JE/fortnite-20-guards-following-player-using-leash
- Local: data/epic-docs/community/snippets/M1JE/fortnite-20-guards-following-player-using-leash.md
[UPDATED] awaitable utils
- Source: https://dev.epicgames.com/community/snippets/Jg1z/fortnite-awaitable-utils
- Local: data/epic-docs/community/snippets/Jg1z/fortnite-awaitable-utils.md
[UPDATED] subscribable utils
- Source: https://dev.epicgames.com/community/snippets/a7JD/fortnite-subscribable-utils
- Local: data/epic-docs/community/snippets/a7JD/fortnite-subscribable-utils.md
[UPDATED] Accolades Device Preset Device
- Source: https://dev.epicgames.com/community/snippets/J5Nv/fortnite-accolades-device-preset-device
- Local: data/epic-docs/community/snippets/J5Nv/fortnite-accolades-device-preset-device.md
[UPDATED] Adding Verse to Your Creative Toolbelt - Unreal Fest 2023
- Source: https://dev.epicgames.com/community/snippets/gzak/fortnite-adding-verse-to-your-creative-toolbelt-unreal-fest-2023
- Local: data/epic-docs/community/snippets/gzak/fortnite-adding-verse-to-your-creative-toolbelt-unreal-fest-2023.md
[UPDATED] Additional Damage per Specific Weapon - Verse Device
- Source: https://dev.epicgames.com/community/snippets/Xgx4/fortnite-additional-damage-per-specific-weapon-verse-device
- Local: data/epic-docs/community/snippets/Xgx4/fortnite-additional-damage-per-specific-weapon-verse-device.md
[UPDATED] Advanced Item Component and Advanced Item Pickup Component
- Source: https://dev.epicgames.com/community/snippets/7LDy/fortnite-advanced-item-component-and-advanced-item-pickup-component
- Local: data/epic-docs/community/snippets/7LDy/fortnite-advanced-item-component-and-advanced-item-pickup-component.md
[UPDATED] AI Music Manager
- Source: https://dev.epicgames.com/community/snippets/VgD8/fortnite-ai-music-manager
- Local: data/epic-docs/community/snippets/VgD8/fortnite-ai-music-manager.md
[UPDATED] AI Patrol Path Controller
- Source: https://dev.epicgames.com/community/snippets/xKa8/fortnite-ai-patrol-path-controller
- Local: data/epic-docs/community/snippets/xKa8/fortnite-ai-patrol-path-controller.md
[UPDATED] AI Voiceline Manager
- Source: https://dev.epicgames.com/community/snippets/XPJQ/fortnite-ai-voiceline-manager
- Local: data/epic-docs/community/snippets/XPJQ/fortnite-ai-voiceline-manager.md
[UPDATED] Animation Controller Device
- Source: https://dev.epicgames.com/community/snippets/lyPX/fortnite-animation-controller-device
- Local: data/epic-docs/community/snippets/lyPX/fortnite-animation-controller-device.md
[UPDATED] approximate your float to a specific decimal places
- Source: https://dev.epicgames.com/community/snippets/eeOB/fortnite-approximate-your-float-to-a-specific-decimal-places
- Local: data/epic-docs/community/snippets/eeOB/fortnite-approximate-your-float-to-a-specific-decimal-places.md
[UPDATED] Array Sort Function
- Source: https://dev.epicgames.com/community/snippets/l0X/fortnite-array-sort-function
- Local: data/epic-docs/community/snippets/l0X/fortnite-array-sort-function.md
[UPDATED] Attaching Damage Zone to Player
- Source: https://dev.epicgames.com/community/snippets/kady/fortnite-attaching-damage-zone-to-player
- Local: data/epic-docs/community/snippets/kady/fortnite-attaching-damage-zone-to-player.md
[UPDATED] Attaching Mutator Zone to a Player {VERSE CODE}
- Source: https://dev.epicgames.com/community/snippets/WO8N/fortnite-attaching-mutator-zone-to-a-player-verse-code
- Local: data/epic-docs/community/snippets/WO8N/fortnite-attaching-mutator-zone-to-a-player-verse-code.md
[UPDATED] Auto-Reload Device
- Source: https://dev.epicgames.com/community/snippets/rmdx/fortnite-auto-reload-device
- Local: data/epic-docs/community/snippets/rmdx/fortnite-auto-reload-device.md
[UPDATED] Awaiting Custom Event
- Source: https://dev.epicgames.com/community/snippets/DeKg/fortnite-awaiting-custom-event
- Local: data/epic-docs/community/snippets/DeKg/fortnite-awaiting-custom-event.md
[UPDATED] Baba Yaga Device - Eliminate Players on Contact with Damage Volume
- Source: https://dev.epicgames.com/community/snippets/1WeR/fortnite-baba-yaga-device-eliminate-players-on-contact-with-damage-volume
- Local: data/epic-docs/community/snippets/1WeR/fortnite-baba-yaga-device-eliminate-players-on-contact-with-damage-volume.md
[UPDATED] BASIC Billboard Device text setter (Dynamic)
- Source: https://dev.epicgames.com/community/snippets/wpMR/fortnite-basic-billboard-device-text-setter-dynamic
- Local: data/epic-docs/community/snippets/wpMR/fortnite-basic-billboard-device-text-setter-dynamic.md
[UPDATED] Basic Count Up Timer (using nested if statements)
- Source: https://dev.epicgames.com/community/snippets/lPBl/fortnite-basic-count-up-timer-using-nested-if-statements
- Local: data/epic-docs/community/snippets/lPBl/fortnite-basic-count-up-timer-using-nested-if-statements.md
[UPDATED] Basic Random Item Granter with buttons as input
- Source: https://dev.epicgames.com/community/snippets/903P/fortnite-basic-random-item-granter-with-buttons-as-input
- Local: data/epic-docs/community/snippets/903P/fortnite-basic-random-item-granter-with-buttons-as-input.md
[UPDATED] beat_rail
- Source: https://dev.epicgames.com/community/snippets/3GlA/fortnite-beat_rail
- Local: data/epic-docs/community/snippets/3GlA/fortnite-beat_rail.md
[UPDATED] Beginner Friendly Gun Game Script - Unreal Fest '23
- Source: https://dev.epicgames.com/community/snippets/0pRv/fortnite-beginner-friendly-gun-game-script-unreal-fest-23
- Local: data/epic-docs/community/snippets/0pRv/fortnite-beginner-friendly-gun-game-script-unreal-fest-23.md
[UPDATED] Big Numbers Module with Test Cases & Demo Device (Based on CeleryMan's Module)
- Source: https://dev.epicgames.com/community/snippets/DdvN/fortnite-big-numbers-module-with-test-cases-demo-device-based-on-celeryman-s-module
- Local: data/epic-docs/community/snippets/DdvN/fortnite-big-numbers-module-with-test-cases-demo-device-based-on-celeryman-s-module.md
[UPDATED] Black & White Cell Shading Post Process Material
- Source: https://dev.epicgames.com/community/snippets/zK73/fortnite-black-white-cell-shading-post-process-material
- Local: data/epic-docs/community/snippets/zK73/fortnite-black-white-cell-shading-post-process-material.md
[UPDATED] Bubble Sort
- Source: https://dev.epicgames.com/community/snippets/zbLB/fortnite-bubble-sort
- Local: data/epic-docs/community/snippets/zbLB/fortnite-bubble-sort.md
[UPDATED] Buff or Nerf Weapons Damage [UPDATED] - Auto Apply/Clear Damage Amplifier Powerups While Holding a specific Weapon, multi-Weapon, multi-player, Requires only one Power-Up!!!
- Source: https://dev.epicgames.com/community/snippets/wQdk/fortnite-buff-or-nerf-weapons-damage-updated-auto-apply-clear-damage-amplifier-powerups-while-holding-a-specific-weapon-multi-weapon-multi-player-requires-only-one-power-up
- Local: data/epic-docs/community/snippets/wQdk/fortnite-buff-or-nerf-weapons-damage-updated-auto-apply-clear-damage-amplifier-powerups-while-holding-a-specific-weapon-multi-weapon-multi-player-requires-only-one-power-up.md
[UPDATED] Build Reset Devices [Collection]
- Source: https://dev.epicgames.com/community/snippets/aA0M/fortnite-build-reset-devices-collection
- Local: data/epic-docs/community/snippets/aA0M/fortnite-build-reset-devices-collection.md
[UPDATED] Button for Driftboard Spawner and Item Spawner
- Source: https://dev.epicgames.com/community/snippets/Vd0/fortnite-button-for-driftboard-spawner-and-item-spawner
- Local: data/epic-docs/community/snippets/Vd0/fortnite-button-for-driftboard-spawner-and-item-spawner.md
[UPDATED] Cancelable Spawned Coroutines
- Source: https://dev.epicgames.com/community/snippets/4dl/fortnite-cancelable-spawned-coroutines
- Local: data/epic-docs/community/snippets/4dl/fortnite-cancelable-spawned-coroutines.md
[UPDATED] Change To Team Device
- Source: https://dev.epicgames.com/community/snippets/3YD/fortnite-change-to-team-device
- Local: data/epic-docs/community/snippets/3YD/fortnite-change-to-team-device.md
[UPDATED] Check map value doesn't exist
- Source: https://dev.epicgames.com/community/snippets/oYYd/fortnite-check-map-value-doesn-t-exist
- Local: data/epic-docs/community/snippets/oYYd/fortnite-check-map-value-doesn-t-exist.md
[UPDATED] class for multiple weapon assignments
- Source: https://dev.epicgames.com/community/snippets/LNDW/fortnite-class-for-multiple-weapon-assignments
- Local: data/epic-docs/community/snippets/LNDW/fortnite-class-for-multiple-weapon-assignments.md
[UPDATED] Clock(hh:mm:ss)
- Source: https://dev.epicgames.com/community/snippets/jMVQ/fortnite-clock-hh-mm-ss
- Local: data/epic-docs/community/snippets/jMVQ/fortnite-clock-hh-mm-ss.md
[UPDATED] Compass Device
- Source: https://dev.epicgames.com/community/snippets/90ma/fortnite-compass-device
- Local: data/epic-docs/community/snippets/90ma/fortnite-compass-device.md
[UPDATED] Custom AFK Device
- Source: https://dev.epicgames.com/community/snippets/dLk5/fortnite-custom-afk-device
- Local: data/epic-docs/community/snippets/dLk5/fortnite-custom-afk-device.md
[UPDATED] Custom Fiend Device - Beginner Friendly
- Source: https://dev.epicgames.com/community/snippets/vKNa/fortnite-custom-fiend-device-beginner-friendly
- Local: data/epic-docs/community/snippets/vKNa/fortnite-custom-fiend-device-beginner-friendly.md
[UPDATED] Custom Game Loop
- Source: https://dev.epicgames.com/community/snippets/7LWg/fortnite-custom-game-loop
- Local: data/epic-docs/community/snippets/7LWg/fortnite-custom-game-loop.md
[UPDATED] Custom Hud Message Widget w/ Verse Timer - ( Accompanies Tutorial Setup Video )
- Source: https://dev.epicgames.com/community/snippets/Ejj0/fortnite-custom-hud-message-widget-w-verse-timer-accompanies-tutorial-setup-video
- Local: data/epic-docs/community/snippets/Ejj0/fortnite-custom-hud-message-widget-w-verse-timer-accompanies-tutorial-setup-video.md
[UPDATED] Custom Loadout Creator
- Source: https://dev.epicgames.com/community/snippets/PNd2/fortnite-custom-loadout-creator
- Local: data/epic-docs/community/snippets/PNd2/fortnite-custom-loadout-creator.md
[UPDATED] Custom RNG Device
- Source: https://dev.epicgames.com/community/snippets/wp5L/fortnite-custom-rng-device
- Local: data/epic-docs/community/snippets/wp5L/fortnite-custom-rng-device.md
[UPDATED] Customizable Height/Distance Tracker
- Source: https://dev.epicgames.com/community/snippets/EKjd/fortnite-customizable-height-distance-tracker
- Local: data/epic-docs/community/snippets/EKjd/fortnite-customizable-height-distance-tracker.md
[UPDATED] Customizable Siphon Device
- Source: https://dev.epicgames.com/community/snippets/0bRy/fortnite-customizable-siphon-device
- Local: data/epic-docs/community/snippets/0bRy/fortnite-customizable-siphon-device.md
[UPDATED] Data Science and Analytics for Verse (V2)
- Source: https://dev.epicgames.com/community/snippets/pgxg/fortnite-data-science-and-analytics-for-verse-v2
- Local: data/epic-docs/community/snippets/pgxg/fortnite-data-science-and-analytics-for-verse-v2.md
[UPDATED] Date and Time Helper
- Source: https://dev.epicgames.com/community/snippets/4AQg/fortnite-date-and-time-helper
- Local: data/epic-docs/community/snippets/4AQg/fortnite-date-and-time-helper.md
[UPDATED] DBNO Revive Infect Device
- Source: https://dev.epicgames.com/community/snippets/1WyR/fortnite-dbno-revive-infect-device
- Local: data/epic-docs/community/snippets/1WyR/fortnite-dbno-revive-infect-device.md
[UPDATED] Debt balance reducer
- Source: https://dev.epicgames.com/community/snippets/wyX/fortnite-debt-balance-reducer
- Local: data/epic-docs/community/snippets/wyX/fortnite-debt-balance-reducer.md
[UPDATED] Debug Log Window
- Source: https://dev.epicgames.com/community/snippets/rV0r/fortnite-debug-log-window
- Local: data/epic-docs/community/snippets/rV0r/fortnite-debug-log-window.md
[UPDATED] Diagnostics using Log class
- Source: https://dev.epicgames.com/community/snippets/55D3/fortnite-diagnostics-using-log-class
- Local: data/epic-docs/community/snippets/55D3/fortnite-diagnostics-using-log-class.md
[UPDATED] Digests: Release-24.20-CL-24939793
- Source: https://dev.epicgames.com/community/snippets/9VQ/fortnite-digests-release-24-20-cl-24939793
- Local: data/epic-docs/community/snippets/9VQ/fortnite-digests-release-24-20-cl-24939793.md
[UPDATED] Dispose Random Props From Array Based On Trigger Event
- Source: https://dev.epicgames.com/community/snippets/gRz1/fortnite-dispose-random-props-from-array-based-on-trigger-event
- Local: data/epic-docs/community/snippets/gRz1/fortnite-dispose-random-props-from-array-based-on-trigger-event.md
[UPDATED] DOUBLE DAMAGE WITH BUTTON
- Source: https://dev.epicgames.com/community/snippets/M89J/fortnite-double-damage-with-button
- Local: data/epic-docs/community/snippets/M89J/fortnite-double-damage-with-button.md
[UPDATED] Double Pump - Verse Device
- Source: https://dev.epicgames.com/community/snippets/DeNg/fortnite-double-pump-verse-device
- Local: data/epic-docs/community/snippets/DeNg/fortnite-double-pump-verse-device.md
[UPDATED] Dynamic Player Teleporter Device
- Source: https://dev.epicgames.com/community/snippets/1WAo/fortnite-dynamic-player-teleporter-device
- Local: data/epic-docs/community/snippets/1WAo/fortnite-dynamic-player-teleporter-device.md
[UPDATED] Easy margin control
- Source: https://dev.epicgames.com/community/snippets/LzW5/fortnite-easy-margin-control
- Local: data/epic-docs/community/snippets/LzW5/fortnite-easy-margin-control.md
[UPDATED] Eliminated UI
- Source: https://dev.epicgames.com/community/snippets/ARVA/fortnite-eliminated-ui
- Local: data/epic-docs/community/snippets/ARVA/fortnite-eliminated-ui.md
[UPDATED] Ensure OnBegin Execution Order
- Source: https://dev.epicgames.com/community/snippets/90Em/fortnite-ensure-onbegin-execution-order
- Local: data/epic-docs/community/snippets/90Em/fortnite-ensure-onbegin-execution-order.md
[UPDATED] Example Configuration Device
- Source: https://dev.epicgames.com/community/snippets/KyDM/fortnite-example-configuration-device
- Local: data/epic-docs/community/snippets/KyDM/fortnite-example-configuration-device.md
[UPDATED] EZUI Container & API Module
- Source: https://dev.epicgames.com/community/snippets/ee3x/fortnite-ezui-container-api-module
- Local: data/epic-docs/community/snippets/ee3x/fortnite-ezui-container-api-module.md
[UPDATED] EZUI Customisable FadeIn/Out Screen FX
- Source: https://dev.epicgames.com/community/snippets/M1wX/fortnite-ezui-customisable-fadein-out-screen-fx
- Local: data/epic-docs/community/snippets/M1wX/fortnite-ezui-customisable-fadein-out-screen-fx.md
[UPDATED] EZUI Customisable Security Keypad with SFX
- Source: https://dev.epicgames.com/community/snippets/Aerm/fortnite-ezui-customisable-security-keypad-with-sfx
- Local: data/epic-docs/community/snippets/Aerm/fortnite-ezui-customisable-security-keypad-with-sfx.md
[UPDATED] EZUI Customizable Options Screen
- Source: https://dev.epicgames.com/community/snippets/90l4/fortnite-ezui-customizable-options-screen
- Local: data/epic-docs/community/snippets/90l4/fortnite-ezui-customizable-options-screen.md
[UPDATED] EZUI PopUp with Custom Art & FNC graphics Support (per-player UI)
- Source: https://dev.epicgames.com/community/snippets/J5Gp/fortnite-ezui-popup-with-custom-art-fnc-graphics-support-per-player-ui
- Local: data/epic-docs/community/snippets/J5Gp/fortnite-ezui-popup-with-custom-art-fnc-graphics-support-per-player-ui.md
[UPDATED] Fixed Sized Generic Queue Implementation (w/ circular option)
- Source: https://dev.epicgames.com/community/snippets/oY80/fortnite-fixed-sized-generic-queue-implementation-w-circular-option
- Local: data/epic-docs/community/snippets/oY80/fortnite-fixed-sized-generic-queue-implementation-w-circular-option.md
[UPDATED] Flashback Ability
- Source: https://dev.epicgames.com/community/snippets/AWK/fortnite-flashback-ability
- Local: data/epic-docs/community/snippets/AWK/fortnite-flashback-ability.md
[UPDATED] Float to int cast and +, -, / operators
- Source: https://dev.epicgames.com/community/snippets/1mD/fortnite-float-to-int-cast-and-operators
- Local: data/epic-docs/community/snippets/1mD/fortnite-float-to-int-cast-and-operators.md
[UPDATED] Float to String with decimal places
- Source: https://dev.epicgames.com/community/snippets/8aYb/fortnite-float-to-string-with-decimal-places
- Local: data/epic-docs/community/snippets/8aYb/fortnite-float-to-string-with-decimal-places.md
[UPDATED] Floor Is Lava (timer)
- Source: https://dev.epicgames.com/community/snippets/8N8p/fortnite-floor-is-lava-timer
- Local: data/epic-docs/community/snippets/8N8p/fortnite-floor-is-lava-timer.md
[UPDATED] force sit on chairs device
- Source: https://dev.epicgames.com/community/snippets/NY7W/fortnite-force-sit-on-chairs-device
- Local: data/epic-docs/community/snippets/NY7W/fortnite-force-sit-on-chairs-device.md
[UPDATED] FORNITR
- Source: https://dev.epicgames.com/community/snippets/7LwX/fortnite-fornitr
- Local: data/epic-docs/community/snippets/7LwX/fortnite-fornitr.md
[UPDATED] Fort Round Gameplay Interface for Scene Graph Components
- Source: https://dev.epicgames.com/community/snippets/558p/fortnite-fort-round-gameplay-interface-for-scene-graph-components
- Local: data/epic-docs/community/snippets/558p/fortnite-fort-round-gameplay-interface-for-scene-graph-components.md
[UPDATED] Fully customizable UI Button verse device
- Source: https://dev.epicgames.com/community/snippets/0pVb/fortnite-fully-customizable-ui-button-verse-device
- Local: data/epic-docs/community/snippets/0pVb/fortnite-fully-customizable-ui-button-verse-device.md
[UPDATED] Functions for easier UI creation
- Source: https://dev.epicgames.com/community/snippets/7Md/fortnite-functions-for-easier-ui-creation
- Local: data/epic-docs/community/snippets/7Md/fortnite-functions-for-easier-ui-creation.md
[UPDATED] Functions to work with ridiculously big numbers.
- Source: https://dev.epicgames.com/community/snippets/wpbL/fortnite-functions-to-work-with-ridiculously-big-numbers
- Local: data/epic-docs/community/snippets/wpbL/fortnite-functions-to-work-with-ridiculously-big-numbers.md
[UPDATED] Generic Events
- Source: https://dev.epicgames.com/community/snippets/KNrb/fortnite-generic-events
- Local: data/epic-docs/community/snippets/KNrb/fortnite-generic-events.md
[UPDATED] Generic List
- Source: https://dev.epicgames.com/community/snippets/ly1l/fortnite-generic-list
- Local: data/epic-docs/community/snippets/ly1l/fortnite-generic-list.md
[UPDATED] Generic Queue Implementation
- Source: https://dev.epicgames.com/community/snippets/rmpp/fortnite-generic-queue-implementation
- Local: data/epic-docs/community/snippets/rmpp/fortnite-generic-queue-implementation.md
[UPDATED] Generic Shared Waiter for Multiple Events
- Source: https://dev.epicgames.com/community/snippets/Vg13/fortnite-generic-shared-waiter-for-multiple-events
- Local: data/epic-docs/community/snippets/Vg13/fortnite-generic-shared-waiter-for-multiple-events.md
[UPDATED] Generic Stack class
- Source: https://dev.epicgames.com/community/snippets/jMa3/fortnite-generic-stack-class
- Local: data/epic-docs/community/snippets/jMa3/fortnite-generic-stack-class.md
[UPDATED] Generic Sync and Race Across Elements in an Array
- Source: https://dev.epicgames.com/community/snippets/oYRX/fortnite-generic-sync-and-race-across-elements-in-an-array
- Local: data/epic-docs/community/snippets/oYRX/fortnite-generic-sync-and-race-across-elements-in-an-array.md
[UPDATED] Get Active Player Utility
- Source: https://dev.epicgames.com/community/snippets/NYaO/fortnite-get-active-player-utility
- Local: data/epic-docs/community/snippets/NYaO/fortnite-get-active-player-utility.md
[UPDATED] Get DeltaTime
- Source: https://dev.epicgames.com/community/snippets/LNv9/fortnite-get-deltatime
- Local: data/epic-docs/community/snippets/LNv9/fortnite-get-deltatime.md
[UPDATED] Get random vector3
- Source: https://dev.epicgames.com/community/snippets/57L/fortnite-get-random-vector3
- Local: data/epic-docs/community/snippets/57L/fortnite-get-random-vector3.md
[UPDATED] Get Some Random Positons On A Plane
- Source: https://dev.epicgames.com/community/snippets/RwMR/fortnite-get-some-random-positons-on-a-plane
- Local: data/epic-docs/community/snippets/RwMR/fortnite-get-some-random-positons-on-a-plane.md
[UPDATED] Grant EXP on a tagged collectible (coin)
- Source: https://dev.epicgames.com/community/snippets/2rpR/fortnite-grant-exp-on-a-tagged-collectible-coin
- Local: data/epic-docs/community/snippets/2rpR/fortnite-grant-exp-on-a-tagged-collectible-coin.md
[UPDATED] Graphs
- Source: https://dev.epicgames.com/community/snippets/2WVO/fortnite-graphs
- Local: data/epic-docs/community/snippets/2WVO/fortnite-graphs.md
[UPDATED] Grid Math
- Source: https://dev.epicgames.com/community/snippets/lkW/fortnite-grid-math
- Local: data/epic-docs/community/snippets/lkW/fortnite-grid-math.md
[UPDATED] Guard Bodyguards
- Source: https://dev.epicgames.com/community/snippets/rmkx/fortnite-guard-bodyguards
- Local: data/epic-docs/community/snippets/rmkx/fortnite-guard-bodyguards.md
[UPDATED] Guard continuously navigating to set target
- Source: https://dev.epicgames.com/community/snippets/oYLW/fortnite-guard-continuously-navigating-to-set-target
- Local: data/epic-docs/community/snippets/oYLW/fortnite-guard-continuously-navigating-to-set-target.md
[UPDATED] Gun Game script
- Source: https://dev.epicgames.com/community/snippets/Oxo/fortnite-gun-game-script
- Local: data/epic-docs/community/snippets/Oxo/fortnite-gun-game-script.md
[UPDATED] has fort round manager interface
- Source: https://dev.epicgames.com/community/snippets/DdJ4/fortnite-has-fort-round-manager-interface
- Local: data/epic-docs/community/snippets/DdJ4/fortnite-has-fort-round-manager-interface.md
[UPDATED] HDRI By position
- Source: https://dev.epicgames.com/community/snippets/7LPd/fortnite-hdri-by-position
- Local: data/epic-docs/community/snippets/7LPd/fortnite-hdri-by-position.md
[UPDATED] Health Modifier Device Pack
- Source: https://dev.epicgames.com/community/snippets/4Ayd/fortnite-health-modifier-device-pack
- Local: data/epic-docs/community/snippets/4Ayd/fortnite-health-modifier-device-pack.md
[UPDATED] Health Regeneration Grind Rail
- Source: https://dev.epicgames.com/community/snippets/M8gE/fortnite-health-regeneration-grind-rail
- Local: data/epic-docs/community/snippets/M8gE/fortnite-health-regeneration-grind-rail.md
[UPDATED] Health/Shield Slider, Overshield & Only Headshot Options
- Source: https://dev.epicgames.com/community/snippets/7L04/fortnite-health-shield-slider-overshield-only-headshot-options
- Local: data/epic-docs/community/snippets/7L04/fortnite-health-shield-slider-overshield-only-headshot-options.md
[UPDATED] Heaps and Heapsort
- Source: https://dev.epicgames.com/community/snippets/Gw1G/fortnite-heaps-and-heapsort
- Local: data/epic-docs/community/snippets/Gw1G/fortnite-heaps-and-heapsort.md
[UPDATED] Height Meter for OnlyUp style maps
- Source: https://dev.epicgames.com/community/snippets/rmmj/fortnite-height-meter-for-onlyup-style-maps
- Local: data/epic-docs/community/snippets/rmmj/fortnite-height-meter-for-onlyup-style-maps.md
[UPDATED] Helper Parametric Functions For the generator(t) Type
- Source: https://dev.epicgames.com/community/snippets/33JB/fortnite-helper-parametric-functions-for-the-generator-t-type
- Local: data/epic-docs/community/snippets/33JB/fortnite-helper-parametric-functions-for-the-generator-t-type.md
[UPDATED] Hide player when holding a specific item
- Source: https://dev.epicgames.com/community/snippets/lP58/fortnite-hide-player-when-holding-a-specific-item
- Local: data/epic-docs/community/snippets/lP58/fortnite-hide-player-when-holding-a-specific-item.md
[UPDATED] How to check if a player is looking at a location
- Source: https://dev.epicgames.com/community/snippets/mwza/fortnite-how-to-check-if-a-player-is-looking-at-a-location
- Local: data/epic-docs/community/snippets/mwza/fortnite-how-to-check-if-a-player-is-looking-at-a-location.md
[UPDATED] How To make a prop follow a path
- Source: https://dev.epicgames.com/community/snippets/gQm/fortnite-how-to-make-a-prop-follow-a-path
- Local: data/epic-docs/community/snippets/gQm/fortnite-how-to-make-a-prop-follow-a-path.md
[UPDATED] HUD Message Device: Show a custom message
- Source: https://dev.epicgames.com/community/snippets/dVEe/fortnite-hud-message-device-show-a-custom-message
- Local: data/epic-docs/community/snippets/dVEe/fortnite-hud-message-device-show-a-custom-message.md
[UPDATED] HuntervsRunners / RedvsBlue Style Team Setup
- Source: https://dev.epicgames.com/community/snippets/Aepz/fortnite-huntervsrunners-redvsblue-style-team-setup
- Local: data/epic-docs/community/snippets/Aepz/fortnite-huntervsrunners-redvsblue-style-team-setup.md
[UPDATED] I'm stuck in 2D Camera mode
- Source: https://dev.epicgames.com/community/snippets/90Y4/fortnite-i-m-stuck-in-2d-camera-mode
- Local: data/epic-docs/community/snippets/90Y4/fortnite-i-m-stuck-in-2d-camera-mode.md
[UPDATED] Icon changer device for existing items
- Source: https://dev.epicgames.com/community/snippets/2WDj/fortnite-icon-changer-device-for-existing-items
- Local: data/epic-docs/community/snippets/2WDj/fortnite-icon-changer-device-for-existing-items.md
[UPDATED] Input Item Component
- Source: https://dev.epicgames.com/community/snippets/BdDj/fortnite-input-item-component
- Local: data/epic-docs/community/snippets/BdDj/fortnite-input-item-component.md
[UPDATED] INSTANT RESPAWN
- Source: https://dev.epicgames.com/community/snippets/KNVM/fortnite-instant-respawn
- Local: data/epic-docs/community/snippets/KNVM/fortnite-instant-respawn.md
[UPDATED] Instant Respawn With Teleporters
- Source: https://dev.epicgames.com/community/snippets/0bNv/fortnite-instant-respawn-with-teleporters
- Local: data/epic-docs/community/snippets/0bNv/fortnite-instant-respawn-with-teleporters.md
[UPDATED] Instigator-Only Cinematic Control Device
- Source: https://dev.epicgames.com/community/snippets/2rNN/fortnite-instigator-only-cinematic-control-device
- Local: data/epic-docs/community/snippets/2rNN/fortnite-instigator-only-cinematic-control-device.md
[UPDATED] Item Granter Randomizer PRO
- Source: https://dev.epicgames.com/community/snippets/GRdN/fortnite-item-granter-randomizer-pro
- Local: data/epic-docs/community/snippets/GRdN/fortnite-item-granter-randomizer-pro.md
[UPDATED] Item Shop Device
- Source: https://dev.epicgames.com/community/snippets/yrgj/fortnite-item-shop-device
- Local: data/epic-docs/community/snippets/yrgj/fortnite-item-shop-device.md
[UPDATED] Item Spawner Device
- Source: https://dev.epicgames.com/community/snippets/WOWv/fortnite-item-spawner-device
- Local: data/epic-docs/community/snippets/WOWv/fortnite-item-spawner-device.md
[UPDATED] Keyword replacement
- Source: https://dev.epicgames.com/community/snippets/M8PE/fortnite-keyword-replacement
- Local: data/epic-docs/community/snippets/M8PE/fortnite-keyword-replacement.md
[UPDATED] Killing Spree Script v1.7
- Source: https://dev.epicgames.com/community/snippets/pXo/fortnite-killing-spree-script-v1-7
- Local: data/epic-docs/community/snippets/pXo/fortnite-killing-spree-script-v1-7.md
[UPDATED] KILLSTREAKS
- Source: https://dev.epicgames.com/community/snippets/Q0yg/fortnite-killstreaks
- Local: data/epic-docs/community/snippets/Q0yg/fortnite-killstreaks.md
[UPDATED] LEGO® Quest System with NPC Behaviour
- Source: https://dev.epicgames.com/community/snippets/o2KW/fortnite-lego-quest-system-with-npc-behaviour
- Local: data/epic-docs/community/snippets/o2KW/fortnite-lego-quest-system-with-npc-behaviour.md
[UPDATED] Linear float curve
- Source: https://dev.epicgames.com/community/snippets/VgoX/fortnite-linear-float-curve
- Local: data/epic-docs/community/snippets/VgoX/fortnite-linear-float-curve.md
[UPDATED] Linked List Device
- Source: https://dev.epicgames.com/community/snippets/dLLJ/fortnite-linked-list-device
- Local: data/epic-docs/community/snippets/dLLJ/fortnite-linked-list-device.md
[UPDATED] Live Event Scheduler
- Source: https://dev.epicgames.com/community/snippets/33E7/fortnite-live-event-scheduler
- Local: data/epic-docs/community/snippets/33E7/fortnite-live-event-scheduler.md
[UPDATED] Logic ToString extension
- Source: https://dev.epicgames.com/community/snippets/M7z/fortnite-logic-tostring-extension
- Local: data/epic-docs/community/snippets/M7z/fortnite-logic-tostring-extension.md
[UPDATED] madz box fight
- Source: https://dev.epicgames.com/community/snippets/lPDw/fortnite-madz-box-fight
- Local: data/epic-docs/community/snippets/lPDw/fortnite-madz-box-fight.md
[UPDATED] Make A Guard Appear to Pick Up and Carry a Prop
- Source: https://dev.epicgames.com/community/snippets/NpDV/fortnite-make-a-guard-appear-to-pick-up-and-carry-a-prop
- Local: data/epic-docs/community/snippets/NpDV/fortnite-make-a-guard-appear-to-pick-up-and-carry-a-prop.md
[UPDATED] Make Comparable Device
- Source: https://dev.epicgames.com/community/snippets/oYjD/fortnite-make-comparable-device
- Local: data/epic-docs/community/snippets/oYjD/fortnite-make-comparable-device.md
[UPDATED] Making Class attributes editable in UEFN
- Source: https://dev.epicgames.com/community/snippets/zW2/fortnite-making-class-attributes-editable-in-uefn
- Local: data/epic-docs/community/snippets/zW2/fortnite-making-class-attributes-editable-in-uefn.md
[UPDATED] Making Party Minigames using Cameras and Verse
- Source: https://dev.epicgames.com/community/snippets/RMBg/fortnite-making-party-minigames-using-cameras-and-verse
- Local: data/epic-docs/community/snippets/RMBg/fortnite-making-party-minigames-using-cameras-and-verse.md
[UPDATED] Many Button Support Popup Dialog
- Source: https://dev.epicgames.com/community/snippets/7LVy/fortnite-many-button-support-popup-dialog
- Local: data/epic-docs/community/snippets/7LVy/fortnite-many-button-support-popup-dialog.md
[UPDATED] Map Editable
- Source: https://dev.epicgames.com/community/snippets/BdVK/fortnite-map-editable
- Local: data/epic-docs/community/snippets/BdVK/fortnite-map-editable.md
[UPDATED] MapRangeUnclamped & MapRangeClamped
- Source: https://dev.epicgames.com/community/snippets/dLLd/fortnite-maprangeunclamped-maprangeclamped
- Local: data/epic-docs/community/snippets/dLLd/fortnite-maprangeunclamped-maprangeclamped.md
[UPDATED] Material Function - Depth Cullface (Translucency Object)
- Source: https://dev.epicgames.com/community/snippets/eOoo/fortnite-material-function-depth-cullface-translucency-object
- Local: data/epic-docs/community/snippets/eOoo/fortnite-material-function-depth-cullface-translucency-object.md
[UPDATED] Material Function - Glitch
- Source: https://dev.epicgames.com/community/snippets/lyNV/fortnite-material-function-glitch
- Local: data/epic-docs/community/snippets/lyNV/fortnite-material-function-glitch.md
[UPDATED] Material Function - Motion4WayChaos
- Source: https://dev.epicgames.com/community/snippets/DdzR/fortnite-material-function-motion4waychaos
- Local: data/epic-docs/community/snippets/DdzR/fortnite-material-function-motion4waychaos.md
[UPDATED] Material Function - Paralax ice cracks
- Source: https://dev.epicgames.com/community/snippets/Ej1a/fortnite-material-function-paralax-ice-cracks
- Local: data/epic-docs/community/snippets/Ej1a/fortnite-material-function-paralax-ice-cracks.md
[UPDATED] Matrices
- Source: https://dev.epicgames.com/community/snippets/bO9r/fortnite-matrices
- Local: data/epic-docs/community/snippets/bO9r/fortnite-matrices.md
[UPDATED] Memory Sequence Device
- Source: https://dev.epicgames.com/community/snippets/YjL/fortnite-memory-sequence-device
- Local: data/epic-docs/community/snippets/YjL/fortnite-memory-sequence-device.md
[UPDATED] Merge Sort
- Source: https://dev.epicgames.com/community/snippets/LNY1/fortnite-merge-sort
- Local: data/epic-docs/community/snippets/LNY1/fortnite-merge-sort.md
[UPDATED] Minecraft-Styled Building Mechanic
- Source: https://dev.epicgames.com/community/snippets/VglD/fortnite-minecraft-styled-building-mechanic
- Local: data/epic-docs/community/snippets/VglD/fortnite-minecraft-styled-building-mechanic.md
[UPDATED] Mini Golf Verse Code
- Source: https://dev.epicgames.com/community/snippets/jd22/fortnite-mini-golf-verse-code
- Local: data/epic-docs/community/snippets/jd22/fortnite-mini-golf-verse-code.md
[UPDATED] Mission Impossible v1.01 Update
- Source: https://dev.epicgames.com/community/snippets/M1vj/fortnite-mission-impossible-v1-01-update
- Local: data/epic-docs/community/snippets/M1vj/fortnite-mission-impossible-v1-01-update.md
[UPDATED] Modded AI Patrol path
- Source: https://dev.epicgames.com/community/snippets/DewN/fortnite-modded-ai-patrol-path
- Local: data/epic-docs/community/snippets/DewN/fortnite-modded-ai-patrol-path.md
[UPDATED] Multiple TriggerEvents Handler
- Source: https://dev.epicgames.com/community/snippets/1mM/fortnite-multiple-triggerevents-handler
- Local: data/epic-docs/community/snippets/1mM/fortnite-multiple-triggerevents-handler.md
[UPDATED] My Verse Helper Reference
- Source: https://dev.epicgames.com/community/snippets/pgp1/fortnite-my-verse-helper-reference
- Local: data/epic-docs/community/snippets/pgp1/fortnite-my-verse-helper-reference.md
[UPDATED] name your verse device
- Source: https://dev.epicgames.com/community/snippets/8N9j/fortnite-name-your-verse-device
- Local: data/epic-docs/community/snippets/8N9j/fortnite-name-your-verse-device.md
[UPDATED] Nesting example for UI buttons
- Source: https://dev.epicgames.com/community/snippets/wWm/fortnite-nesting-example-for-ui-buttons
- Local: data/epic-docs/community/snippets/wWm/fortnite-nesting-example-for-ui-buttons.md
[UPDATED] Number Guesser Game
- Source: https://dev.epicgames.com/community/snippets/EBg/fortnite-number-guesser-game
- Local: data/epic-docs/community/snippets/EBg/fortnite-number-guesser-game.md
[UPDATED] Number Multiplier To Percent Method
- Source: https://dev.epicgames.com/community/snippets/o2AX/fortnite-number-multiplier-to-percent-method
- Local: data/epic-docs/community/snippets/o2AX/fortnite-number-multiplier-to-percent-method.md
[UPDATED] Number of players in team 1 & 2
- Source: https://dev.epicgames.com/community/snippets/GJe/fortnite-number-of-players-in-team-1-2
- Local: data/epic-docs/community/snippets/GJe/fortnite-number-of-players-in-team-1-2.md
[UPDATED] One Player Remaining Detector Device [Collection]
- Source: https://dev.epicgames.com/community/snippets/yrV9/fortnite-one-player-remaining-detector-device-collection
- Local: data/epic-docs/community/snippets/yrV9/fortnite-one-player-remaining-detector-device-collection.md
[UPDATED] Opt-In Selection Pool Device
- Source: https://dev.epicgames.com/community/snippets/AJJ/fortnite-opt-in-selection-pool-device
- Local: data/epic-docs/community/snippets/AJJ/fortnite-opt-in-selection-pool-device.md
[UPDATED] Organizing code into modules
- Source: https://dev.epicgames.com/community/snippets/dxk/fortnite-organizing-code-into-modules
- Local: data/epic-docs/community/snippets/dxk/fortnite-organizing-code-into-modules.md
[UPDATED] Patrol path manager v2
- Source: https://dev.epicgames.com/community/snippets/ly2l/fortnite-patrol-path-manager-v2
- Local: data/epic-docs/community/snippets/ly2l/fortnite-patrol-path-manager-v2.md
[UPDATED] Per-player Maximum HP/Shield Manager
- Source: https://dev.epicgames.com/community/snippets/yv7/fortnite-per-player-maximum-hp-shield-manager
- Local: data/epic-docs/community/snippets/yv7/fortnite-per-player-maximum-hp-shield-manager.md
[UPDATED] Player "Name, Skin Icon, Skin Name"-Get Functions
- Source: https://dev.epicgames.com/community/snippets/kaB5/fortnite-player-name-skin-icon-skin-name-get-functions
- Local: data/epic-docs/community/snippets/kaB5/fortnite-player-name-skin-icon-skin-name-get-functions.md
[UPDATED] Player Leaved Helper
- Source: https://dev.epicgames.com/community/snippets/XgPw/fortnite-player-leaved-helper
- Local: data/epic-docs/community/snippets/XgPw/fortnite-player-leaved-helper.md
[UPDATED] Player Signal Device
- Source: https://dev.epicgames.com/community/snippets/GwBV/fortnite-player-signal-device
- Local: data/epic-docs/community/snippets/GwBV/fortnite-player-signal-device.md
[UPDATED] Players velocity tracker (Linear and Angular)
- Source: https://dev.epicgames.com/community/snippets/GRVN/fortnite-players-velocity-tracker-linear-and-angular
- Local: data/epic-docs/community/snippets/GRVN/fortnite-players-velocity-tracker-linear-and-angular.md
[UPDATED] Polling Player Speed
- Source: https://dev.epicgames.com/community/snippets/mwjX/fortnite-polling-player-speed
- Local: data/epic-docs/community/snippets/mwjX/fortnite-polling-player-speed.md
[UPDATED] Procedural generator device
- Source: https://dev.epicgames.com/community/snippets/Lz8b/fortnite-procedural-generator-device
- Local: data/epic-docs/community/snippets/Lz8b/fortnite-procedural-generator-device.md
[UPDATED] Procedurally Animated Conveyor Belt
- Source: https://dev.epicgames.com/community/snippets/LVB/fortnite-procedurally-animated-conveyor-belt
- Local: data/epic-docs/community/snippets/LVB/fortnite-procedurally-animated-conveyor-belt.md
[UPDATED] Project-wide Logger
- Source: https://dev.epicgames.com/community/snippets/p8N2/fortnite-project-wide-logger
- Local: data/epic-docs/community/snippets/p8N2/fortnite-project-wide-logger.md
[UPDATED] Quick & Simple Script - Bring Back Spectators
- Source: https://dev.epicgames.com/community/snippets/eYv/fortnite-quick-simple-script-bring-back-spectators
- Local: data/epic-docs/community/snippets/eYv/fortnite-quick-simple-script-bring-back-spectators.md
[UPDATED] Quick & Simple Script - Send Players To Lobby
- Source: https://dev.epicgames.com/community/snippets/dP7/fortnite-quick-simple-script-send-players-to-lobby
- Local: data/epic-docs/community/snippets/dP7/fortnite-quick-simple-script-send-players-to-lobby.md
[UPDATED] Quicksort
- Source: https://dev.epicgames.com/community/snippets/90Da/fortnite-quicksort
- Local: data/epic-docs/community/snippets/90Da/fortnite-quicksort.md
[UPDATED] Random get numbers (no repeated)
- Source: https://dev.epicgames.com/community/snippets/EKPW/fortnite-random-get-numbers-no-repeated
- Local: data/epic-docs/community/snippets/EKPW/fortnite-random-get-numbers-no-repeated.md
[UPDATED] Random Permutation Picker Device
- Source: https://dev.epicgames.com/community/snippets/N04/fortnite-random-permutation-picker-device
- Local: data/epic-docs/community/snippets/N04/fortnite-random-permutation-picker-device.md
[UPDATED] Random Room Spawning using Scene Graph
- Source: https://dev.epicgames.com/community/snippets/GwWz/fortnite-random-room-spawning-using-scene-graph
- Local: data/epic-docs/community/snippets/GwWz/fortnite-random-room-spawning-using-scene-graph.md
[UPDATED] Rapid Practical Gameplay Development - Rotate prop in place, or move and/or rotate prop to preselected locations marked with location marker props(looped or single action)
- Source: https://dev.epicgames.com/community/snippets/4Dl/fortnite-rapid-practical-gameplay-development-rotate-prop-in-place-or-move-and-or-rotate-prop-to-preselected-locations-marked-with-location-marker-props-looped-or-single-action
- Local: data/epic-docs/community/snippets/4Dl/fortnite-rapid-practical-gameplay-development-rotate-prop-in-place-or-move-and-or-rotate-prop-to-preselected-locations-marked-with-location-marker-props-looped-or-single-action.md
[UPDATED] Real-time API (Beta)
- Source: https://dev.epicgames.com/community/snippets/ly4a/fortnite-real-time-api-beta
- Local: data/epic-docs/community/snippets/ly4a/fortnite-real-time-api-beta.md
[UPDATED] Relic Royale - 0044-2395-4081
- Source: https://dev.epicgames.com/community/snippets/pvO/fortnite-relic-royale-0044-2395-4081
- Local: data/epic-docs/community/snippets/pvO/fortnite-relic-royale-0044-2395-4081.md
[UPDATED] Reload" respawn system for duos
- Source: https://dev.epicgames.com/community/snippets/zKoK/fortnite-reload-respawn-system-for-duos
- Local: data/epic-docs/community/snippets/zKoK/fortnite-reload-respawn-system-for-duos.md
[UPDATED] Remote Signal Function Switcher
- Source: https://dev.epicgames.com/community/snippets/W9G/fortnite-remote-signal-function-switcher
- Local: data/epic-docs/community/snippets/W9G/fortnite-remote-signal-function-switcher.md
[UPDATED] Remove Key From Map
- Source: https://dev.epicgames.com/community/snippets/LNKb/fortnite-remove-key-from-map
- Local: data/epic-docs/community/snippets/LNKb/fortnite-remove-key-from-map.md
[UPDATED] Reverse array
- Source: https://dev.epicgames.com/community/snippets/Bgm/fortnite-reverse-array
- Local: data/epic-docs/community/snippets/Bgm/fortnite-reverse-array.md
[UPDATED] Rotate About axis
- Source: https://dev.epicgames.com/community/snippets/GRXr/fortnite-rotate-about-axis
- Local: data/epic-docs/community/snippets/GRXr/fortnite-rotate-about-axis.md
[UPDATED] Rounding a number
- Source: https://dev.epicgames.com/community/snippets/opA/fortnite-rounding-a-number
- Local: data/epic-docs/community/snippets/opA/fortnite-rounding-a-number.md
[UPDATED] Seedable Random Number Generator
- Source: https://dev.epicgames.com/community/snippets/KyRK/fortnite-seedable-random-number-generator
- Local: data/epic-docs/community/snippets/KyRK/fortnite-seedable-random-number-generator.md
[UPDATED] Selective Scoring System(Version 1)
- Source: https://dev.epicgames.com/community/snippets/zKme/fortnite-selective-scoring-system-version-1
- Local: data/epic-docs/community/snippets/zKme/fortnite-selective-scoring-system-version-1.md
[UPDATED] Sequential Trigger System
- Source: https://dev.epicgames.com/community/snippets/2WMA/fortnite-sequential-trigger-system
- Local: data/epic-docs/community/snippets/2WMA/fortnite-sequential-trigger-system.md
[UPDATED] Shine Cards Function
- Source: https://dev.epicgames.com/community/snippets/RwpV/fortnite-shine-cards-function
- Local: data/epic-docs/community/snippets/RwpV/fortnite-shine-cards-function.md
[UPDATED] Shuffle FFA Teams
- Source: https://dev.epicgames.com/community/snippets/Pxa/fortnite-shuffle-ffa-teams
- Local: data/epic-docs/community/snippets/Pxa/fortnite-shuffle-ffa-teams.md
[UPDATED] Shuffle the array
- Source: https://dev.epicgames.com/community/snippets/2reL/fortnite-shuffle-the-array
- Local: data/epic-docs/community/snippets/2reL/fortnite-shuffle-the-array.md
[UPDATED] Signal Remote To Triggers
- Source: https://dev.epicgames.com/community/snippets/aAjG/fortnite-signal-remote-to-triggers
- Local: data/epic-docs/community/snippets/aAjG/fortnite-signal-remote-to-triggers.md
[UPDATED] simple class loadouts
- Source: https://dev.epicgames.com/community/snippets/lPY1/fortnite-simple-class-loadouts
- Local: data/epic-docs/community/snippets/lPY1/fortnite-simple-class-loadouts.md
[UPDATED] Simple Crafting System
- Source: https://dev.epicgames.com/community/snippets/vOxw/fortnite-simple-crafting-system
- Local: data/epic-docs/community/snippets/vOxw/fortnite-simple-crafting-system.md
[UPDATED] Simple Custom Player Counter w/ Hud Message Device
- Source: https://dev.epicgames.com/community/snippets/WOO5/fortnite-simple-custom-player-counter-w-hud-message-device
- Local: data/epic-docs/community/snippets/WOO5/fortnite-simple-custom-player-counter-w-hud-message-device.md
[UPDATED] Simple Custom Streaming
- Source: https://dev.epicgames.com/community/snippets/wQ5D/fortnite-simple-custom-streaming
- Local: data/epic-docs/community/snippets/wQ5D/fortnite-simple-custom-streaming.md
[UPDATED] Simple Health Manager - Use Triggers to modify Health
- Source: https://dev.epicgames.com/community/snippets/YOJe/fortnite-simple-health-manager-use-triggers-to-modify-health
- Local: data/epic-docs/community/snippets/YOJe/fortnite-simple-health-manager-use-triggers-to-modify-health.md
[UPDATED] simple insta reload
- Source: https://dev.epicgames.com/community/snippets/33D2/fortnite-simple-insta-reload
- Local: data/epic-docs/community/snippets/33D2/fortnite-simple-insta-reload.md
[UPDATED] Simple Parametric Verse Timer
- Source: https://dev.epicgames.com/community/snippets/1WRR/fortnite-simple-parametric-verse-timer
- Local: data/epic-docs/community/snippets/1WRR/fortnite-simple-parametric-verse-timer.md
[UPDATED] Simple Time Converters
- Source: https://dev.epicgames.com/community/snippets/V0Dk/fortnite-simple-time-converters
- Local: data/epic-docs/community/snippets/V0Dk/fortnite-simple-time-converters.md
[UPDATED] Simple Wave Spawn System
- Source: https://dev.epicgames.com/community/snippets/JLB/fortnite-simple-wave-spawn-system
- Local: data/epic-docs/community/snippets/JLB/fortnite-simple-wave-spawn-system.md
[UPDATED] Slerp for Vector3
- Source: https://dev.epicgames.com/community/snippets/DdX2/fortnite-slerp-for-vector3
- Local: data/epic-docs/community/snippets/DdX2/fortnite-slerp-for-vector3.md
[UPDATED] Sort a map with Key / Value
- Source: https://dev.epicgames.com/community/snippets/7NJY/fortnite-sort-a-map-with-key-value
- Local: data/epic-docs/community/snippets/7NJY/fortnite-sort-a-map-with-key-value.md
[UPDATED] Spawn and move creative_prop
- Source: https://dev.epicgames.com/community/snippets/4Ed/fortnite-spawn-and-move-creative_prop
- Local: data/epic-docs/community/snippets/4Ed/fortnite-spawn-and-move-creative_prop.md
[UPDATED] Spawn Creative Prop [Collection]
- Source: https://dev.epicgames.com/community/snippets/XPEb/fortnite-spawn-creative-prop-collection
- Local: data/epic-docs/community/snippets/XPEb/fortnite-spawn-creative-prop-collection.md
[UPDATED] SpongeBob Roguelike Snippets
- Source: https://dev.epicgames.com/community/snippets/BdoW/fortnite-spongebob-roguelike-snippets
- Local: data/epic-docs/community/snippets/BdoW/fortnite-spongebob-roguelike-snippets.md
[UPDATED] state button
- Source: https://dev.epicgames.com/community/snippets/ARdv/fortnite-state-button
- Local: data/epic-docs/community/snippets/ARdv/fortnite-state-button.md
[UPDATED] Subscribable Event
- Source: https://dev.epicgames.com/community/snippets/Ej2p/fortnite-subscribable-event
- Local: data/epic-docs/community/snippets/Ej2p/fortnite-subscribable-event.md
[UPDATED] Subtitle system
- Source: https://dev.epicgames.com/community/snippets/yA9/fortnite-subtitle-system
- Local: data/epic-docs/community/snippets/yA9/fortnite-subtitle-system.md
[UPDATED] Subtyping(covariance&contravariance) Sample
- Source: https://dev.epicgames.com/community/snippets/Nyr/fortnite-subtyping-covariance-contravariance-sample
- Local: data/epic-docs/community/snippets/Nyr/fortnite-subtyping-covariance-contravariance-sample.md
[UPDATED] Tagged device example
- Source: https://dev.epicgames.com/community/snippets/rmP2/fortnite-tagged-device-example
- Local: data/epic-docs/community/snippets/rmP2/fortnite-tagged-device-example.md
[UPDATED] Team Selection and counting devices that reference spawn points and teleporters.
- Source: https://dev.epicgames.com/community/snippets/7NN4/fortnite-team-selection-and-counting-devices-that-reference-spawn-points-and-teleporters
- Local: data/epic-docs/community/snippets/7NN4/fortnite-team-selection-and-counting-devices-that-reference-spawn-points-and-teleporters.md
[UPDATED] Teams Top Player Reference Updater
- Source: https://dev.epicgames.com/community/snippets/ARpm/fortnite-teams-top-player-reference-updater
- Local: data/epic-docs/community/snippets/ARpm/fortnite-teams-top-player-reference-updater.md
[UPDATED] Teleport With Remote Device
- Source: https://dev.epicgames.com/community/snippets/mwKX/fortnite-teleport-with-remote-device
- Local: data/epic-docs/community/snippets/mwKX/fortnite-teleport-with-remote-device.md
[UPDATED] The Self Elimination Button
- Source: https://dev.epicgames.com/community/snippets/7NYg/fortnite-the-self-elimination-button
- Local: data/epic-docs/community/snippets/7NYg/fortnite-the-self-elimination-button.md
[UPDATED] Throw an error
- Source: https://dev.epicgames.com/community/snippets/eee2/fortnite-throw-an-error
- Local: data/epic-docs/community/snippets/eee2/fortnite-throw-an-error.md
[UPDATED] Tick Rate Graph Device
- Source: https://dev.epicgames.com/community/snippets/D98/fortnite-tick-rate-graph-device
- Local: data/epic-docs/community/snippets/D98/fortnite-tick-rate-graph-device.md
[UPDATED] Timed Elimination Game
- Source: https://dev.epicgames.com/community/snippets/PAdb/fortnite-timed-elimination-game
- Local: data/epic-docs/community/snippets/PAdb/fortnite-timed-elimination-game.md
[UPDATED] Timer / Stopwatch time format with decimals
- Source: https://dev.epicgames.com/community/snippets/RwKO/fortnite-timer-stopwatch-time-format-with-decimals
- Local: data/epic-docs/community/snippets/RwKO/fortnite-timer-stopwatch-time-format-with-decimals.md
[UPDATED] TNT Tag Gamemode Script - GAME
- Source: https://dev.epicgames.com/community/snippets/8NRw/fortnite-tnt-tag-gamemode-script-game
- Local: data/epic-docs/community/snippets/8NRw/fortnite-tnt-tag-gamemode-script-game.md
[UPDATED] Toogle satte of a VFX
- Source: https://dev.epicgames.com/community/snippets/o2rD/fortnite-toogle-satte-of-a-vfx
- Local: data/epic-docs/community/snippets/o2rD/fortnite-toogle-satte-of-a-vfx.md
[UPDATED] Top-Down View Support Device
- Source: https://dev.epicgames.com/community/snippets/xve/fortnite-top-down-view-support-device
- Local: data/epic-docs/community/snippets/xve/fortnite-top-down-view-support-device.md
[UPDATED] Track and emit events when players stand still
- Source: https://dev.epicgames.com/community/snippets/0pBy/fortnite-track-and-emit-events-when-players-stand-still
- Local: data/epic-docs/community/snippets/0pBy/fortnite-track-and-emit-events-when-players-stand-still.md
[UPDATED] Trigger a barrier with a time limit
- Source: https://dev.epicgames.com/community/snippets/Evp/fortnite-trigger-a-barrier-with-a-time-limit
- Local: data/epic-docs/community/snippets/Evp/fortnite-trigger-a-barrier-with-a-time-limit.md
[UPDATED] UEFN Toggle Prop Visibilty
- Source: https://dev.epicgames.com/community/snippets/5zQN/fortnite-uefn-toggle-prop-visibilty
- Local: data/epic-docs/community/snippets/5zQN/fortnite-uefn-toggle-prop-visibilty.md
[UPDATED] UEFN Verse: Simple 1v1 Round Manager (Spawn, Reset, Score)
- Source: https://dev.epicgames.com/community/snippets/NYeM/fortnite-uefn-verse-simple-1v1-round-manager-spawn-reset-score
- Local: data/epic-docs/community/snippets/NYeM/fortnite-uefn-verse-simple-1v1-round-manager-spawn-reset-score.md
[UPDATED] UEFN/FNC Game Prototype Spreadsheet
- Source: https://dev.epicgames.com/community/snippets/vKEd/fortnite-uefn-fnc-game-prototype-spreadsheet
- Local: data/epic-docs/community/snippets/vKEd/fortnite-uefn-fnc-game-prototype-spreadsheet.md
[UPDATED] UI Button with Verse that hides Player and HUD
- Source: https://dev.epicgames.com/community/snippets/zbAe/fortnite-ui-button-with-verse-that-hides-player-and-hud
- Local: data/epic-docs/community/snippets/zbAe/fortnite-ui-button-with-verse-that-hides-player-and-hud.md
[UPDATED] UI Device for widget blueprints direct to Player/Players (NO MORE HUD DEVICES)
- Source: https://dev.epicgames.com/community/snippets/yMJ1/fortnite-ui-device-for-widget-blueprints-direct-to-player-players-no-more-hud-devices
- Local: data/epic-docs/community/snippets/yMJ1/fortnite-ui-device-for-widget-blueprints-direct-to-player-players-no-more-hud-devices.md
[UPDATED] Using animation_controller + MoveTo
- Source: https://dev.epicgames.com/community/snippets/LNNr/fortnite-using-animation_controller-moveto
- Local: data/epic-docs/community/snippets/LNNr/fortnite-using-animation_controller-moveto.md
[UPDATED] UVTiling Named Reroute Node
- Source: https://dev.epicgames.com/community/snippets/7L34/fortnite-uvtiling-named-reroute-node
- Local: data/epic-docs/community/snippets/7L34/fortnite-uvtiling-named-reroute-node.md
[UPDATED] Verse - Automatic Sliding Door
- Source: https://dev.epicgames.com/community/snippets/D08/fortnite-verse-automatic-sliding-door
- Local: data/epic-docs/community/snippets/D08/fortnite-verse-automatic-sliding-door.md
[UPDATED] Verse - Player Elimination VFX
- Source: https://dev.epicgames.com/community/snippets/BK0K/fortnite-verse-player-elimination-vfx
- Local: data/epic-docs/community/snippets/BK0K/fortnite-verse-player-elimination-vfx.md
[UPDATED] Verse String Split Function
- Source: https://dev.epicgames.com/community/snippets/90lE/fortnite-verse-string-split-function
- Local: data/epic-docs/community/snippets/90lE/fortnite-verse-string-split-function.md
[UPDATED] Verse UI Canvas Element Properties
- Source: https://dev.epicgames.com/community/snippets/koKw/fortnite-verse-ui-canvas-element-properties
- Local: data/epic-docs/community/snippets/koKw/fortnite-verse-ui-canvas-element-properties.md
[UPDATED] Verse Unix Timestamp to Date
- Source: https://dev.epicgames.com/community/snippets/AR5W/fortnite-verse-unix-timestamp-to-date
- Local: data/epic-docs/community/snippets/AR5W/fortnite-verse-unix-timestamp-to-date.md
[UPDATED] Verse Utilities
- Source: https://dev.epicgames.com/community/snippets/yMkA/fortnite-verse-utilities
- Local: data/epic-docs/community/snippets/yMkA/fortnite-verse-utilities.md
[UPDATED] VFX Toggle Device
- Source: https://dev.epicgames.com/community/snippets/ekv/fortnite-vfx-toggle-device
- Local: data/epic-docs/community/snippets/ekv/fortnite-vfx-toggle-device.md
[UPDATED] Voting System
- Source: https://dev.epicgames.com/community/snippets/2rrO/fortnite-voting-system
- Local: data/epic-docs/community/snippets/2rrO/fortnite-voting-system.md
[UPDATED] Waiting For Players Countdown Device
- Source: https://dev.epicgames.com/community/snippets/Dde8/fortnite-waiting-for-players-countdown-device
- Local: data/epic-docs/community/snippets/Dde8/fortnite-waiting-for-players-countdown-device.md
[UPDATED] Wanted Level Script
- Source: https://dev.epicgames.com/community/snippets/GEN/fortnite-wanted-level-script
- Local: data/epic-docs/community/snippets/GEN/fortnite-wanted-level-script.md
[UPDATED] winning Cinematic Device
- Source: https://dev.epicgames.com/community/snippets/dVR2/fortnite-winning-cinematic-device
- Local: data/epic-docs/community/snippets/dVR2/fortnite-winning-cinematic-device.md
[UPDATED] Wrapping Subscribe() to pass additional data to listeners
- Source: https://dev.epicgames.com/community/snippets/d8k/fortnite-wrapping-subscribe-to-pass-additional-data-to-listeners
- Local: data/epic-docs/community/snippets/d8k/fortnite-wrapping-subscribe-to-pass-additional-data-to-listeners.md
[UPDATED] Your First Verse Device - Webinar Tutorial
- Source: https://dev.epicgames.com/community/snippets/P1V/fortnite-your-first-verse-device-webinar-tutorial
- Local: data/epic-docs/community/snippets/P1V/fortnite-your-first-verse-device-webinar-tutorial.md
[UPDATED] 画像(テクスチャ)とHUDメッセージの仕掛けの表示、非表示
- Source: https://dev.epicgames.com/community/snippets/De82/fortnite-hud
- Local: data/epic-docs/community/snippets/De82/fortnite-hud.md
Creative Devices
[UPDATED] Using Advanced Storm Controller Devices in Fortnite Creative
The Advanced Storm Controller is a way you can easily implement Battle Royale-style storm behaviors with up to 50 phases.
- Source: https://dev.epicgames.com/documentation/en-us/fortnite-creative/using-advanced-storm-controller-devices-in-fortnite-creative
- Local: data/epic-docs/documentation/en-us/fortnite-creative/using-advanced-storm-controller-devices-in-fortnite-creative.md
[UPDATED] Using Chest and Ammo Gallery Devices in Fortnite Creative
Use the Chest and Ammo Gallery to offer items to players that will aid in combat gameplay. Players can open chests to receive a random combination of weapons, ammo, health items, and world resources such as wood, stone, or metal.
- Source: https://dev.epicgames.com/documentation/en-us/fortnite-creative/using-chest-and-ammo-gallery-devices-in-fortnite-creative
- Local: data/epic-docs/documentation/en-us/fortnite-creative/using-chest-and-ammo-gallery-devices-in-fortnite-creative.md
[UPDATED] Using Item Spawner Devices in Fortnite Creative
This is a device that creators can use to create a spawn point for various Items, and to assign specific items to each spawn location.
- Source: https://dev.epicgames.com/documentation/en-us/fortnite-creative/using-item-spawner-devices-in-fortnite-creative
- Local: data/epic-docs/documentation/en-us/fortnite-creative/using-item-spawner-devices-in-fortnite-creative.md
[UPDATED] Using Signal Remote Manager Devices in Fortnite Creative
A Signal Remote is a device players can carry and use to send signals to other devices. You can use the Signal Remote Manager to manage how and where these signals are sent. This gives players the ability to send signals from held items in-game.
- Source: https://dev.epicgames.com/documentation/en-us/fortnite-creative/using-signal-remote-manager-devices-in-fortnite-creative
- Local: data/epic-docs/documentation/en-us/fortnite-creative/using-signal-remote-manager-devices-in-fortnite-creative.md
[UPDATED] Using Teleporter Devices in Fortnite Creative
This is a customizable rift that moves players instantly between locations. The Teleporter device can be used to move players around your island, or create multi-island experiences with teleporters that take players from one island to another.
- Source: https://dev.epicgames.com/documentation/en-us/fortnite-creative/using-teleporter-devices-in-fortnite-creative
- Local: data/epic-docs/documentation/en-us/fortnite-creative/using-teleporter-devices-in-fortnite-creative.md
[UPDATED] Using UFO Spawner Devices in Fortnite Creative
A UFO Spawner is a device that spawns a UFO vehicle onto your island at the spawner's given location and orientation.
- Source: https://dev.epicgames.com/documentation/en-us/fortnite-creative/using-ufo-spawner-devices-in-fortnite-creative
- Local: data/epic-docs/documentation/en-us/fortnite-creative/using-ufo-spawner-devices-in-fortnite-creative.md
Guides & Concepts
[UPDATED] Adding Playtesters in Fortnite Creative
Playtesters help to ensure island quality before publishing by working out the bugs and issues on your project through playtesting. This kind of quality control is part of a project release schedule and good practice for serious island developers.
- Source: https://dev.epicgames.com/documentation/en-us/fortnite/adding-playtesters-in-fortnite-creative
- Local: data/epic-docs/documentation/en-us/fortnite/adding-playtesters-in-fortnite-creative.md
[UPDATED] Adding Playtesters in Fortnite Creative
Playtesters help to ensure island quality before publishing by working out the bugs and issues on your project through playtesting. This kind of quality control is part of a project release schedule and good practice for serious island developers.
- Source: https://dev.epicgames.com/documentation/en-us/fortnite-creative/adding-playtesters-in-fortnite-creative
- Local: data/epic-docs/documentation/en-us/fortnite-creative/adding-playtesters-in-fortnite-creative.md
[UPDATED] AI and NPCs in Unreal Editor for Fortnite
In this section, you'll find everything you need to know about using artificial intelligence (AI) and non-player characters (NPCs) on your island. This allows you to add a variety of gameplay and facilitate interesting interactions between the player and creatures and characters!
- Source: https://dev.epicgames.com/documentation/en-us/fortnite/ai-and-npcs-in-unreal-editor-for-fortnite
- Local: data/epic-docs/documentation/en-us/fortnite/ai-and-npcs-in-unreal-editor-for-fortnite.md
[UPDATED] Animation and Cinematics in Unreal Editor for Fortnite
Within UEFN you can import and assign animations to skeletal meshes. Then, using Sequencer, you can create a Level Sequence to make a cinematic that then trigger with the Cinematic Sequence Device.
- Source: https://dev.epicgames.com/documentation/en-us/fortnite/animation-and-cinematics-in-unreal-editor-for-fortnite
- Local: data/epic-docs/documentation/en-us/fortnite/animation-and-cinematics-in-unreal-editor-for-fortnite.md
[UPDATED] Audio in Unreal Editor for Fortnite
Audio is one of the most effective ways to create atmosphere and enhance immersion in a game. Unreal Editor for Fortnite (UEFN) gives you the tools you need to take your experiences to the next level by using audio.
- Source: https://dev.epicgames.com/documentation/en-us/fortnite/audio-in-unreal-editor-for-fortnite
- Local: data/epic-docs/documentation/en-us/fortnite/audio-in-unreal-editor-for-fortnite.md
[UPDATED] Build a Game in Unreal Editor for Fortnite
Each tutorial provides step-by-step guidance on how to use Unreal Editor for Fortnite (UEFN) and Verse to create a project that results in a complete island experience.
- Source: https://dev.epicgames.com/documentation/en-us/fortnite/build-a-game-in-unreal-editor-for-fortnite
- Local: data/epic-docs/documentation/en-us/fortnite/build-a-game-in-unreal-editor-for-fortnite.md
[UPDATED] Build Your First Island in Fortnite
Ready for your first foray into Unreal Editor for Fortnite? Follow the steps in this tutorial and at the end, you'll have a sweet little one-person shooter mini-game!
- Source: https://dev.epicgames.com/documentation/en-us/fortnite/build-your-first-island-in-fortnite
- Local: data/epic-docs/documentation/en-us/fortnite/build-your-first-island-in-fortnite.md
[UPDATED] Building Basics in Fortnite Creative
Use Building Basics to learn Creative's core systems — and other things that help you build your island experience. This can range from learning how to create lobbies or how to best use grids, to best practices and tips and tricks for making your experience faster and easier.
- Source: https://dev.epicgames.com/documentation/en-us/fortnite/building-basics-in-fortnite-creative
- Local: data/epic-docs/documentation/en-us/fortnite/building-basics-in-fortnite-creative.md
[UPDATED] Building LEGO® Islands in Fortnite
Did you know that in addition to playing LEGO® experiences in Fortnite, you can also make your own LEGO Island?
- Source: https://dev.epicgames.com/documentation/en-us/fortnite/building-lego-islands-in-fortnite
- Local: data/epic-docs/documentation/en-us/fortnite/building-lego-islands-in-fortnite.md
[UPDATED] Campaigns in Fortnite
A Sponsored Row Campaign is a feature in Fortnite that you can use to increase the visibility of an island you feel isn’t performing as well as you believe it should.
- Source: https://dev.epicgames.com/documentation/en-us/fortnite/campaigns-in-fortnite
- Local: data/epic-docs/documentation/en-us/fortnite/campaigns-in-fortnite.md
[UPDATED] Collaborate and Publish in Unreal Editor for Fortnite
Learn how to collaborate as a team and use revision control. When you're ready, playtest your island and prep your island for publishing.
- Source: https://dev.epicgames.com/documentation/en-us/fortnite/collaborate-and-publish-in-unreal-editor-for-fortnite
- Local: data/epic-docs/documentation/en-us/fortnite/collaborate-and-publish-in-unreal-editor-for-fortnite.md
[UPDATED] Collaborating in Unreal Editor for Fortnite
Multiple people can collaborate on a single Unreal Editor for Fortnite (UEFN) project by using the UEFN revision-control system. To edit a UEFN project you do not own, you must belong to the team the project belongs to.
- Source: https://dev.epicgames.com/documentation/en-us/fortnite/collaborating-in-unreal-editor-for-fortnite
- Local: data/epic-docs/documentation/en-us/fortnite/collaborating-in-unreal-editor-for-fortnite.md
[UPDATED] Composing with Patchwork in Fortnite Creative
Fortnite Patchwork is a suite of devices for Fortnite Creative and Unreal Editor for Fortnite (UEFN) that you can use to create and manipulate music and visuals to sync with your gameplay.
- Source: https://dev.epicgames.com/documentation/en-us/fortnite-creative/composing-with-patchwork-in-fortnite-creative
- Local: data/epic-docs/documentation/en-us/fortnite-creative/composing-with-patchwork-in-fortnite-creative.md
[UPDATED] Composing with Patchwork in Fortnite Creative
Fortnite Patchwork is a suite of devices for Fortnite Creative and Unreal Editor for Fortnite (UEFN) that you can use to create and manipulate music and visuals to sync with your gameplay.
- Source: https://dev.epicgames.com/documentation/en-us/fortnite/composing-with-patchwork-in-fortnite-creative
- Local: data/epic-docs/documentation/en-us/fortnite/composing-with-patchwork-in-fortnite-creative.md
[UPDATED] Create Custom NPC Behavior in Unreal Editor for Fortnite
The behavior of an NPC character is defined by their behavior script. The behavior script is what tells characters what actions to take in the world, such as where to go, what to fight, and how to interact with other characters. Characters such as guards and wildlife may have additional behaviors, such as perception, alertness, and the ability to be hired or tamed.
- Source: https://dev.epicgames.com/documentation/en-us/uefn/create-custom-npc-behavior-in-unreal-editor-for-fortnite
- Local: data/epic-docs/documentation/en-us/uefn/create-custom-npc-behavior-in-unreal-editor-for-fortnite.md
[UPDATED] Creating Teams in Creator Portal in Unreal Editor for Fortnite
The Creator Portal provides a way for you to form collaborative teams of developers that can work together on shared UEFN projects.
- Source: https://dev.epicgames.com/documentation/en-us/fortnite/creating-teams-in-creator-portal-in-unreal-editor-for-fortnite
- Local: data/epic-docs/documentation/en-us/fortnite/creating-teams-in-creator-portal-in-unreal-editor-for-fortnite.md
[UPDATED] Creative User Interface for Fortnite Creative
Whether you're a player or a game developer, understanding the Fortnite Creative user interface will help you find what you need fast!
- Source: https://dev.epicgames.com/documentation/en-us/fortnite/creative-user-interface-for-fortnite-creative
- Local: data/epic-docs/documentation/en-us/fortnite/creative-user-interface-for-fortnite-creative.md
[UPDATED] Device Design Examples in Fortnite Creative
You've learned about devices, now take it to the next level! In this section you'll find new ways to use the devices you're familiar with to try new mechanics and gameplay!
- Source: https://dev.epicgames.com/documentation/en-us/fortnite/device-design-examples-in-fortnite-creative
- Local: data/epic-docs/documentation/en-us/fortnite/device-design-examples-in-fortnite-creative.md
[UPDATED] Discover the Resources Waiting for You as a Fortnite Creator!
The resources available to Fortnite developershave expanded! You can use some or all of these tools to bring your own vision of the next great game or experience to life — and each resource dovetails into the next to create great games in Fortnite.
- Source: https://dev.epicgames.com/documentation/en-us/fortnite/discover-the-resources-waiting-for-you-as-a-fortnite-creator
- Local: data/epic-docs/documentation/en-us/fortnite/discover-the-resources-waiting-for-you-as-a-fortnite-creator.md
[UPDATED] Editor Best Practices in Unreal Editor for Fortnite
In this section you'll learn all about best practices and tips and tricks for using UEFN, like keyboard shortcuts and grid snapping.
- Source: https://dev.epicgames.com/documentation/en-us/fortnite/editor-best-practices-in-unreal-editor-for-fortnite
- Local: data/epic-docs/documentation/en-us/fortnite/editor-best-practices-in-unreal-editor-for-fortnite.md
[UPDATED] Education in Fortnite Creative
Free Fortnite lesson plans are available to educators who want to use Creative or Unreal Editor for Fortnite (UEFN) in creative ways in the classroom.
- Source: https://dev.epicgames.com/documentation/en-us/fortnite/education-in-fortnite-creative
- Local: data/epic-docs/documentation/en-us/fortnite/education-in-fortnite-creative.md
[UPDATED] Environments and Landscapes in Unreal Editor for Fortnite
Learn how to build your own island lanscapes and environments in UEFN!
- Source: https://dev.epicgames.com/documentation/en-us/fortnite/environments-and-landscapes-in-unreal-editor-for-fortnite
- Local: data/epic-docs/documentation/en-us/fortnite/environments-and-landscapes-in-unreal-editor-for-fortnite.md
[UPDATED] Exploring Discover in Fortnite Creative
When you launch Fortnite from the Epic Games Launcher, Fortnite will open in the the Discover UI. The last experience you played will show up as your currently selected island and will be reflected in the lobby background.
- Source: https://dev.epicgames.com/documentation/en-us/fortnite-creative/exploring-discover-in-fortnite-creative
- Local: data/epic-docs/documentation/en-us/fortnite-creative/exploring-discover-in-fortnite-creative.md
[UPDATED] Exploring the Sidebar and Game Menu in Fortnite Creative
The sidebar is the menu that pops out from the right when you press the Esc key. You can access the sidebar across all Fortnite game genres (Save the World, Battle Royale, Creative and so on), although the choices listed in the sidebar may differ, depending on which genre you are in, and where in a game or experience you are.
- Source: https://dev.epicgames.com/documentation/en-us/fortnite-creative/exploring-the-sidebar-and-game-menu-in-fortnite-creative
- Local: data/epic-docs/documentation/en-us/fortnite-creative/exploring-the-sidebar-and-game-menu-in-fortnite-creative.md
[UPDATED] Fortnite Creative Glossary
Games and game design have their own unique language set, made up in part of slang and science, with a little magic and fun to fill the cracks. Check back frequently — this is a work in progress, and we're dropping new terms all the time.
- Source: https://dev.epicgames.com/documentation/en-us/fortnite-creative/fortnite-creative-glossary
- Local: data/epic-docs/documentation/en-us/fortnite-creative/fortnite-creative-glossary.md
[UPDATED] Fortnite Documentation
Welcome to the official Fortnite Documentation — the source of truth for everything to do with building your own islands in Fortnite.
- Source: https://dev.epicgames.com/documentation/en-us/fortnite/fortnite-documentation
- Local: data/epic-docs/documentation/en-us/fortnite/fortnite-documentation.md
[UPDATED] Fortnite Glossary
Games and game design have a unique language set made up in part of slang with a sprinkle of science, and a little magic and fun to fill the cracks. Use this list of key words to learn more about the Fortnite Ecosystem, and check back frequently — this is forever a work in progress, and we drop new terms as they reveal themselves.
- Source: https://dev.epicgames.com/documentation/en-us/fortnite/fortnite-glossary
- Local: data/epic-docs/documentation/en-us/fortnite/fortnite-glossary.md
[UPDATED] Fortnite Weapons Primer
A weapon is an item that a player can use to do damage to another object or player. Most weapons use some sort of ammunition (ammo for short) unless they are melee weapons, like swords or hammers.
- Source: https://dev.epicgames.com/documentation/en-us/fortnite/fortnite-weapons-primer
- Local: data/epic-docs/documentation/en-us/fortnite/fortnite-weapons-primer.md
[UPDATED] Game Collections in Fortnite
Fortnite brings unparalleled value by partnering with top brands to offer you exclusive assets and mechanics for your islands. These collaborations provide access to unique characters, environments, and gameplay elements from some of the world's most popular franchises. Whether it’s designing an action-packed TMNT battle arena, a terrifying The Walking Dead Universe survival map, or crafting a…
- Source: https://dev.epicgames.com/documentation/en-us/fortnite/game-collections-in-fortnite
- Local: data/epic-docs/documentation/en-us/fortnite/game-collections-in-fortnite.md
[UPDATED] Get Started Creating in Fortnite
Whether you are using the Creative toolset, or Unreal Editor for Fortnite (UEFN), explore the links below to learn about the tools, and how to get started building your islands in Fortnite.
- Source: https://dev.epicgames.com/documentation/en-us/fortnite/get-started-creating-in-fortnite
- Local: data/epic-docs/documentation/en-us/fortnite/get-started-creating-in-fortnite.md
[UPDATED] Getting to Know the User Interface in Unreal Editor for Fortnite
The better you know the user interface, the faster you can work. Get your basic UI commands down, then move on to ways to navigate faster and more easily!
- Source: https://dev.epicgames.com/documentation/en-us/fortnite/getting-to-know-the-user-interface-in-unreal-editor-for-fortnite
- Local: data/epic-docs/documentation/en-us/fortnite/getting-to-know-the-user-interface-in-unreal-editor-for-fortnite.md
[UPDATED] Import Content and Islands in Unreal Editor for Fortnite
In Unreal Editor for Fortnite (UEFN) you can import assets you created in third-party tools like Maya 3D, Blender, Sketchfab, Quixel, and Unreal Engine, or any other asset that meets the UEFN criteria.
- Source: https://dev.epicgames.com/documentation/en-us/fortnite/import-content-and-islands-in-unreal-editor-for-fortnite
- Local: data/epic-docs/documentation/en-us/fortnite/import-content-and-islands-in-unreal-editor-for-fortnite.md
[UPDATED] In Island Transactions in Fortnite
In-Island Transactions provides a way for you to create your own in-game economy by offering items to players in exchange for V-Bucks. Use Verse to define the item name, description, and price (in V-Bucks). Review your catalog of offers and monitor sales performance from within Creator Portal while the system ensures a central, unchangeable record of every transaction.
- Source: https://dev.epicgames.com/documentation/en-us/fortnite/in-island-transactions-in-fortnite
- Local: data/epic-docs/documentation/en-us/fortnite/in-island-transactions-in-fortnite.md
[UPDATED] In-Game User Interfaces in Unreal Editor for Fortnite
An in-game user interface (UI) is an interface that can be customized for user interaction during a game. A custom UI can only be added per player — a custom UI is associated with a specific player, and only that player can see it.
- Source: https://dev.epicgames.com/documentation/en-us/fortnite/ingame-user-interfaces-in-unreal-editor-for-fortnite
- Local: data/epic-docs/documentation/en-us/fortnite/ingame-user-interfaces-in-unreal-editor-for-fortnite.md
[UPDATED] Intro to Post-processing in Unreal Editor for Fortnite
Post processing is a non-destructive way of defining the overall look of the whole or part of an island by using placed volumes in Unreal Editor for Fortnite (UEFN). Post process volumes include settings that can affect lighting, scene coloring, add camera effects, and more. These affect how the island looks and add visual interest.
- Source: https://dev.epicgames.com/documentation/en-us/fortnite/intro-to-postprocessing-in-unreal-editor-for-fortnite
- Local: data/epic-docs/documentation/en-us/fortnite/intro-to-postprocessing-in-unreal-editor-for-fortnite.md
[UPDATED] Island Moderation and Guidelines in Fortnite Creative
Preparing your island for publication? Be sure to read through these guidelines and policies before you upload your island. Knowing how your island will be moderated ahead of time will help your island approval go more smoothly.
- Source: https://dev.epicgames.com/documentation/en-us/fortnite/island-moderation-and-guidelines-in-fortnite-creative
- Local: data/epic-docs/documentation/en-us/fortnite/island-moderation-and-guidelines-in-fortnite-creative.md
[UPDATED] Island Settings in UEFN and Fortnite Creative
Island Settings are the settings you can control that affect the island you're currently on.
- Source: https://dev.epicgames.com/documentation/en-us/fortnite/island-settings-in-uefn-and-fortnite-creative
- Local: data/epic-docs/documentation/en-us/fortnite/island-settings-in-uefn-and-fortnite-creative.md
[UPDATED] KPop Demon Hunters Islands in Fortnite
Hit the high note with the KPop Demon Hunters content in Fortnite Creative and Unreal Editor for Fortnite (UEFN). The feature set includes themed characters, assets, and devices. Build islands that bring the energy of the HUNTR/X pop group, dynamic combat with demons, and pressure to protect the Honmoon barrier.
- Source: https://dev.epicgames.com/documentation/en-us/fortnite/kpop-demon-hunters-islands-in-fortnite
- Local: data/epic-docs/documentation/en-us/fortnite/kpop-demon-hunters-islands-in-fortnite.md
[UPDATED] Learn Game Mechanics in Unreal Editor for Fortnite
Want to learn how to manipulate platofrms in Verse? Or created a logic puzzle? Check out these different mechanics and interactions for you to add to your own projects.
- Source: https://dev.epicgames.com/documentation/en-us/fortnite/learn-game-mechanics-in-unreal-editor-for-fortnite
- Local: data/epic-docs/documentation/en-us/fortnite/learn-game-mechanics-in-unreal-editor-for-fortnite.md
[UPDATED] LEGO® Action Adventure in Unreal Editor for Fortnite
The LEGO® Action Adventure Template provides the building blocks for a classic action-adventure gameplay complete with quests, combat, and puzzles. Most of all, this template showcases the LEGO® Assembly Devices device so you can prove to the world that you're a certified LEGO professional builder. Lock into this experience while enjoying its relaxing vibes and soothing sounds.
- Source: https://dev.epicgames.com/documentation/en-us/uefn/lego-action-adventure-in-unreal-editor-for-fortnite
- Local: data/epic-docs/documentation/en-us/uefn/lego-action-adventure-in-unreal-editor-for-fortnite.md
[UPDATED] Lighting in Unreal Editor for Fortnite
Lighting has many uses in game design. Lighting evokes emotion and mood, helps create depth through the use of shadows, and provides other visual information. It can even provide a pathway for players to follow.
- Source: https://dev.epicgames.com/documentation/en-us/fortnite/lighting-in-unreal-editor-for-fortnite
- Local: data/epic-docs/documentation/en-us/fortnite/lighting-in-unreal-editor-for-fortnite.md
[UPDATED] Lore Version Control in Unreal Editor for Fortnite
Unreal Editor for Fortnite (UEFN) integrates revision control as an important part of project management, team processes, and quality control. It maintains a single source of truth for the project and developers.
- Source: https://dev.epicgames.com/documentation/en-us/fortnite/unreal-revision-control-in-unreal-editor-for-fortnite
- Local: data/epic-docs/documentation/en-us/fortnite/unreal-revision-control-in-unreal-editor-for-fortnite.md
[UPDATED] Materials in Unreal Editor for Fortnite
Creating your own materials and textures in Unreal Editor for Fortnite (UEFN) gives the meshes you use on your island a unique look and feel.
- Source: https://dev.epicgames.com/documentation/en-us/fortnite/materials-in-unreal-editor-for-fortnite
- Local: data/epic-docs/documentation/en-us/fortnite/materials-in-unreal-editor-for-fortnite.md
[UPDATED] Memory and Optimization in Unreal Editor for Fortnite
Unreal Editor for Fortnite (UEFN) gives you industry-leading tools and access to a large, thriving community of players eager to try out your creations. In order to make your experiences available on all Fortnite-supported platforms, memory and project size limits were put in place.
- Source: https://dev.epicgames.com/documentation/en-us/fortnite/memory-and-optimization-in-unreal-editor-for-fortnite
- Local: data/epic-docs/documentation/en-us/fortnite/memory-and-optimization-in-unreal-editor-for-fortnite.md
[UPDATED] Mobile Development in Fortnite
Developing for mobile in Unreal Editor for Fortnite (UEFN) gives you the opportunity to tap into Fortnite’s massive, cross-platform player base. Access a scalable path that countless indie developers and studios use to create visually striking mobile games that benefit from Fortnite’s infrastructure and discovery system.
- Source: https://dev.epicgames.com/documentation/en-us/fortnite/mobile-development-in-fortnite
- Local: data/epic-docs/documentation/en-us/fortnite/mobile-development-in-fortnite.md
[UPDATED] Modeling in Unreal Editor for Fortnite
In Unreal Editor for Fortnite (UEFN), you can create custom 3D models and edit existing meshes. The UEFN modeling tools are robust enough to create and edit complex 3D assets, reduce polygon counts in textures by baking models, create and edit UVs, and more.
- Source: https://dev.epicgames.com/documentation/en-us/fortnite/modeling-in-unreal-editor-for-fortnite
- Local: data/epic-docs/documentation/en-us/fortnite/modeling-in-unreal-editor-for-fortnite.md
[UPDATED] Modify and Run Your First Verse Program in Unreal Editor for Fortnite
See Launching Unreal Editor for Fortnite for how to access UEFN.
- Source: https://dev.epicgames.com/documentation/en-us/uefn/modify-and-run-your-first-verse-program-in-unreal-editor-for-fortnite
- Local: data/epic-docs/documentation/en-us/uefn/modify-and-run-your-first-verse-program-in-unreal-editor-for-fortnite.md
[UPDATED] Navigation Mesh in Fortnite Creative
The navigation mesh (or NavMesh for short) is a grid that AIs use to navigate your game world. AIs don't see the game world the same way players do, and can't tell where they can and can't go just by looking. To decide where to go and how to get there, they need a grid that tells them where they can navigate to, and what kind of surface they're walking on. The way in which an AI chooses how…
- Source: https://dev.epicgames.com/documentation/en-us/fortnite-creative/navigation-mesh-in-fortnite-creative
- Local: data/epic-docs/documentation/en-us/fortnite-creative/navigation-mesh-in-fortnite-creative.md
[UPDATED] Onboarding Guide to Programming with Verse in Unreal Editor for Fortnite
For a smooth start in using Verse to create gameplay in Unreal Editor for Fortnite (UEFN), follow these steps in order, skipping any steps you're already familiar with.
- Source: https://dev.epicgames.com/documentation/en-us/fortnite/onboarding-guide-to-programming-with-verse-in-unreal-editor-for-fortnite
- Local: data/epic-docs/documentation/en-us/fortnite/onboarding-guide-to-programming-with-verse-in-unreal-editor-for-fortnite.md
[UPDATED] Physics
Introducing Physics in UEFN
- Source: https://dev.epicgames.com/documentation/en-us/fortnite/physics
- Local: data/epic-docs/documentation/en-us/fortnite/physics.md
[UPDATED] Playtesting Your Island in Unreal Editor for Fortnite
As you create your game or experience in UEFN, it's a good idea to routinely playtest your project in Fortnite Creative to make sure the props, materials, and devices behave exactly as you intended when you set them up in the editor.
- Source: https://dev.epicgames.com/documentation/en-us/fortnite/playtesting-your-island-in-unreal-editor-for-fortnite
- Local: data/epic-docs/documentation/en-us/fortnite/playtesting-your-island-in-unreal-editor-for-fortnite.md
[UPDATED] Programming with Verse in Unreal Editor for Fortnite
Ready to use Verse to take your island up to the next level? Here's where you can start!
- Source: https://dev.epicgames.com/documentation/en-us/fortnite/programming-with-verse-in-unreal-editor-for-fortnite
- Local: data/epic-docs/documentation/en-us/fortnite/programming-with-verse-in-unreal-editor-for-fortnite.md
[UPDATED] Promoting Your Fortnite Creative Island
You’ve spent time, sweat, and imagination putting together your island. You’re proud of what you’ve accomplished, and you want to share what you've done with the Fortnite Creative world.
- Source: https://dev.epicgames.com/documentation/en-us/fortnite/promoting-your-fortnite-creative-island
- Local: data/epic-docs/documentation/en-us/fortnite/promoting-your-fortnite-creative-island.md
[UPDATED] Realistic Assets, Characters, and Environments in Unreal Editor for Fortnite
Using Unreal Editor for Fortnite (UEFN) to add realistic assets, characters, and environments to your games lets you leverage powerful Unreal Engine capabilities inside the Fortnite ecosystem. UEFN provides advanced tools for creating and working with high-fidelity models, detailed textures, and dynamic environments, so each element of the game world is immersive and lifelike.
- Source: https://dev.epicgames.com/documentation/en-us/fortnite/realistic-assets-characters-and-environments-in-unreal-editor-for-fortnite
- Local: data/epic-docs/documentation/en-us/fortnite/realistic-assets-characters-and-environments-in-unreal-editor-for-fortnite.md
[UPDATED] Replays Feature in Fortnite Creative
Replays is a tool that packs a lot of potential when it comes to your social media game. You call the shots (literally!) when you use Replays in your games.
- Source: https://dev.epicgames.com/documentation/en-us/fortnite-creative/replays-feature-in-fortnite-creative
- Local: data/epic-docs/documentation/en-us/fortnite-creative/replays-feature-in-fortnite-creative.md
[UPDATED] Revision History and Conflict Resolution in Unreal Editor for Fortnite
Unreal Revision Control (URC) lists all submitted revisions for the currently synced branch in the Branch History tab. This tab provides you a way to quickly find important revision information, asset conflicts, and filter revisions by date.
- Source: https://dev.epicgames.com/documentation/en-us/fortnite/snapshot-history-and-conflict-resolution-in-unreal-editor-for-fortnite
- Local: data/epic-docs/documentation/en-us/fortnite/snapshot-history-and-conflict-resolution-in-unreal-editor-for-fortnite.md
[UPDATED] Scene Graph in Unreal Editor for Fortnite
Scene Graph is a unified structure that connects all the objects in the world. Think of it as a toolbox that contains all the tools you need for set dressing, gameplay systems, audio, VFX, and much more, to create experiences for the metaverse.
- Source: https://dev.epicgames.com/documentation/en-us/fortnite/scene-graph-in-unreal-editor-for-fortnite
- Local: data/epic-docs/documentation/en-us/fortnite/scene-graph-in-unreal-editor-for-fortnite.md
[UPDATED] Squid Game Islands in Fortnite
Bring the games and deception with Squid Game brand islands. Explore the world of Squid Game in Fortnite with a wide range of tools and assets. These resources are designed for all developers to craft unique experiences that capture the essence of the brand.
- Source: https://dev.epicgames.com/documentation/en-us/fortnite/squid-game-islands-in-fortnite
- Local: data/epic-docs/documentation/en-us/fortnite/squid-game-islands-in-fortnite.md
[UPDATED] Starting and Organizing a Project in Fortnite
In this guide, you’ll learn how to create and launch a project in Unreal Editor for Fortnite (UEFN).
- Source: https://dev.epicgames.com/documentation/en-us/uefn/project-organization-in-unreal-editor-for-fortnite
- Local: data/epic-docs/documentation/en-us/uefn/project-organization-in-unreal-editor-for-fortnite.md
[UPDATED] Teenage Mutant Ninja Turtle Islands in Unreal Editor for Fortnite
The Teenage Mutant Ninja Turtles (TMNT) have arrived in Unreal Editor for Fortnite (UEFN), bringing with them an arsenal of exciting new tools, assets, and possibilities for developers. Whether you’re a seasoned developer or just starting, these new resources are designed to inspire and empower you to craft unique and immersive experiences.
- Source: https://dev.epicgames.com/documentation/en-us/fortnite/teenage-mutant-ninja-turtle-islands-in-unreal-editor-for-fortnite
- Local: data/epic-docs/documentation/en-us/fortnite/teenage-mutant-ninja-turtle-islands-in-unreal-editor-for-fortnite.md
[UPDATED] The Walking Dead Universe Islands in Unreal Editor for Fortnite
Run, don't walk! The Walking Dead Universe (TWDU) is available in Unreal Editor for Fortnite (UEFN) with everything you need to mutate your creativity so that you can design a pleasantly horrific gameplay experience.
- Source: https://dev.epicgames.com/documentation/en-us/fortnite/the-walking-dead-universe-islands-in-unreal-editor-for-fortnite
- Local: data/epic-docs/documentation/en-us/fortnite/the-walking-dead-universe-islands-in-unreal-editor-for-fortnite.md
[UPDATED] UEFN-Only Devices in Fortnite
In UEFN, you have access to all the devices available in Fortnite Creative, but there are also devices that you can only use with UEFN.
- Source: https://dev.epicgames.com/documentation/en-us/uefn/devices-in-unreal-editor-for-fortnite
- Local: data/epic-docs/documentation/en-us/uefn/devices-in-unreal-editor-for-fortnite.md
[UPDATED] Unreal Editor for Fortnite Glossary
This glossary contains terms specific to Unreal Editor for Fortnite (UEFN).
- Source: https://dev.epicgames.com/documentation/en-us/uefn/unreal-editor-for-fortnite-glossary
- Local: data/epic-docs/documentation/en-us/uefn/unreal-editor-for-fortnite-glossary.md
[UPDATED] Using Creator Portal in Fortnite Creative
Use the Creator Portal’s tools and features to publish and manage your projects as well as:
- Source: https://dev.epicgames.com/documentation/en-us/fortnite/using-creator-portal-in-fortnite-creative
- Local: data/epic-docs/documentation/en-us/fortnite/using-creator-portal-in-fortnite-creative.md
[UPDATED] Using Devices in Fortnite
Devices are an important part of your toolset for setting up interactive experiences on your islands.
- Source: https://dev.epicgames.com/documentation/en-us/fortnite-creative/using-devices-in-fortnite-creative
- Local: data/epic-docs/documentation/en-us/fortnite-creative/using-devices-in-fortnite-creative.md
[UPDATED] Using Devices in Fortnite
Devices are an important part of your toolset for setting up interactive experiences on your islands.
- Source: https://dev.epicgames.com/documentation/en-us/fortnite/using-devices-in-fortnite
- Local: data/epic-docs/documentation/en-us/fortnite/using-devices-in-fortnite.md
[UPDATED] Using Fortnite Patchwork in Unreal Editor for Fortnite
Just like in Fortnite Creative, you can use Fortnite Patchwork devices on your UEFN island. All Patchwork devices function the same way they do in Creative, with the same device options. The core differences between using Patchwork in UEFN and using it in Creative are how you connect cables, and how you can use Verse to enable and disable devices.
- Source: https://dev.epicgames.com/documentation/en-us/uefn/using-patchwork-in-unreal-editor-for-fortnite
- Local: data/epic-docs/documentation/en-us/uefn/using-patchwork-in-unreal-editor-for-fortnite.md
[UPDATED] Using Items in Fortnite Creative
Items include things that can be consumed by players, devices, or weapons. There are also items that can be used as crafting materials. Crafting materials are items that can be exchanged for other usable items, or that can be used as a crafting piece for a larger item.
- Source: https://dev.epicgames.com/documentation/en-us/fortnite-creative/using-items-in-fortnite-creative
- Local: data/epic-docs/documentation/en-us/fortnite-creative/using-items-in-fortnite-creative.md
[UPDATED] Using Items in Fortnite Creative
Items include things that can be consumed by players, devices, or weapons. There are also items that can be used as crafting materials. Crafting materials are items that can be exchanged for other usable items, or that can be used as a crafting piece for a larger item.
- Source: https://dev.epicgames.com/documentation/en-us/fortnite/using-items-in-fortnite-creative
- Local: data/epic-docs/documentation/en-us/fortnite/using-items-in-fortnite-creative.md
[UPDATED] Using Power Crafting Items in Fortnite Creative
Use Power items as a necessary ingredient to craft items that may need one of these types of energy sources. These items can be required as the energy ingredient for items like, Ray Gun, Flashlight, or Jetpack.
- Source: https://dev.epicgames.com/documentation/en-us/fortnite-creative/using-power-crafting-items-in-fortnite-creative
- Local: data/epic-docs/documentation/en-us/fortnite-creative/using-power-crafting-items-in-fortnite-creative.md
[UPDATED] Using Prefabs and Galleries in Fortnite Creative
Want to create a western town? A medieval village? A futuristic techno-punk shopping mall? You can start building your theme island with prefabs and galleries.
- Source: https://dev.epicgames.com/documentation/en-us/fortnite/using-prefabs-and-galleries-in-fortnite-creative
- Local: data/epic-docs/documentation/en-us/fortnite/using-prefabs-and-galleries-in-fortnite-creative.md
[UPDATED] Using Vehicle Mod Items in Fortnite Creative
Vehicle mods are items that can be attached to vehicles like the Bear pickup truck.
- Source: https://dev.epicgames.com/documentation/en-us/fortnite-creative/using-vehicle-mod-items-in-fortnite-creative
- Local: data/epic-docs/documentation/en-us/fortnite-creative/using-vehicle-mod-items-in-fortnite-creative.md
[UPDATED] Verse Glossary
Verse is a new programming language, so if you’re an experienced programmer and you see something you don’t fully get, check this glossary.
- Source: https://dev.epicgames.com/documentation/en-us/fortnite/verse-glossary
- Local: data/epic-docs/documentation/en-us/fortnite/verse-glossary.md
[UPDATED] Verse Glossary
Verse is a new programming language, so if you’re an experienced programmer and you see something you don’t fully get, check this glossary.
- Source: https://dev.epicgames.com/documentation/en-us/uefn/verse-glossary
- Local: data/epic-docs/documentation/en-us/uefn/verse-glossary.md
[UPDATED] Visual Effects in Unreal Editor for Fortnite
Add particle effects and other kinds of visual effects to your island.
- Source: https://dev.epicgames.com/documentation/en-us/fortnite/visual-effects-in-unreal-editor-for-fortnite
- Local: data/epic-docs/documentation/en-us/fortnite/visual-effects-in-unreal-editor-for-fortnite.md
Other
[UPDATED] Verse Explorer User Interface Reference in Unreal Editor for Fortnite
Verse Explorer is a tool in Unreal Editor for Fortnite (UEFN) that creates new Verse files from templates, organizes your files with submodules, and supports renaming and deleting files.
- Source: https://dev.epicgames.com/documentation/fortnite/verse-explorer-user-interface-reference-in-unreal-editor-for-fortnite
- Local: data/epic-docs/documentation/fortnite/verse-explorer-user-interface-reference-in-unreal-editor-for-fortnite.md
[UPDATED] Verse Glossary
Verse is a new programming language, so if you’re an experienced programmer and you see something you don’t fully get, check this glossary.
- Source: https://dev.epicgames.com/documentation/fortnite/verse-glossary
- Local: data/epic-docs/documentation/fortnite/verse-glossary.md
[UPDATED] Verse Language Get Started in Unreal Editor for Fortnite
Verse is a programming language designed with video games and game-like experiences in mind. This makes it well-suited for handling game-specific needs.
- Source: https://dev.epicgames.com/documentation/fortnite/verse-language-get-started-in-unreal-editor-for-fortnite
- Local: data/epic-docs/documentation/fortnite/verse-language-get-started-in-unreal-editor-for-fortnite.md
[UPDATED] Verse Tags in Fortnite
With Verse tags, you can find objects (both Creative devices and entities) marked with a specific tag while the game is running. Verse tags let you work with multiple objects without needing to set up properties and assign references in Unreal Editor for Fortnite (UEFN). You can create Verse tags in Verse code, and add or remove them from objects either in UEFN using the UI, or…
- Source: https://dev.epicgames.com/documentation/fortnite/verse-tags-in-fortnite
- Local: data/epic-docs/documentation/fortnite/verse-tags-in-fortnite.md
Generated by Verse Cortex from 10599 crawled pages.