From 835aedad28ac9481b1d965770a84eee887e946f5 Mon Sep 17 00:00:00 2001 From: Panzer Date: Mon, 29 Jul 2024 20:33:41 -0600 Subject: [PATCH] feat: Add OnLand output to triggers --- fgd/bases/Trigger.fgd | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/fgd/bases/Trigger.fgd b/fgd/bases/Trigger.fgd index a02de932f..e67363ae4 100644 --- a/fgd/bases/Trigger.fgd +++ b/fgd/bases/Trigger.fgd @@ -28,6 +28,8 @@ "Only entities that passed this trigger's filters will cause this output to fire." output OnEndTouchAll(void) : "Fires when an entity stops touching this trigger, and no other entities are touching it. " + "Only entities that passed this trigger's filters are considered." - output OnJump(void) : "Fires when a player jumps in this trigger. " + + output OnJump[MOMENTUM](void) : "Fires when a player jumps in this trigger. " + + "Only entities that passed this trigger's filters are considered." + output OnLand[MOMENTUM](void) : "Fires when a player lands in this trigger. " + "Only entities that passed this trigger's filters are considered." ]