How to deactivate Visual Studio launching?

Hi,

I’m an amateur C++ developer, new to UE4, and i use Code::Blocks to code in C++. I am tired about seeing the editor launching Visual Studio every time I create a new C++ class. So how to avoid this automatic launching ? Thanks ! :slight_smile:

1 Like

(I’m sorry for duplicating the question, it’s because the two first times I clicked on the “Post your question” button, it took me to an “internal sever error” page)

Unfortunately there is no editor preference that allows you to turn that off.

The easy workaround is to open your project’s DefaultEngine.ini and add the following to the bottom:

[/Script/SourceCodeAccess.SourceCodeAccessSettings]
PreferredAccessor=NullSourceCodeAccessor

That will disable all editor integration with the Visual Studio IDE.

1 Like

Ok, thanks a lot ! It is exactly what I were looking for.