Generating Base64 UUIDs

Hey everyone!

I was hoping someone might be able to help make this a little easier. I am trying to generate a Base64 UUID string and I am wondering if there’s anything in unreal that could do this or will I need to implement a library like Boost in order to do this? I am trying to find the simplest solution. I appreciate any help anyone can offer.

There is actually a GUID generator, just use the ‘appGetGUID’ method. It requires a valid pointer to a UUID_t struct. Its not really documented but just check the source and you will get it working quickly.

Oh nice, thank you! I will check that out. Is there any options for base64 encoding it? I have a library I can use if not.