提交 a8cc2a22 编写于 作者: M Mr.doob

Blender Exporter: Fixed Indexed BufferGeometry exporting. Seems like this has...

Blender Exporter: Fixed Indexed BufferGeometry exporting. Seems like this has been broken for a year... a4e892b5
上级 40ddc192
......@@ -287,6 +287,9 @@ class Geometry(base_classes.BaseNode):
data = {
constants.DATA: {constants.ATTRIBUTES: data}
}
index = self.get(constants.INDEX)
if index is not None:
data[constants.DATA][constants.INDEX] = index
data[constants.METADATA] = {
constants.TYPE: self[constants.TYPE]
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册