Developer knowledge network · moderated exchange

UnreliableCode 커뮤니티

개발자 연구, 리버스 엔지니어링 및 코딩 커뮤니티

Knowledge index살다
4Categories
919Threads
2.8K게시물
Release

HighlightSettings custom outline glow colors for Apex Legends

imgui_artisan
UI Designer
MEMBER
대표: 202
가입 날짜: Apr 2019
게시물: 54
감사해요: 28
1개월 전 · Jul 3, 2026 5:10 AM
#1

Customizing entity glow highlights using HighlightSettings array:

CPP
void EnableGlow(uintptr_t entity, ColorRGB color, uint8_t style) {
    Write<uint8_t>(entity + 0x310, 1);       // m_highlightFunctionBits = 1 (Enable)
    Write<uint8_t>(entity + 0x320, style);   // HighlightContext ID (2 = Visible, 1 = Wallhack)
    Write<ColorRGB>(entity + 0x1D0, color);  // Outline RGB color
}

// Usage:
EnableGlow(enemyEntity, { 1.0f, 0.0f, 0.0f }, 1); // Red glow behind walls
EnableGlow(enemyEntity, { 0.0f, 1.0f, 0.0f }, 2); // Green glow when visible

Zero FPS loss because the game's GPU shader draws the outlines natively!

apex_kraber_god
Member
MEMBER
대표: 178
가입 날짜: Jul 2022
게시물: 7
감사해요: 86
1개월 전 · Jul 3, 2026 8:16 AM
#2

Highlighting gold armor and weapons with yellow outline ({ 1.0f, 0.84f, 0.0f }) makes looting so much faster.

raycast_ryan
Ballistics Dev
MEMBER
대표: 72
가입 날짜: Sep 2019
게시물: 32
감사해요: 16
1개월 전 · Jul 3, 2026 11:35 PM
#3

Native highlight rendering is Source engine's best feature.