From 6efa17df304ea49d884d5bf78522421faecb7d0a Mon Sep 17 00:00:00 2001 From: Kelsey Date: Tue, 23 Jan 2024 02:52:30 -0800 Subject: [PATCH] Add line helpers to a couple entities --- fgd/point/env/env_microphone.fgd | 2 +- fgd/point/scripted/scripted_sequence.fgd | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/fgd/point/env/env_microphone.fgd b/fgd/point/env/env_microphone.fgd index 06d4eb8fd..0cfffa4ac 100644 --- a/fgd/point/env/env_microphone.fgd +++ b/fgd/point/env/env_microphone.fgd @@ -3,7 +3,7 @@ sphere(MaxRange) color(0 0 255) line(64 64 64, targetname, target) - line(255 255 0, targetname, target, targetname, SpeakerName) + line(255 255 0, targetname, SpeakerName) = env_microphone: "An entity that acts as a microphone. It works in one of two modes. " + "If it has a 'Speaker' set, it picks up all sounds within the specified sound range, " + "and rebroadcasts them through the Speaker entity. " + diff --git a/fgd/point/scripted/scripted_sequence.fgd b/fgd/point/scripted/scripted_sequence.fgd index 1d9b93b16..a07913dce 100644 --- a/fgd/point/scripted/scripted_sequence.fgd +++ b/fgd/point/scripted/scripted_sequence.fgd @@ -1,6 +1,7 @@ @PointClass base(BaseEntityPoint, DXLevelChoice, SystemLevelChoice) studio("models/editor/scriptedsequence.mdl") color(255 0 255) + line(255 255 255, targetname, m_iszentity) sphere(m_flRadius) = scripted_sequence: "Grabs an NPC and makes them play a specified set of animations. " + "The NPC can be told to move to the scripted sequence position or can " + "be told to play the script wherever they currently are. " +