Blueprint Bugs: Difference between revisions

From Unreal Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 2: Line 2:




<blockquote>Cannot find corresponding variable (make sure component has been assigned to one)
#Cannot find corresponding variable (make sure component has been assigned to one)
<blockquote>
<p>
<p>



Revision as of 00:54, 25 February 2025


  1. Cannot find corresponding variable (make sure component has been assigned to one)

This can happen when you try to drag a component that was declared in c++ into the graph of blueprints

TObjectPtr<UCP_HelperFunctions> CP_HF: causes cannot find corresponding variable because you should use

UCP_HelperFunctions* CP_HF;