Unity Visual Studio Mac Download

Posted on
  1. Visual Studio 2019 Tools For Unity Download
  2. Visual Studio Community Mac
  3. Visual Studio Download For Mac
  4. Unity Visual Studio Installer

Jul 05, 2018. Unity Development with VS Code. Visual Studio Code can be a great companion to Unity for editing and debugging C# files. All of the C# features are supported and more. In the screen below, you can see code colorization, bracket matching, IntelliSense, CodeLens and that's just the start.

This is a quick quide on how to use Visual Studio with Unity. Visual Studio is only available for Windows, but a lot of Unity developers on Mac think it's so great they go through the hassle of using virtual machines just to use it.

If you're wondering why you should switch from Mono Develop there's a section devoted to that further down.

Install Visual Studio

  1. Firstly, you'll want to go here here and click 'Download' to download the tiny Visual Studio installer application.
  2. Run the installer application. You can opt out of all the extras, I did. We don't need any of them for Unity development. The installer claims that Visual Studio will use 8 GB split across all drives when you opt out of all the extras, but it still ate 10 GB of the drive I installed it to so keep that in mind. It's quite bloaty.
  3. You may be asked to create a Microsoft account or log in with your existing one. This is probably not necessary, but I already have a Microsoft account which I use for my Xbox so I just logged in with that. This will apparently allow you to synchronize settings etc. across different computers. Not something I'll use.

Now that Visual Studio is installed you can launch Unity. Inside Unity go to 'Edit' => 'Preferences' => 'External Tools' in the menu bar. Browse for an external script editor and navigate to 'C:Program Files (x86)Microsoft Visual Studio 12.0Common7IDE' and select 'devenv.exe'.

That's it, now you can edit your scripts in Visual Studio just like you would in Mono Develop. And if that was all that you wanted to do then you can close this tutorial and continue with your Unity project. But for those of you who want actual debugging there are still some steps left. At the moment If you click 'Start debugging' (F5) inside Visual Studio you'll get an error. Obvisouly we want to properly debug our code as well. Quit Unity and Visual Studio, not sure if this is necessary, but let's just play it safe. We'll have to install a plugin for Visual Studio and Unity.

Install Visual Studio Tools for Unity

  1. Go here and download the Visual Studio Tools for Unity. Get the one that corresponds to your version of Visual Studio. I have Visual Studio 2013 so I chose the corresponding version of Visual Studio Tools for Unity.
  2. Download the plugin.
  3. Install the plugin. This should be a one click installation.

Now you can launch Unity again, but this time go to 'Assets' => 'Import Package' and choose 'Visual Studio 2013 Tools' from the list. Doing this will properly configure this Unity project so that it can be debugged using Visual Studio.

NB: This will automatically configure your external editor settings, meaning the manual setup we did earlier isn't necessary. I just did that to show you how you could set it up if you didn't want or need debugging. For any future projects you just have to import the plugin and you're done. This can be done directly from the Unity launcher when you create the project.

Now that you've imported the Visual Studio for Unity plugin you'll notice that a 'Visual Studio Tools' menu item has appeared in the menu bar at the top. This has some settings etc. for the plugin. I haven't needed to touch these so I just left them alone. This plugin will make debugging inside Visual Studio work just as easily as it does inside Mono Develop. I'm assuming you already know how to debug your code so I won't go into that. However if you don't know, and you want to learn you can just ask me and I'll try to help you as best I can. There's also a lot of information available here.

Other features I also use are the Unity Project Explorer. It shows you your folders and scripts inside Visual Studio just as they appear inside the project window in Unity. The quick documentation access which lets me quickly go to the documentation page for a Unity method. And the Monobehaviour wizard which lets me quickly create methods like OnCollisionEnter etc. without having to remember their name exactly. This plugin offers a lot more functionality as well, I just haven't needed it myself yet. You can debug builds for example. Check out this link for more information about the features I've listed here and all the other features as well.

And that's it. Now you can do all the things Mono Develop allowed you to do in Visual Studio instead.

Why change from Mono Develop?

I've only told you how to get Visual Studio to do the same things you were already able to do in Mono Develop so why should you bother going through this hassle? If you are perfectly happy with Mono Develop and don't feel like there's anything wrong with it then there's probably not much I can say to change your opinion, but here are my pros and cons of using Visual Studio over Mono Develop.

Pros:

Visual Studio 2019 Tools For Unity Download

  1. Mono Develop is one of the slowest IDE's I've worked with. Visual Studio is one of the fastest. I find that in larger projects or code files Mono Develop will slow to a crawl. Visual Studio isn't faced by this.
  2. I have two fairly persistent bugs with Mono Develop. The first is that Mono Develop will permanently stick on top of all my other windows. So it's impossible for me to ALT+TAB to Unity or any other application. The only fix is to restart Mono Develop. The second bug is that suddenly I can't interact with any part of the Mono Develop interface except for the text editor area. So I can't change tabs or do anything with the application itself. The only fix is of course to restart Mono Develop.
  3. Apart from these two I also have many smaller, equally annoying bugs. Sometimes the syntax highlighting would stop working, or it would stop highlighting errors, or the code completion dropdown would refuse to show.
  4. Mono Develop also crashes quite a few times entirely on its own. I've never experienced this with Visual Studio.
  5. I've also had no luck in getting my Unity errors to automatically show inside Mono Develop. I know I can get them in Mono Develop if I build my project in there, but this is cumbersome and unnecessary. In Visual Studio this just works. You can even see the Unity console inside Visual Studio.
  6. The Visual Studio code completion is lightning fast and precise compared to the one in Mono Develop.
  7. The developers of Mono Develop suddenly decided that they would stop showing column numbers. A feature every text editor has and every developer takes for granted. Because of this the Mono Develop error log can't even show you the column the error occurred on, which is pretty funny. Not a huge deal in itself, but it makes me question the competence of the people in charge. Visual Studio has an actual footer which shows you the current line number and column number just like you would expect. And the error log shows the column of the error, just like you would expect.
  8. I've given up trying to make Mono Develop try to respect my coding standards. It seems to reset to tabs instead of spaces, 120 column width, the wrong brace placement etc. every single time I open it. By comparison it's amazingly easy to customize Visual Studio to respect your coding style once and forever.
  9. Speed, speed, speed. I can't stress this enough. Visual Studio is so much faster than Mono Develop. Try writing some code in Mono Develop and then try writing the same piece of code in Visual Studio. You'll be amazed if you haven't used Visual Studio before. The automatic formatting, the code completion, everything is just so quick and snappy.

