「bpy」とは、PythonからBlenderの機能を呼び出すことができるBlender Python APIのことです。Blenderはオープンソースの3Dアニメーションソフトウェアであり、「bpy」を使うことでBlenderの様々な機能をPythonスクリプトから呼び出して利用することができます。本記事では、「bpy」を用いたコンテキストなプリファレンスデータを取得する方法を紹介します。
# preferencesプロパティによるコンテキストなプリファレンスデータの取得
bpy.context.preferences
下記の様な内容で悩んでいる/困っている場合に使える方法を参考までにご共有させて頂きます。
・Blender上で、どの様にPythonを使うの?
・Blender上のPythonで、どの様にコンテキストなプリファレンスデータを取得するの?
また、「bpy」を使用する上で基礎的な情報は下記の記事で紹介しております。
他の「bpy」のクラスや関数について気になる方はこちらの記事をご覧ください。
目次
preferencesプロパティによるコンテキストなプリファレンスデータの取得
bpy.context.preferencesプロパティの基本構文
bpy.context.preferences
→ Preferences: bpy.types.Preferences
bpy.context.preferencesプロパティの使い方
import bpy
ContextPreferences = bpy.context.preferences
print(f"Context Preferences:\n{ContextPreferences} {type(ContextPreferences)}")
print(ContextPreferences.filepaths)
print(ContextPreferences.version)
Context Preferences:
<bpy_struct, Preferences at 0x00007FF672DED8E0> <class 'bpy.types.Preferences'>
<bpy_struct, PreferencesFilePaths at 0x00007FF672DED8E0>
(3, 2, 14)
まとめ
「bpy」(Blender Python API)は、Pythonを使ったBlenderの開発に非常に役立ちます。この記事では、コンテキストなプリファレンスデータを取得する方法を紹介しました。ぜひ活用してみてください。
関連検索ワード
How to get a context preference data?
関連キーワード
blender, python, get, context, preference, 取得, コンテキスト, プリファレンス