いくつかのオブジェクトをブレンダーから独自の形式にエクスポートしようとしています。私が書いたスクリプトで、ファイルドロップダウンとコマンドラインからblenderからオブジェクトをエクスポートできるようにしたいと思います。ubuntu 12.04 LTSでブレンダー2.66を使用しています。以下は、現在実行しようとしているファイルです。
# Required Blender information.
bl_info = {
"name": "My Exporter",
"author": "",
"version": (1, 0),
"blender": (2, 65, 0),
"location": "File > Export > Test (.tst)",
"description": "",
"warning": "",
"wiki_url": "",
"tracker_url": "",
"category": "Import-Export"
}
# Import the Blender required namespaces.
import bpy
from bpy_extras.io_utils import ExportHelper
# The main exporter class.
class MyExporter(bpy.types.Operator, ExportHelper):
bl_idname = "test.tst";
bl_label = "My Exporter";
bl_options = {'PRESET'};
filename_ext = ".tst";
object_count = 0;
def __init__(self):
pass
def execute(self, context):
print("Execute was called.");
# Parse all the objects in the scene.
return {'FINISHED'};
def export_object(self, gameObject):
if (gameObject.type != "MESH"):
print("Object was not of type mesh.");
else:
object_count += 1;
return;
# Define a function to create the menu option for exporting.
def create_menu(self, context):
self.layout.operator(MyExporter.bl_idname,text="test (.tst)");
# Define the Blender required registration functions.
def register():
"""
Handles the registration of the Blender Addon.
"""
bpy.utils.register_module(__name__);
bpy.types.INFO_MT_file_export.append(create_menu);
def unregister():
"""
Handles the unregistering of this Blender Addon.
"""
bpy.utils.unregister_module(__name__);
bpy.types.INFO_MT_file_export.remove(create_menu);
# Handle running the script from Blender's text editor.
if (__name__ == "__main__"):
print("Registering.");
register();
print("Executing.");
# I have tried with these lines uncommented to force it to run
# the execute function, but I get an error saying:
# exporter = MyExporter();
# TypeError: bpy_struct.__new__(type): expected a single argument
#exporter = MyExporter();
#exporter.execute(bpy.context.scene);
次のコマンドを試しました:
blender model.blend --background --python myexporter.py
そこから、出力として次のものが得られます。
Note: No (valid) '~/.config/blender/2.66/config/startup.blend' found,
fall back to built-in default.
Read new prefs: ~/.config/blender/2.66/config/userpref.blend
found bundled python: ~/blender/2.66/python
read blend: ~/model.blend
Registering.
Executing.
Blender quit
MyExporter クラスの execute 関数が呼び出されることはないようです。実行関数を直接呼び出してみましたが、その領域の上のコメントを読むと、そこにも何かが欠けているようです。
スクリプトがブレンダーのアドオンとして追加されると、すべてが正常に機能します。それは完全に実行を呼び出します。したがって、少なくとも半分は機能しています。
どうぞよろしくお願いいたします。私が愚かな間違いを犯した場合は、申し訳ありませんが、私はこのスクリプトを書くと同時に Python を学んでいます。