UClass::EmitFixedArrayBegin

Realtime garbage collection helper function used to indicate the beginning of a fixed array.

Windows
MacOS
Linux

References

Module

CoreUObject

Header

/Engine/Source/Runtime/CoreUObject/Public/UObject/Class.h

Include

#include "UObject/Class.h"

Source

/Engine/Source/Runtime/CoreUObject/Private/UObject/GarbageCollection.cpp

Syntax

void EmitFixedArrayBegin
(
    int32 Offset,
    const FName & DebugName,
    int32 Stride,
    int32 Count
)

Remarks

Realtime garbage collection helper function used to indicate the beginning of a fixed array. All tokens issues between Begin and End will be replayed Count times.

Parameters

Parameter

Description

Offset

Offset at which fixed array starts.

DebugName

DebugName for this objects token. Only used in non-shipping builds.

Stride

Stride of array element, e.g. sizeof(struct) or sizeof(UObject*).

Count

Fixed array count.

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