Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion fgd/point/prop/prop_laser_catcher.fgd
Original file line number Diff line number Diff line change
Expand Up @@ -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."
Expand Down
4 changes: 4 additions & 0 deletions fgd/point/prop/prop_laser_relay.fgd
Original file line number Diff line number Diff line change
Expand Up @@ -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."
Expand Down
Loading