4
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

VSCODEでUnityの.metaファイルを表示しないようにする方法

Posted at

はじめに

UnityはVSCODE(VisualStudio Code)をScript編集Editorに設定することができますが、デフォルトの設定だと.metaファイルだらけで見づらいです。
この記事で紹介をする設定を施して.metaファイルを消してしまいましょう。

手順

手順はとても簡単です。

  1. ユーザー設定を開く
    メニューの「Code - 基本設定 - ユーザー設定」を選択する。
    スクリーンショット 2016-11-19 18.30.00.png

  2. 右側のユーザー設定に以下のコードを追加する。

    "files.exclude": {
        "**/.git": true,
        "**/.svn": true,
        "**/.hg": true,
        "**/.DS_Store": true,
        "**/*.meta": true
    }
    

    保存すると.metaファイルが消えます。

    「.git .svn .hg .DS_Store」はDefault設定なので表示してもよければ上記コードから消してしまいましょう。

4
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?