Table of Contents

Enum SeBlacklistModes

Namespace
RichHudFramework.UI
Assembly
RichHudClient.dll

Flags determining which game inputs are blocked (blacklisted) by the framework.

Useful for modifying or disabling normal game input behavior while UI elements are active.

[Flags]
public enum SeBlacklistModes

Fields

None = 0

Default: No inputs are blocked. Game functions normally.

Mouse = 1

Disables mouse button clicks (LMB, RMB, MMB, etc.) from reaching the game.

AllKeys = 3

Disables all blacklist-able keys (Keyboard and Mouse).

Note: Not every Space Engineers bind can be disabled via the API.

CameraRot = 4

Disables camera rotation (mouse look). Does not disable looking while holding Alt.

MouseAndCam = Mouse | CameraRot

Disables both mouse button clicks and camera rotation.

Full = 7

Disables all standard key binds and camera rotation.

Chat = 8

Intercepts chat input, preventing chat messages from sending.

FullWithChat = Full | Chat

Comprehensive blocking: Disables all keys, camera rotation, and intercepts chat.