Open ScottKane opened 1 year ago
Compilation is failing because FEditorStyle doesn't exist, adding #include "EditorStyleSet.h" would fix this but as it's been deprecated switching to FAppStyle.GetBrush() seems to be the sensible option.
FEditorStyle
#include "EditorStyleSet.h"
FAppStyle.GetBrush()
Compilation is failing because
FEditorStyle
doesn't exist, adding#include "EditorStyleSet.h"
would fix this but as it's been deprecated switching toFAppStyle.GetBrush()
seems to be the sensible option.