change python scripts so modules which register with blender have a register() function rather then making import automatically run the register functions (generally considered bad practice by python people)

This commit is contained in:
Campbell Barton
2010-02-14 11:21:21 +00:00
parent b02f78ed02
commit 39c04315e2
76 changed files with 1310 additions and 592 deletions

View File

@@ -76,3 +76,10 @@ def banner(context):
sc.prompt = os.getcwd() + PROMPT
return {'FINISHED'}
def register():
pass
def unregister():
pass