UnrealEngine/UE4 - CPP
[UE4-CPP] UE4에서 UUID와 Mac Address 가져오기
에드윈H
2021. 9. 13. 13:00
FString uuid = FPlatformMisc::GetHashedMacAddressString();
UE_LOG( LogTemp, Warning, TEXT("uuid is %s"),*uuid );
//TEMP
TArray<uint8> macAddress = FWindowsPlatformMisc::GetMacAddress();
for( auto value : macAddress )
{
UE_LOG( LogTemp, Warning, TEXT( "macAddress is %d" ), value );
}