mordentral / AdvancedSessionsPlugin

Advanced Sessions Plugin for UE4
https://www.vreue4.com
MIT License
573 stars 135 forks source link

Extra Settings outputting empty key/value pairs #79

Closed Babatunes805 closed 1 year ago

Babatunes805 commented 1 year ago

Hi, I'm having problems with the extra settings functionality. I'm unable to use any of the functions to create extra settings. The output from every 'make literal...' has been empty every time. I'm not sure what the cause at this point is. Any help would be greatly appreciated. I've scoured the internet and even used other people's blueprints and logic with no avail. image

Babatunes805 commented 1 year ago

I now realize these are all specifically strings but I've tried it with bools, bytes and ints with no success either.

mordentral commented 1 year ago

Its not empty, blueprints just don't have a way to debug that struct as the contents are not blueprint compatible (FVariantData can't be blueprint readable and I didn't expose the key to blueprints because generally you don't need to look at it). Also though if you are going to put that many keys in, you should lower the key names as much as possible, there is a string limit on the extra settings buffer in steam and epic uses up most of it with auto generated session name garbage.