Jarno
Jarno
SMSatisfactory Modding
Created by Jarno on 2/11/2025 in #help-developing-mods
Unable to save Name based Session Settings
understandable, its unfortunate your pc died this PR isnt really in a hurry either, but would love to have it in next SML release
93 replies
SMSatisfactory Modding
Created by Jarno on 2/11/2025 in #help-developing-mods
Unable to save Name based Session Settings
Fine from my side aswel
93 replies
SMSatisfactory Modding
Created by Jarno on 2/11/2025 in #help-developing-mods
Unable to save Name based Session Settings
Oke iv implemeted the review results
93 replies
SMSatisfactory Modding
Created by Jarno on 2/11/2025 in #help-developing-mods
Unable to save Name based Session Settings
i am not an ui dsigner, but i feel we would call it a text input not a string input as a string is really just a fancy developer world to store texts but then again this is kinda focused toward developers so i dunno
93 replies
SMSatisfactory Modding
Created by Jarno on 2/11/2025 in #help-developing-mods
Unable to save Name based Session Settings
i changed the default to FString
93 replies
SMSatisfactory Modding
Created by Jarno on 2/11/2025 in #help-developing-mods
Unable to save Name based Session Settings
i guess i can do that, but i dont see a clear answer on the FText part in here, to me i read this as its fine the way it is right now?
93 replies
SMSatisfactory Modding
Created by Jarno on 2/11/2025 in #help-developing-mods
Unable to save Name based Session Settings
yeah i was going to update those screenshts
93 replies
SMSatisfactory Modding
Created by Jarno on 2/11/2025 in #help-developing-mods
Unable to save Name based Session Settings
ah nice you decibered my trick with the widget
93 replies
SMSatisfactory Modding
Created by Jarno on 2/11/2025 in #help-developing-mods
Unable to save Name based Session Settings
oh my you have been busy, if you change fontszie you likely also need to realign it to center
93 replies
SMSatisfactory Modding
Created by Jarno on 2/11/2025 in #help-developing-mods
Unable to save Name based Session Settings
i though it be a nice feature to be able to localize it
93 replies
SMSatisfactory Modding
Created by Jarno on 2/11/2025 in #help-developing-mods
Unable to save Name based Session Settings
that was a plan but connecting it gives a stack overflow so i disconnected it i guess i could have removed it
93 replies
SMSatisfactory Modding
Created by Jarno on 2/11/2025 in #help-developing-mods
Unable to save Name based Session Settings
yeah, sort of
93 replies
SMSatisfactory Modding
Created by Jarno on 2/11/2025 in #help-developing-mods
Unable to save Name based Session Settings
93 replies
SMSatisfactory Modding
Created by Sou the Slime on 2/14/2025 in #help-using-mods
Linux mod manager?
i hope you mean for a dedicated server? as Satisfactory doesnt got a linux client
8 replies
SMSatisfactory Modding
Created by Jarno on 2/11/2025 in #help-developing-mods
Unable to save Name based Session Settings
Yeah that was my plan, to PR it to SML are see if it gets accepted
93 replies
SMSatisfactory Modding
Created by Jarno on 2/11/2025 in #help-developing-mods
Unable to save Name based Session Settings
No description
93 replies
SMSatisfactory Modding
Created by Jarno on 2/11/2025 in #help-developing-mods
Unable to save Name based Session Settings
:adithinka: yet it does not really explain why the Custom value selector works for all those 20 other widgets that use it, like color picker
93 replies
SMSatisfactory Modding
Created by Jarno on 2/11/2025 in #help-developing-mods
Unable to save Name based Session Settings
well i delayed my lunch break by enough for now, ill try these things out this evening, thanks for the extended help so far
93 replies
SMSatisfactory Modding
Created by Jarno on 2/11/2025 in #help-developing-mods
Unable to save Name based Session Settings
yeah well makes sense, but the OptionInterface only supports bool,int,float,FName so it could have alteast supported those 😅
93 replies
SMSatisfactory Modding
Created by Jarno on 2/11/2025 in #help-developing-mods
Unable to save Name based Session Settings
riiight so basicly i got screwed by this todo
UCLASS( Blueprintable, DefaultToInstanced, editinlinenew, meta = ( DisplayName = "Custom" ) )
class FACTORYGAME_API UFGUserSetting_Custom : public UFGUserSetting_ValueSelector
{
GENERATED_BODY()
public:
virtual EOptionType GetOptionType() const override { return EOptionType::OT_Custom; }

// @todok2 Add support for GetDefaultValue
};
UCLASS( Blueprintable, DefaultToInstanced, editinlinenew, meta = ( DisplayName = "Custom" ) )
class FACTORYGAME_API UFGUserSetting_Custom : public UFGUserSetting_ValueSelector
{
GENERATED_BODY()
public:
virtual EOptionType GetOptionType() const override { return EOptionType::OT_Custom; }

// @todok2 Add support for GetDefaultValue
};
93 replies