Hello,
I created a new Project and wanted to work with the procedural mesh component but I got Errors all over the place even on the automatically generated classes.
Whats wrong ?
Default Character Controller:
Procedural mesh:
Hello,
I created a new Project and wanted to work with the procedural mesh component but I got Errors all over the place even on the automatically generated classes.
Whats wrong ?
Default Character Controller:
Procedural mesh:
Hello BurningSky, can you post the output log from after trying to compile with these errors? Knowing what the errors are saying will help in diagnosing the issue.
Sorry I forgot that. Here is it thank you!
link text
I can’t tell exactly as you only posted .cpp files, but from the errors it looks like this is the one that stands out:
1>I:/Unreal/SciFiShooter/Source/SciFiShooter/Public/proceduralsphere.h(1): error : #include found after .generated.h file - the .generated.h file should always be the last #include in a header
1> I:/Unreal/SciFiShooter/Source/SciFiShooter/Public/Procedural.h(28) : Expected an include at the top of the header: ‘#include “Procedural.generated.h”’ (TaskId:13)
Can you check to make sure that the #include “Procedural.generated.h” is in your Procedural.h file and that it is the last in the list of includes?
Thank you that was the issue. The include was missing.