搅拌机的自定义导出脚本

Custom export script for blender

我正在尝试编写一个自定义脚本来导出场景中的对象及其旋转中心。这是我的算法获得旋转中心的样子: 1- Select 对象使用其名称然后调用 2- 将光标捕捉到对象(中心) 3-获取鼠标坐标 4- 写入鼠标坐标

import bpy

sce = bpy.context.scene
ob_list = sce.objects

path = 'C:\Users\bestc\Dropbox\NetBeansProjects\MoonlightWanderer\res\Character\player.dat'

# Now copy the coordinate of the mouse as center of rotation
try:
    outfile = open(path, 'w')
    for ob in ob_list:
        if ob.name != "Camera" and ob.name != "Lamp":
            ob.select = True
            bpy.ops.view3d.snap_cursor_to_selected()

            mouseX, mouseY, mouseZ = bpy.ops.view3d.cursor_location
            # write object name, coords, center of rotation and rotation followed by a newline
            outfile.write( "%s\n" % (ob.name))

            x, y, z = ob.location # unpack the ob.loc tuple for printing
            x2, y2, z2 = ob.rotation_euler # unpack the ob.rot tuple for printing
            outfile.write( "%f %f %f %f %f\n" % (y, z, mouseY, mouseZ, y2) )

    #outfile.close()

except Exception as e:
    print ("Oh no! something went wrong:", e)

else:
    if outfile: outfile.close()
    print("done writing")`enter code here`

显然问题出在第 2 步和第 3 步,但我不知道如何将光标捕捉到对象并获取光标坐标。

当您 运行 来自 blenders 文本编辑器的脚本时,当您尝试 运行 大多数运算符时,您将遇到上下文错误,但无需使用运算符即可检索到您想要的信息。

如果您想要 3DCursor 位置,您可以在 scene.cursor_location

中找到它

如果您已将光标捕捉到对象,则光标位置将等于对象位置,即 object.location,因为捕捉光标将使光标给出相同的值只需使用对象位置,而不必将光标捕捉到它。你的代码实际上在做什么(如果它正在工作)是将光标捕捉到选定的对象,这将它定位在所有选定对象之间的中点。当你遍历你的对象时,你选择了每个对象,但你并没有取消选择它们,所以每次迭代都会将另一个对象添加到选择中,每次都会将光标偏移到不同的位置,但仅限于第一个对象的位置如果所有对象在开始时都未被选中。

对象旋转存储为弧度,因此您可能需要 import math 并使用 math.degrees()

此外,由于对象可以有任何名称,您应该会发现测试对象类型以选择要导出的内容更准确。

for ob in ob_list:
    if ob.type != "CAMERA" and ob.type != "LAMP":

        mouseX, mouseY, mouseZ = sce.cursor_location
        # write object name, coords, center of rotation and rotation followed by a newline
        outfile.write( "%s\n" % (ob.name))

        x, y, z = ob.location # unpack the ob.loc tuple for printing
        x2, y2, z2 = ob.rotation_euler # unpack the ob.rot tuple for printing
        outfile.write( "%f %f %f %f %f\n" % (y, z, mouseY, mouseZ, y2) )