Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorSebastián Barschkis <sebbas@sebbas.org>2019-11-27 13:17:58 +0300
committerSebastián Barschkis <sebbas@sebbas.org>2019-11-27 13:17:58 +0300
commitc179a13a4bc9568ffa35f6eb9d814195beeefb59 (patch)
treed76f2b5e24faf8550fca6da45794d15dfcd59b42 /doc
parent0ca44974c97fbfd39187fb123c35037b17eaac60 (diff)
parentfc1a073bcdc9d2a9ecd4b765724b0f4f4cab4d46 (diff)
Merge branch 'master' into fluid-mantaflow
Diffstat (limited to 'doc')
-rw-r--r--doc/python_api/rst_from_bmesh_opdefines.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/doc/python_api/rst_from_bmesh_opdefines.py b/doc/python_api/rst_from_bmesh_opdefines.py
index c4e97d1f38b..8e40a1a7a39 100644
--- a/doc/python_api/rst_from_bmesh_opdefines.py
+++ b/doc/python_api/rst_from_bmesh_opdefines.py
@@ -138,10 +138,11 @@ def main():
"BMO_OP_SLOT_SUBTYPE_MAP_EMPTY",
"BMO_OP_SLOT_SUBTYPE_MAP_INTERNAL",
+ "BMO_OP_SLOT_SUBTYPE_PTR_BMESH",
"BMO_OP_SLOT_SUBTYPE_PTR_SCENE",
"BMO_OP_SLOT_SUBTYPE_PTR_OBJECT",
"BMO_OP_SLOT_SUBTYPE_PTR_MESH",
- "BMO_OP_SLOT_SUBTYPE_PTR_BMESH",
+ "BMO_OP_SLOT_SUBTYPE_PTR_STRUCT",
"BMO_OP_SLOT_SUBTYPE_INT_ENUM",
"BMO_OP_SLOT_SUBTYPE_INT_FLAG",
@@ -345,6 +346,10 @@ def main():
tp_str = ":class:`bpy.types.Object`"
elif tp_sub == BMO_OP_SLOT_SUBTYPE_PTR_MESH:
tp_str = ":class:`bpy.types.Mesh`"
+ elif tp_sub == BMO_OP_SLOT_SUBTYPE_PTR_STRUCT:
+ # XXX Used for CurveProfile only currently I think (bevel code),
+ # but think the idea is that that pointer is for any type?
+ tp_str = ":class:`bpy.types.bpy_struct`"
else:
print("Can't find", vars_dict_reverse[tp_sub])
assert(0)