Hooks
Hooks provided by the HUD Extras module for managing additional HUD elements.
Overview
The HUD Extras module adds extra hud elements like an fps counter, fonts configurable with fpshudfont, hooks so other modules can extend, performance stats display, and toggles for individual hud elements.. It provides comprehensive hook integration for customizing managing additional hud elements and extending functionality.
AdjustBlurAmount
đ Purpose
Called to adjust the blur amount before it's applied.
â° When Called
During blur calculation, before the blur value is set.
âī¸ Parameters
| Parameter | Type | Description |
|---|---|---|
blurGoal |
number | The current blur goal value |
âŠī¸ Returns
number - Additional blur amount to add (or subtract if negative)
đ Realm
Client
Overview
The HUD Extras module adds extra hud elements like an fps counter, fonts configurable with fpshudfont, hooks so other modules can extend, performance stats display, and toggles for individual hud elements.. It provides comprehensive hook integration for customizing managing additional hud elements and extending functionality.
HUDExtrasPostDrawBlur
đ Purpose
Called after the blur effect has been drawn.
â° When Called
After the blur is rendered on screen.
âī¸ Parameters
| Parameter | Type | Description |
|---|---|---|
blurValue |
number | The blur value that was applied |
âŠī¸ Returns
nil
đ Realm
Client
Overview
The HUD Extras module adds extra hud elements like an fps counter, fonts configurable with fpshudfont, hooks so other modules can extend, performance stats display, and toggles for individual hud elements.. It provides comprehensive hook integration for customizing managing additional hud elements and extending functionality.
HUDExtrasPostDrawFPS
đ Purpose
Called after the FPS display has been drawn.
â° When Called
After the FPS counter is rendered.
âī¸ Parameters
None
âŠī¸ Returns
nil
đ Realm
Client
Overview
The HUD Extras module adds extra hud elements like an fps counter, fonts configurable with fpshudfont, hooks so other modules can extend, performance stats display, and toggles for individual hud elements.. It provides comprehensive hook integration for customizing managing additional hud elements and extending functionality.
HUDExtrasPostDrawVignette
đ Purpose
Called after the vignette effect has been drawn.
â° When Called
After the vignette is rendered.
âī¸ Parameters
None
âŠī¸ Returns
nil
đ Realm
Client
Overview
The HUD Extras module adds extra hud elements like an fps counter, fonts configurable with fpshudfont, hooks so other modules can extend, performance stats display, and toggles for individual hud elements.. It provides comprehensive hook integration for customizing managing additional hud elements and extending functionality.
HUDExtrasPostDrawWatermark
đ Purpose
Called after the watermark has been drawn.
â° When Called
After the watermark is rendered.
âī¸ Parameters
None
âŠī¸ Returns
nil
đ Realm
Client
Overview
The HUD Extras module adds extra hud elements like an fps counter, fonts configurable with fpshudfont, hooks so other modules can extend, performance stats display, and toggles for individual hud elements.. It provides comprehensive hook integration for customizing managing additional hud elements and extending functionality.
HUDExtrasPreDrawBlur
đ Purpose
Called before the blur effect is drawn.
â° When Called
Before blur calculation and rendering.
âī¸ Parameters
None
âŠī¸ Returns
nil
đ Realm
Client
Overview
The HUD Extras module adds extra hud elements like an fps counter, fonts configurable with fpshudfont, hooks so other modules can extend, performance stats display, and toggles for individual hud elements.. It provides comprehensive hook integration for customizing managing additional hud elements and extending functionality.
HUDExtrasPreDrawFPS
đ Purpose
Called before the FPS display is drawn.
â° When Called
Before the FPS counter is rendered.
âī¸ Parameters
None
âŠī¸ Returns
nil
đ Realm
Client
Overview
The HUD Extras module adds extra hud elements like an fps counter, fonts configurable with fpshudfont, hooks so other modules can extend, performance stats display, and toggles for individual hud elements.. It provides comprehensive hook integration for customizing managing additional hud elements and extending functionality.
HUDExtrasPreDrawVignette
đ Purpose
Called before the vignette effect is drawn.
â° When Called
Before the vignette is rendered.
âī¸ Parameters
None
âŠī¸ Returns
nil
đ Realm
Client
Overview
The HUD Extras module adds extra hud elements like an fps counter, fonts configurable with fpshudfont, hooks so other modules can extend, performance stats display, and toggles for individual hud elements.. It provides comprehensive hook integration for customizing managing additional hud elements and extending functionality.
HUDExtrasPreDrawWatermark
đ Purpose
Called before the watermark is drawn.
â° When Called
Before the watermark is rendered.
âī¸ Parameters
None
âŠī¸ Returns
nil
đ Realm
Client
Overview
The HUD Extras module adds extra hud elements like an fps counter, fonts configurable with fpshudfont, hooks so other modules can extend, performance stats display, and toggles for individual hud elements.. It provides comprehensive hook integration for customizing managing additional hud elements and extending functionality.
ShouldDrawBlur
đ Purpose
Called to determine if blur should be drawn.
â° When Called
During blur drawing check.
âī¸ Parameters
None
âŠī¸ Returns
boolean - Return true to force draw, false to prevent, nil for default
đ Realm
Client
Overview
The HUD Extras module adds extra hud elements like an fps counter, fonts configurable with fpshudfont, hooks so other modules can extend, performance stats display, and toggles for individual hud elements.. It provides comprehensive hook integration for customizing managing additional hud elements and extending functionality.
ShouldDrawWatermark
đ Purpose
Called to determine if the watermark should be drawn.
â° When Called
During watermark drawing check.
âī¸ Parameters
None
âŠī¸ Returns
boolean - Return true to force draw, false to prevent, nil for default
đ Realm
Client