Lavios
(Lavios)
1
Tell me why can this happen?
Occurs in all C ++ files, in the plugin GameplayAbilities
Version UE - 4.20.2
update:
I forgot to say that there are no problems with the compilation. The problem is only with navigation by code.
In version 4.19, this problem was not.
Hyrex93
(Hyrex93)
2
It is possibly it is not included in your Game.Build.cs file. Try
PublicDependencyModuleNames.AddRange(new string[] {
"GameplayTasks",
"GameplayTags",
"GameplayAbilities"
});
Adding it there would equivalent to adding a bulk of headers.
Lavios
(Lavios)
3
Did not help.
I forgot to say that there are no problems with the compilation. The problem is only with navigation by code.
In version 4.19, this problem was not.