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 = 0Default: No inputs are blocked. Game functions normally.
Mouse = 1Disables mouse button clicks (LMB, RMB, MMB, etc.) from reaching the game.
AllKeys = 3Disables all blacklist-able keys (Keyboard and Mouse).
Note: Not every Space Engineers bind can be disabled via the API.
CameraRot = 4Disables camera rotation (mouse look). Does not disable looking while holding Alt.
MouseAndCam = Mouse | CameraRotDisables both mouse button clicks and camera rotation.
Full = 7Disables all standard key binds and camera rotation.
Chat = 8Intercepts chat input, preventing chat messages from sending.
FullWithChat = Full | ChatComprehensive blocking: Disables all keys, camera rotation, and intercepts chat.