After design the game, the code editing

Hi everyone.
I want to know if we can build our project and then make the Visual Studio solution to edit the source code (in C++ for example). I know that we can do this for Windows 8 Store but I talk about the desktop edition.

Thanks.

If I understand your question right, I think you’d better edit codes in mono develop,

But I want to edit the source code of the entire project like I want, like edit the graphic library DirectX/OpenGL functions, etc. Do you know what I mean ?
Different explaining : When you build a Windows Store C++, you have the entire source of the project that we can open with Visual Studio (.sln file). And I ask if we can do the same for Windows Desktop Edition ? Having the entire source code.

Thanks

Hi,

You cannot do that. When you build a Visual Studio project, Unity player is compiled to a .dll library, which the project would then reference to run the game. On the standalone player, however, we don’t do that and instead we have the .exe file prebuilt, so there’s nothing left to build after you press “build project”.

What do you want to achieve, though? You can call to DirectX/OpenGL through a native plugin in a standalone player project.