I’m extremely new to UE4 so forgive me for what seems to be a simple question…How do I alter .h / .cpp files that I’ve added to the project via File → Add Code To Project? I’ve tried deleting them or modifying them via VS2013 but that clearly does not work even after I re-compile the entire thing after removing said files. If I try to alter the file names or whatnot it probably wouldn’t work either so how do I do these simple operations when I can’t do it as I normally would via VS2013?
Ah, ok, I see exactly what’s going on now. VS2013 by default will add the files into the …\Intermediate\Project Files\ directory, which is the incorrect location. When deleting those files, VS2013 will check to make sure they aren’t in the …\Intermediate\Project Files\ directory before removing it from the solution view inside of VS2013 (if it does find those files at that location, it will delete them. If it can’t find it it’ll act as if the files were deleted even though they weren’t!). It doesn’t check the other location so when I’d refresh the solution via UE4, the code re-appears as it should.