I have tried using the following however this will not work, and result notfound even when the key is present.
FORCEINLINE uint32 GetTypeHash(const FGameplayTagContainer& TagContainer)
{
uint32 Hash = 0;
for (const FGameplayTag& Tag : TagContainer)
{
Hash = HashCombine(Hash, GetTypeHash(Tag));
}
return Hash;
}
3 posts - 1 participant