like this;
HTML Code:
chr.GetNameByVID(vid) chr.GetName() chr.GetRace(vid) chr.GetRotation() chr.BlendRotation(???) chr.SetRotationAll(xrotation, yrotation, zrotation) chr.SetRotation(value) chr.GetPixelPosition(vid)
Code:
import sys, os
f = open('pythonDump.txt','w')
modules_key = sys.modules.keys()
modules_dic = sys.modules
built_in = sys.builtin_module_names
for mod in modules_key:
if mod not in built_in:
print >>f,'\n-----MODULE------'
print >>f,str(mod)
print >>f,'-----------------\n'
funcs = dir(modules_dic.get(mod))
for func in funcs:
print >>f,str(func)
f.close()







