After trying to add a SAssetView
slate widget to my code, I run into some compile errors.
The picture here is from the class that is extending SCoumpoundWidget
, and the second picture is of the compile errors.
Code Snippet:
Compile Error:
After trying to add a SAssetView
slate widget to my code, I run into some compile errors.
The picture here is from the class that is extending SCoumpoundWidget
, and the second picture is of the compile errors.
Code Snippet:
Compile Error:
It seems that you missing some symbols during the linking part of the compilation. Compiler seems to be looking for implementations of virtual methods from parent.
Did you follow the wiki about Slate, and mostly did you include the Slate
and SlateCore
module inside your build.cs ?
PrivateDependencyModuleNames.AddRange(new string[] { "Slate", "SlateCore" });
SCompoundWidget
is inside the SlateCore module, and if you didn't include it, compiler will not be able to find symbols for Slate classes.
Btw : it could be easier if you gave us direct code (as mpkorstanje commented), and more than your Construct
method. The class declaration could help to find the error.
Hope it helped