Skip to content

Commit

Permalink
Fix: Missing __iter__ and __getitem__ method for BM*Seq class
Browse files Browse the repository at this point in the history
  • Loading branch information
nutti committed Nov 12, 2023
1 parent dc761c8 commit 9657279
Showing 1 changed file with 51 additions and 0 deletions.
51 changes: 51 additions & 0 deletions src/mods/common/analyzer/bmesh.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
{
"append": [
{
"name": "BMElemSeq",
"type": "class",
"module": "bmesh.types",
"methods": [
{
"name": "__iter__",
"type": "method",
"module": "bmesh.types",
"parameters": [],
"return": {}
}
]
},
{
"name": "BMVertSeq",
"type": "class",
"module": "bmesh.types",
"methods": [
{
"name": "__iter__",
"type": "method",
"module": "bmesh.types",
"parameters": [],
"return": {}
},
{
"name": "__getitem__",
"type": "method",
"module": "bmesh.types",
"parameters": [
"key"
],
"parameter_details": [
{
"type": "parameter",
"name": "key",
"data_type": "int"
}
],
"return": {
"type": "return",
"data_type": "`bmesh.types.BMVert`"
}
}
]
},
]
}

0 comments on commit 9657279

Please sign in to comment.