Search child classes of a C++ class in Content Drawer

Hi!

I’m using Unreal 5.1.1.

If I want to search all the child classes (blueprint classes) that inherit from a C++ class in Content Drawer. How can I do it?

Thanks!

You can use the Class Viewer to see the hierarchy of your classes, including all blueprints that inherit from C++ classes.
image

I don’t think this works because I have searched with the C++ class name and it doesn’t appear the blueprint class that inherits from it.

It works, but you can’t search. But if you find your class in the hierarchy you can see all children, including BPs

Look. I want to find the blueprint class PlayerControllerBP.

I have this C++ class:

And this blueprint class:

If I search by the name of the class, ASPlayerController, it doesn’t show any child class:

imagen

If I search by the name of the class that it shown as the base class of the blueprint class, SPlayerController, it doesn’t show any child class:

imagen

With PlayerController, it shows the blueprint child class:

imagen

Only, searching with APlayerController it finds the blueprint child class:

imagen

You didn’t tell me that I have to do it in this way.