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?
Some blueprint node right click menu doesn’t have “goto definition”, for example, Create Widget
node
I search title and then find it. Maybe the most basic searching method.
FText UK2Node_CreateWidget::GetBaseNodeTitle() const
{
return LOCTEXT("CreateWidget_BaseTitle", "Create Widget");
}
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).
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.