From 2216aaf04188234fd78e335af993ccc615e85bb8 Mon Sep 17 00:00:00 2001 From: mordentral Date: Tue, 4 Feb 2020 09:51:33 -0500 Subject: [PATCH] made a note on the literal search bool nodes that they aren't used for filtering on steam Former-commit-id: dd4423b2810500c7106c065ca632a5bd4794749a --- .../Source/AdvancedSessions/Classes/AdvancedSessionsLibrary.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/AdvancedSessions/Source/AdvancedSessions/Classes/AdvancedSessionsLibrary.h b/AdvancedSessions/Source/AdvancedSessions/Classes/AdvancedSessionsLibrary.h index 50cb822..6e673f3 100644 --- a/AdvancedSessions/Source/AdvancedSessions/Classes/AdvancedSessionsLibrary.h +++ b/AdvancedSessions/Source/AdvancedSessions/Classes/AdvancedSessionsLibrary.h @@ -101,6 +101,7 @@ public: static void GetSessionPropertyByte(const TArray & ExtraSettings, FName SettingName, ESessionSettingSearchResult &SearchResult, uint8 &SettingValue); // Get session custom information key/value as Bool + // Steam only currently supports Int,Float,String,BYTE values for search filtering!!! UFUNCTION(BlueprintCallable, Category = "Online|AdvancedSessions|SessionInfo", meta = (ExpandEnumAsExecs = "SearchResult")) static void GetSessionPropertyBool(const TArray & ExtraSettings, FName SettingName, ESessionSettingSearchResult &SearchResult, bool &SettingValue); @@ -122,6 +123,7 @@ public: static FSessionPropertyKeyPair MakeLiteralSessionPropertyByte(FName Key, uint8 Value); // Make a literal session custom information key/value pair from Bool + // Steam only currently supports Int,Float,String,BYTE values for search filtering! UFUNCTION(BlueprintPure, Category = "Online|AdvancedSessions|SessionInfo|Literals") static FSessionPropertyKeyPair MakeLiteralSessionPropertyBool(FName Key, bool Value);