- rewrote arm rig so it creates 2 chains and blend them automatically (like the leg)

- use reverse order for palm fingers (pointer first)
- allow copying bone class instances to exclude some bones
- doc generation had a python error (incedently updated online docs linked from the splash)
This commit is contained in:
2009-12-09 12:00:28 +00:00
parent 9bc23bd616
commit 0e713ba1d0
5 changed files with 163 additions and 237 deletions

View File

@@ -691,8 +691,15 @@ def op2epy(BASEPATH):
operators = dir(op_mod)
for op in sorted(operators):
# rna = getattr(bpy.types, op).bl_rna
rna = getattr(op_mod, op).get_rna()
write_func(rna, '', out, 'OPERATOR')
try:
rna = getattr(op_mod, op).get_rna()
except AttributeError:
rna = None
except TypeError:
rna = None
if rna:
write_func(rna, '', out, 'OPERATOR')
out.write('\n')
out.close()