PyAPI: remove bpy.utils.register_module()

In preparation for it being removed, see: T47811
This commit is contained in:
Campbell Barton
2017-03-18 20:03:24 +11:00
parent 2fbc50e4c1
commit 9bdda427e6
79 changed files with 1367 additions and 81 deletions

View File

@@ -1224,5 +1224,38 @@ class TEXTURE_PT_custom_props(TextureButtonsPanel, PropertyPanel, Panel):
_context_path = "texture"
_property_type = Texture
classes = (
TEXTURE_MT_envmap_specials,
TEXTURE_MT_specials,
TEXTURE_PT_blend,
TEXTURE_PT_clouds,
TEXTURE_PT_colors,
TEXTURE_PT_context_texture,
TEXTURE_PT_custom_props,
TEXTURE_PT_distortednoise,
TEXTURE_PT_envmap,
TEXTURE_PT_envmap_sampling,
TEXTURE_PT_image,
TEXTURE_PT_image_mapping,
TEXTURE_PT_image_sampling,
TEXTURE_PT_influence,
TEXTURE_PT_magic,
TEXTURE_PT_mapping,
TEXTURE_PT_marble,
TEXTURE_PT_musgrave,
TEXTURE_PT_ocean,
TEXTURE_PT_pointdensity,
TEXTURE_PT_pointdensity_turbulence,
TEXTURE_PT_preview,
TEXTURE_PT_stucci,
TEXTURE_PT_voronoi,
TEXTURE_PT_voxeldata,
TEXTURE_PT_wood,
TEXTURE_UL_texslots,
)
if __name__ == "__main__": # only for live edit.
bpy.utils.register_module(__name__)
from bpy.utils import register_class
for cls in classes:
register_class(cls)