LoginSignup
1
1

More than 5 years have passed since last update.

Maya を 英語UI で起動する

Posted at

はじめに

アトリビュートの確認や英語サイトを参考にするべく、一時的に Maya を英語版で起動するのがとても便利だったのでまとめておく。

手順

実行コマンドの作成

まず実行コマンドを作成する。下記の例は 2017 の場合に限る。
maya のバージョンによって "maya2017" の部分を差し替えるとよい。

Windows

Maya2017_en.bat
SET MAYA_UI_LANGUAGE=en_US
"C:¥Program Files¥Autodesk¥Maya2017¥bin¥maya.exe"

Mac

Maya2017_en.command
export MAYA_UI_LANGUAGE="en_US"
/Applications/Autodesk/maya2017/Maya.app/Contents/bin/maya

実行権限の付与

必要であれば実行権限を変更する。

Mac

chmod +x ./Maya2017_en.command

起動

作成した実行ファイルをダブルクリックすると Maya の英語版が起動する。

screenshot.png

1
1
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
1
1