Making Party Minigames With Cameras And Verse
using { /Fortnite.com/Characters }
using { /Fortnite.com/Devices }
using { /Fortnite.com/Game }
using { /UnrealEngine.com/Temporary/Diagnostics }
using { /Verse.org/Random }
using { /Verse.org/Simulation }
tiltnboom_log_channel := class(log_channel){}
# A Verse-authored creative device that can be placed in a level
tiltnboom := class(creative_device):
Logger:log = log{Channel := tiltnboom_log_channel}
# Trigger used to activate this game. The trigger can be triggered by anything such as a teleporter to the game, or after an intro cinematic.
@editable
ActivateGameTrigger:trigger_device = trigger_device{}
# Trigger used to end this game. Used to remove camera and control devices from players after the game is over.
@editable
EndGameTrigger:trigger_device = trigger_device{}
# The Timer Device used to end the game after a certain amount of time.
@editable
GameTimer:timer_device = timer_device{}
# Array of Sequences, where each sequence is a different cannonball landing position.
@editable
CannonballSequences:[]cinematic_sequence_device = array{}
# Array of Damage Volumes, used to enable and disable them based on the game state.
@editable
DamageVolumes:[]damage_volume_device = array{}
# Array of Player Spawners for this game, used to disable them when the game is over.
@editable
PlayerSpawners:[]player_spawner_device = array{}
# Array of Player Spawners in the HUB, used to enable them after the game is over so players can return to the HUB.
@editable
HUBSpawners:[]player_spawner_device = array{}
# Array of Item Spawners for randomly spawning in a random number of items during the game.
@editable
ItemSpawners:[]item_spawner_device = array{}
You're reading a preview
The full reference is free for BrainDeadGuild Discord members — sign in to read it all, or open the original at the source.
Sign in with your BrainDead.TV / BrainDeadGuild Discord account for full access.