#include "Misc/AssertionMacros.h"
#include "Misc/CoreMiscDefines.h"
#include "Templates/Casts.h"
#include "Templates/SharedPointer.h"
#include "Templates/UniquePtr.h"
#include "UObject/NameTypes.h"
#include <type_traits>
◆ IMPL_ATOMPROXY_CLASS
| #define IMPL_ATOMPROXY_CLASS |
( |
| FClassName | ) |
|
値: static FName GetAtomProxyTypeName() \
{ \
static FName MyClassName = #FClassName; \
return MyClassName; \
} \
static constexpr bool bWasAtomProxyClassImplemented = true; \
friend class ::Atom::IProxyData; \
friend class ::Atom::TProxyData<FClassName>;
Interfaces for Atom Proxy Objects These are used to spawn thread safe instances of UObjects that may be garbage collected on the game thread. In shipping builds, these are effectively abstract pointers, but CHECK_ATOMPROXY_TYPES can optionally be used to check downcasts.