Skip to content

Instantly share code, notes, and snippets.

@inceax
Last active August 29, 2015 14:20
Show Gist options
  • Save inceax/4664ee6b1665bdbaca22 to your computer and use it in GitHub Desktop.
Save inceax/4664ee6b1665bdbaca22 to your computer and use it in GitHub Desktop.
Visual Studio Code 세팅

Visual Studio Code 세팅

Mac OSX에서 Unity를 위한 세팅

Homebrew 설치

http://brew.sh

ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

DNX 설치

https://github.com/aspnet/home#os-x

brew tap aspnet/dnx
brew update
brew install dnvm

Visual Studio Code 설치

https://code.visualstudio.com

프로젝트 오픈 및 테스트

  1. VSCode에서 유니티 프로젝트 루트 디렉토리 오픈
  2. Pick Project로 your_project-csharp.sln 선택
  3. 인텔리센스 동작 확인

설정

.cs.meta 감추기

settings.json에 files.exclude에 추가 (0.4 버전 이상)

	"files.exclude": {
		"**/*.cs.meta": true,
		"**/.git": true,
		"**/.DS_Store": true
	}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment