Hey guys,
Sorry if this post has been asked before but I’m having difficulty finding a solution from what my (admittedly brief) search on it.
Basically, I’ve just started tinkering with UE4, and added 2 classes to my project - one that is an AHUD, the other which is an AActor.
Now I’m not sure which class this is happening in, but I get 7 intellisense errors and I can’t figure out how to get rid of them.
The only changes I’ve made to the project are adding two member variables to the AActor I made, see below:
class ANoteGem : public AActor
{
GENERATED_UCLASS_BODY()
double m_dAppearTime; // When does the note need to appear?
NOTE_LANES m_nlLane; // What lane is this note in?
};
I also defined an enum called NOTE_LANES, but the errors were appearing before that.
I’m using the “Blank Code” Project template, and I chose to have the starter objects or whatever they’re called in it.
Anyone know what’s causing these issues and how to solve them?
