EWidgetUpdateFlags

Widget update flags for fast path.

Windows
MacOS
Linux

References

Module

SlateCore

Header

/Engine/Source/Runtime/SlateCore/Public/FastUpdate/WidgetUpdateFlags.h

Include

#include "FastUpdate/WidgetUpdateFlags.h"

Syntax

enum EWidgetUpdateFlags
{
    None                      = 0,
    NeedsTick                 = 1 << 2,
    NeedsActiveTimerUpdate    = 1 << 3,
    NeedsRepaint              = 1 << 4,
    NeedsVolatilePaint        = 1 << 6,
    AnyUpdate                 = 0xff,
}

Values

Name

Description

None

NeedsTick

Widget has a tick function

NeedsActiveTimerUpdate

Widget has an active timer that needs to update

NeedsRepaint

Needs repaint because the widget is dirty

NeedsVolatilePaint

Needs repaint because the widget is volatile

AnyUpdate

Remarks

Widget update flags for fast path.

Help shape the future of Unreal Engine documentation! Tell us how we're doing so we can serve you better.
Take our survey
Dismiss