HasAnyTagExact (gameplay tag container, exact match)
HasAllTags (gameplay tag container)
HasAllTagsExact (gameplay tag container, exact match)
In addition, I took the opportunity to change most of our gameplay tag parameters to const pass-by-reference where viable, just so we're not creating extra copies needlessly.
This now has:
HasTag
(single gameplay tag)HasTagExact
(single gameplay tag, exact match)HasAnyTag
(gameplay tag container)HasAnyTagExact
(gameplay tag container, exact match)HasAllTags
(gameplay tag container)HasAllTagsExact
(gameplay tag container, exact match)In addition, I took the opportunity to change most of our gameplay tag parameters to const pass-by-reference where viable, just so we're not creating extra copies needlessly.