mirror of
https://github.com/mordentral/AdvancedSessionsPlugin.git
synced 2025-10-22 16:04:18 +00:00
Merge branch '5.1-Preview'
This commit is contained in:
@@ -1,8 +1,8 @@
|
|||||||
{
|
{
|
||||||
"FileVersion": 3,
|
"FileVersion": 3,
|
||||||
"FriendlyName": "Advanced Sessions",
|
"FriendlyName": "Advanced Sessions",
|
||||||
"Version": 4,
|
"Version": 5.1,
|
||||||
"VersionName": "5.0",
|
"VersionName": "5.1",
|
||||||
"Description": "Adds new blueprint functions to handle more advanced session operations.",
|
"Description": "Adds new blueprint functions to handle more advanced session operations.",
|
||||||
"Category": "Advanced Sessions Plugin",
|
"Category": "Advanced Sessions Plugin",
|
||||||
"CreatedBy": "Joshua Statzer",
|
"CreatedBy": "Joshua Statzer",
|
||||||
|
@@ -2,8 +2,8 @@
|
|||||||
"FileVersion" : 3,
|
"FileVersion" : 3,
|
||||||
|
|
||||||
"FriendlyName" : "Advanced Steam Sessions",
|
"FriendlyName" : "Advanced Steam Sessions",
|
||||||
"Version" : 5.0,
|
"Version" : 5.1,
|
||||||
"VersionName": "5.0",
|
"VersionName": "5.1",
|
||||||
"Description" : "Adds new blueprint functions to handle more advanced session operations in Steam. REQUIRES ADVANCED SESSIONS",
|
"Description" : "Adds new blueprint functions to handle more advanced session operations in Steam. REQUIRES ADVANCED SESSIONS",
|
||||||
"Category" : "Advanced Sessions Plugin",
|
"Category" : "Advanced Sessions Plugin",
|
||||||
"CreatedBy" : "Joshua Statzer",
|
"CreatedBy" : "Joshua Statzer",
|
||||||
|
@@ -194,11 +194,10 @@ public:
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Needed for TMap::GetTypeHash() */
|
|
||||||
friend uint32 GetTypeHash(const FUniqueNetIdSteam2& A)
|
virtual uint32 GetTypeHash() const override
|
||||||
{
|
{
|
||||||
return GetTypeHash(A.UniqueNetId);
|
return ::GetTypeHash(UniqueNetId);
|
||||||
//return (uint32)(A.UniqueNetId) + ((uint32)((A.UniqueNetId) >> 32) * 23);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Convenience cast to CSteamID */
|
/** Convenience cast to CSteamID */
|
||||||
@@ -273,7 +272,8 @@ enum class ESteamUserOverlayType : uint8
|
|||||||
|
|
||||||
static FString EnumToString(const FString& enumName, uint8 value)
|
static FString EnumToString(const FString& enumName, uint8 value)
|
||||||
{
|
{
|
||||||
const UEnum* EnumPtr = FindObject<UEnum>(ANY_PACKAGE, *enumName, true);
|
|
||||||
|
const UEnum* EnumPtr = FindFirstObject<UEnum>(*enumName, EFindFirstObjectOptions::None, ELogVerbosity::Warning, TEXT("EumtoString"));
|
||||||
|
|
||||||
if (!EnumPtr)
|
if (!EnumPtr)
|
||||||
return FString();
|
return FString();
|
||||||
|
Reference in New Issue
Block a user