diff --git a/fgd/point/prop/prop_laser_catcher.fgd b/fgd/point/prop/prop_laser_catcher.fgd index fdb46152..f90403cd 100644 --- a/fgd/point/prop/prop_laser_catcher.fgd +++ b/fgd/point/prop/prop_laser_catcher.fgd @@ -41,8 +41,11 @@ // Inputs input Skin(integer) : "Set the skin of the catcher manually." - input SetFilterColor(color255) : "Changes the laser filter colour." + input Lock(void) : "Locks the current state of activation of the catcher." + input Unlock(void) : "Unlocks the catcher to be updated freely." + input ForcePowered(color255) : "Locks the catcher in a powered state with the provided pseudo beam color." + input ForceUnpowered(void) : "Locks the catcher in an unpowered state, unable to be activated by lasers." // Outputs output OnPowered(void) : "Fired when a laser hits the target." diff --git a/fgd/point/prop/prop_laser_relay.fgd b/fgd/point/prop/prop_laser_relay.fgd index dff6f3d1..2067b046 100644 --- a/fgd/point/prop/prop_laser_relay.fgd +++ b/fgd/point/prop/prop_laser_relay.fgd @@ -21,6 +21,10 @@ // Inputs input SetFilterColor(color255) : "Changes the laser filter colour." + input Lock(void) : "Locks the current state of activation of the relay." + input Unlock(void) : "Unlocks the relay to be updated freely." + input ForcePowered(color255) : "Locks the relay in a powered state with the provided pseudo beam color." + input ForceUnpowered(void) : "Locks the relay in an unpowered state, unable to be activated by lasers." // Outputs output OnPowered(void) : "Fired when a laser hits the target."