관리 메뉴

기억을 위한 기록들

[UE4-CPP] UE4에서 UUID와 Mac Address 가져오기 본문

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 );
	}