Developer knowledge network · moderated exchange

Супольнасць UnreliableCode

Супольнасць распрацоўшчыкаў даследаванняў, зваротнага праектавання і кадавання

Knowledge indexжыць
4Categories
919Threads
2.8KПаведамленні
Release

Custom HighlightSettings Glow Chams: Visible vs Occluded Color Blending [v2.4 Technical Discussion]

apex_glow_god
Apex Reverser
MEMBER
прадстаўнік: 128
Дата далучэння: Dec 2020
Паведамленні: 8
Дзякуй: 30
1 месяцаў таму · Jul 4, 2026 10:46 PM
#1

How in-engine HighlightSettings outline glow works:

CPP
void SetPlayerGlow(CPlayer* pPlayer, bool isVisible) {
    // Highlight context index inside HighlightSettings array
    uint8_t contextId = isVisible ? 1 : 2;
    
    // Context 1: Visible (Bright Green outline)
    // Context 2: Occluded / Behind Wall (Cyan outline)
    pPlayer->m_highlightServerContextID() = contextId;
    pPlayer->m_highlightServerFadeInStart() = 0.0f;
    pPlayer->m_highlightServerFadeInEnd() = 0.0f;
}

Zero overlay overhead: the GPU renders the glow directly inside the game's post-processing pipeline!

imgui_artisan
UI Designer
MEMBER
прадстаўнік: 202
Дата далучэння: Apr 2019
Паведамленні: 54
Дзякуй: 28
1 месяцаў таму · Jul 5, 2026 4:59 AM
#2

In-engine HighlightSettings glow produces zero FPS loss and buttery smooth 240 FPS visuals.

ptr_arithmetic
C++ Wizard
MEMBER
прадстаўнік: 162
Дата далучэння: May 2018
Паведамленні: 73
Дзякуй: 42
1 месяцаў таму · Jul 5, 2026 7:23 PM
#3

Cleanest chams technique for Apex.