How do I create a blueprint from a UObject?

Hey Mike,

You should be able to make blueprints of your class if it has the Blueprintable keyword in its class declaration. The UTouchInterface class has a simple example:

UCLASS(Blueprintable, BlueprintType)
class ENGINE_API UTouchInterface : public UObject
{

Hope that helps!

  • Nick
5 Likes