Blueprint Bugs: Difference between revisions
Jump to navigation
Jump to search
Created page with "Category:Blueprints <blockquote>Cannot find corresponding variable (make sure component has been assigned to one) <p> File:Cpp_cannot_find_corresponding_variable.png<p> <p> This can happen when you try to drag a component that was declared in c++ into the graph of blueprints <P> TObjectPtr<UCP_HelperFunctions> CP_HF: causes cannot find corresponding variable because you should use <P> UCP_HelperFunctions* CP_HF; </blockquote>" |
No edit summary |
||
Line 4: | Line 4: | ||
<blockquote>Cannot find corresponding variable (make sure component has been assigned to one) | <blockquote>Cannot find corresponding variable (make sure component has been assigned to one) | ||
<p> | <p> | ||
[[File:Cpp_cannot_find_corresponding_variable.png]]<p> | |||
[[File:Cpp_cannot_find_corresponding_variable.png]] | |||
<p> | |||
<p> | <p> | ||
Revision as of 00:53, 25 February 2025
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;