Some blueprint node doesn't have "goto definition"

Some blueprint node right click menu doesn’t have “goto definition”, for example, Create Widget node


So how can I find the definition of these node in cpp?

I search title and then find it. Maybe the most basic searching method.

FText UK2Node_CreateWidget::GetBaseNodeTitle() const
{
	return LOCTEXT("CreateWidget_BaseTitle", "Create Widget");
}
1 Like

Chat GPT is really good with most of those unreal C++ macros.
Just write what you want to be exposed in blueprint, all function variables and types.
And chatGPT will do it for you (correctly in about 90% cases)

ps.
it is not that good with making code (unless you can debug it and see what is wrong).

2 Likes

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.