Use of complex syntax with hidecategories

Using the hidecategories specifier in UCLASS you can hidde some categories, simply writting the name. But I can’t hide complex syntax categories.

For example:


UCLASS(hidecategories = (PlanarMovement, NavMovement, CharacterMovement))
class SOME_API UCustomMovementComponent : public UCharacterMovementComponent

Hides all the cateogries written above, but… how I can hidde the categories like: Character Movement: Jumping / Falling or Character Movement: (Rotation Settings)?

Thanks!

Nobody knows how? maybe is not possible

Not honestly something I’ve tried before. Have you tried simply using the normal syntax for declaring a subcategory?



(hidecategories= (Category | SubCategory, CharacterMovement | Falling, CharacterMovement | Jumping, etc))