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.