Knowledge base
Knowledge base
Knowledge base
Free, anonymous browsing of Unreal Engine Blueprint examples, node references, and best practices. The same content the WoalzCraft plugin uses to generate Blueprints.
20 results for not
NOTUE 5.4, 5.7updated 2mo agoBooleanNOTUE 5.3, 5.4, 5.5, 5.6, 5.7updated 2mo agoNegate VectorUE 5.0, 5.1, 5.2, 5.3, 5.4, 5.5, 5.6, 5.7updated 2mo agoLess_FloatFloatUE 5.3, 5.4, 5.5, 5.6, 5.7updated 2mo ago!=UE 5.0, 5.1, 5.2, 5.3, 5.4, 5.5, 5.6, 5.7updated 2mo agoOR=BooleanOR, NOT=Not_PreBool, XOR=BooleanXOR
ANDUE 5.4, 5.7updated 2mo agoBooleanORUE 5.3, 5.4, 5.5, 5.6, 5.7updated 2mo agostring
Why: You're calling '{fn}' on an object that doesn't have that function. The function may have been deleted, renamed, or moved to a different class. UE5 can't bind the call at compile time. Fix: Check the target pin's type. Search the Content Browser for the actual class name + look for '{fn}' in its functions. If found, drag a fresh reference and use the proper context menu Call Function path. If gone, find a replacement function or use an Interface call.
Why: '{a}' includes '{b}' as a hard reference, AND '{b}' includes '{a}' as a hard reference. UE5 can't compile either one first without the other already being compiled. Fix: Break the cycle by making ONE side use a SOFT reference (TSoftObjectPtr). Pick the side that doesn't need {b} immediately at construction — change the variable type to 'Soft Object Reference' instead of 'Object Reference'. Use Load Asset to resolve it at runtime.