ver3.1.5
pythonで以下の3つの関数を実行するとエラーになります。
addSelectUVVertex
deleteSelectUVVertex
isSelectUVVertex
適当なobjectを表示して以下のコードで試しました。
doc = MQSystem.getDocument()
curidx = doc.currentObjectIndex
if curidx != -1:
obj = doc.object[curidx]
if not (obj is None):
fcount = obj.numFace
for i in xrange(fcount):
doc.addSelectUVVertex(curidx, i, 0)
#doc.deleteSelectUVVertex(curidx, i, 0)
#tt = doc.isSelectUVVertex(curidx, i, 0)
UV操作というメジャーな処理にもかかわらず検索しても不具合報告が見つからず、どこかミスをしてるのかもと疑ったのですが、コードを色々変えてもエラーなので書き込ませていただきました。
2013-10-26 16:14