Cons:

  1. Visual Studio is 10 GB, Mono Develop is 200 MB. Visual Studio comes with a ton of crud you'll never ever need.
  2. I haven't yet been able to configure the syntax highlighting in Visual Studio the way I want it. I think it's possible, but Mono Develop currently has better syntax highlighting in my opinion.

I haven't mentioned the debugger at all. That's because I haven't been able to use it much with Unity. I never used the Mono Develop debugger because I felt it was slow and cumbersome, and most recently I've only been using Visual Studio for about a week with Unity. I used it for years with XNA and I loved using the debugger there so I have no reason to think it has gotten worse, but I feel like I have to become acquainted with it again before I can voice my opinion about it. I used Visual Studio C# Express with Unity 2 before I switched to Mono Develop when Unity 3 came so I feel I have some experience with both editors, and I find Visual Studio to be the superior choice. With Mono Develop I felt like I had to ALT+TAB back and fourth between Unity all the time, with Visual Studio I rarely open the Unity editor at all.

But I've gotten used to the dark Mono Develop skin

Don't worry, I've got you covered.

The dark Mono Develop skin is called Oblivion and someone has made a version of it for Visual Studio available here. The FAQ here will tell you how to install this skin in Visual Studio. Keep in mind this is just for the text editor, not for the entire application. But often that's the only thing you care about. I chose the Visual Studio dark skin for the application and I think it goes great with the Oblivion text editor skin.

However, If neither the blue, dark or light application skin is to your liking you can install this plugin. It comes with a few custom skins for the entire application, and you can also create your own skin based on an existing one.

And that's it. Now your Visual Studio is configured just the way you want it and it should work flawlessly with Unity. If you're stuck on something or have any questions I'll be happy to help you. And if you're wondering why I've only recently switched from Mono Develop to Visual Studio it's because you used to need Visual Studio Pro to do this and it was very expensive. And when they made Visual Studio Pro free with the release of the Community Edition I wasn't paying attention. Let's just say that I hate myself for not finding out sooner, but I'm glad to be back with Visual Studio again.

I published this article some time ago and Unity environment changed a lot. I wouldn’t recommend this path nowadays. Just download Visual Studio Community, switch default Unity IDE and enjoy very smooth integration.

First things first — I’m not an experienced game developer. I just started my journey with Unity not long time ago and this article is a result of my early explorations that can be useful for newcomers.

As a day to day front end developer I spend majority of the time in HTML, CSS and JavaScript. Jumping from one territory to a completely new environment is a fantastic experience but comes with lots of difficulties. My biggest issue on early Unity expedition wasn’t a C#, it wasn’t a convoluted interface, nor a crazy amount of 3D vector math. It was a MonoDevelop — the default IDE that Unity comes with and works smoothly out of the box. Lack of my favorite shortcuts, snippets system and absence of core functionalities that I use hundreds times a day. Visual Studio Code served me well for last few months and I couldn’t stand writing a single line of code without it. After a while it turned up that VSCode can be linked with Unity to take an advantage of all the things that it is best at. Let’s go through the whole process step by step.

Visual Studio Code and C# extension #

You can download VSCode from Microsoft website for free. Installation process is very straight forward. Out of the box it doesn’t support a language used by Unity — it can be easily solved by installing C# extension from official marketplace.

In the theory Unity works with three scripting languages — C#, JavaScript and Python-like Boo. Ditching Boo has been announced long time ago and the same thing has been recently revealed about the future of Javascript-like UnityScript. C# is the future of this platform — much nicer ecosystem, tooling support and the bright future full of powerful features that wouldn’t be possible in the other language. /control-center-for-mac-download.html. If you have never worked with C# you don’t have to worry — official documentation is a fantastic place to get you running.

Unity and it’s external script editor #

Visual Studio Community Mac

Despite the time that it takes to download, Unity set up isn’t scary. I just would like to point your attention to the step where you can choose addition components that are going to be added during the installation process. As we are aiming to use it with Visual Studio Code, you can un-check MonoDevelop from the list of add-ons.

Now you can go to the Unity settings and change your “External Script Editor” to Visual Studio Code.

Visual Studio Download For Mac

Install .NET SKD #

Command Line Interface for the .NET Software Development Kit is something that we need. Download the latest version of the installer from Microsoft website and follow the installation guide.

Brew and Mono #

Mono is the last ingredient that we need to install to have a smooth integration with VSCode OmniSharp. The easiest way is to download it from Homebrew. If you don’t have it installed on your machine, you live your life wrong! Visit a website to the missing package manager for macOS and follow the installation guide. Now the only thing that you need to run is…

VSCode + Unity = <3 #

There seem to be a lot of steps but actual the whole setup takes just a few minutes. You can now enjoy smooth integration of Unity and your favourite code editor.

Please enable JavaScript to view the comments powered by Disqus.comments powered by

Unity Visual Studio Installer

Disqus