mirror of
https://github.com/panda3d/panda3d.git
synced 2025-09-29 16:20:11 -04:00
parent
df848965fb
commit
ec1c3ef347
@ -273,6 +273,7 @@ def processModule(handle, package):
|
|||||||
if "panda3d." + package == module_name:
|
if "panda3d." + package == module_name:
|
||||||
processType(handle, type)
|
processType(handle, type)
|
||||||
else:
|
else:
|
||||||
|
typename = interrogate_type_name(type)
|
||||||
print("Type %s has no module name" % typename)
|
print("Type %s has no module name" % typename)
|
||||||
|
|
||||||
for i_func in range(interrogate_number_of_global_functions()):
|
for i_func in range(interrogate_number_of_global_functions()):
|
||||||
@ -283,7 +284,8 @@ def processModule(handle, package):
|
|||||||
if "panda3d." + package == module_name:
|
if "panda3d." + package == module_name:
|
||||||
processFunction(handle, func)
|
processFunction(handle, func)
|
||||||
else:
|
else:
|
||||||
print("Type %s has no module name" % typename)
|
funcname = interrogate_function_name(func)
|
||||||
|
print("Function %s has no module name" % funcname)
|
||||||
|
|
||||||
print("}", file=handle)
|
print("}", file=handle)
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user