Add keybinds for openening a specified component in VV (#41348)

* quick inspect

* Update Content.Client/Commands/QuickInspectCommand.cs

Co-authored-by: Kyle Tyo <36606155+VerinSenpai@users.noreply.github.com>

* documentation!!!

---------

Co-authored-by: Kyle Tyo <36606155+VerinSenpai@users.noreply.github.com>
This commit is contained in:
slarticodefast
2025-11-13 00:10:48 +01:00
committed by GitHub
parent 512f86a0f0
commit 8c9c6dad82
10 changed files with 110 additions and 1 deletions

View File

@@ -0,0 +1,13 @@
using Robust.Shared.Configuration;
namespace Content.Shared.CCVar;
public sealed partial class CCVars
{
/// <summary>
/// Component to be inspected using the "Quick Inspect Component" keybind.
/// Set by the "quickinspect" command.
/// </summary>
public static readonly CVarDef<string> DebugQuickInspect =
CVarDef.Create("debug.quick_inspect", "", CVar.CLIENTONLY | CVar.ARCHIVE);
}