Skip to content

Instantly share code, notes, and snippets.

@WahlbeckUEFN
WahlbeckUEFN / target_range.verse
Created April 18, 2023 20:51
Code for an aim training game in UEFN and Fortnite Creative 2.0
using { /Fortnite.com/Devices }
using { /Verse.org/Simulation }
using { /Verse.org/Random }
using { /UnrealEngine.com/Temporary/Diagnostics }
using { /UnrealEngine.com/Temporary/SpatialMath }
target_range := class(creative_device):
@editable var ScoreBillboard : billboard_device = billboard_device{}
@WahlbeckUEFN
WahlbeckUEFN / bug_blaster.verse
Created April 13, 2023 14:05
The full code for the Bug Blaster UEFN YouTube Tutorial by Wahlbeck Warforge
using { /Fortnite.com/Devices }
using { /Verse.org/Simulation }
game_manager := class(creative_device):
@editable var Enemies : []creative_prop = array{}
@editable var Granter : item_granter_device = item_granter_device{}
@editable var PropManipulator : prop_manipulator_device = prop_manipulator_device{}
@editable var EndDevice : end_game_device = end_game_device{}
@WahlbeckUEFN
WahlbeckUEFN / item_rotator.verse
Created March 31, 2023 16:23
How to rotate and move items in Verse Programming language and UEFN
using { /Fortnite.com/Devices }
using { /Verse.org/Simulation }
using { /UnrealEngine.com/Temporary/Diagnostics }
using { /UnrealEngine.com/Temporary/SpatialMath }
using { /Verse.org/Simulation/Tags }
# Tag system so we can find all objects we want to rotate
rotate_on := class(tag) {}