設定
公式サイト:
Preferences | Blender Python API [Official]
プリファレンス (Preferences)
プロパティ
- active_section:アクティブなセクション
- addons:「アドオン」
- app_template
- autoexec_paths
- edit:「編集」
- experimental:「実験的」
- filepaths:「ファイルパス」
- inputs:「入力」
- is_dirty
- keymap:「キーマップ」
- studio_lights:「照明 > スタジオライト」
- system:「システム」
- themes:「テーマ」
- ui_styles:「テーマ > テキストスタイル」
- use_preferences_save
- version:Blender のバージョン
- view:「インターフェイス」/「ビューポート」
取得/変更
現在の設定を取得/変更するにはコンテキストアクセスを使用する。
pref = bpy.context.preferences
pref.view.language = 'ja_JP'
Code language: Python (python)
参考:
Preferences | Blender Python API [Official]
bpy.context.preferences | Blender Python API [Official]
PreferencesView
参考:
PreferencesView | Blender Python API [Official]
ユーザー設定を保存する
こちらのページを参照
参考: