Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2017-03-18 12:03:24 +0300
committerCampbell Barton <ideasman42@gmail.com>2017-03-18 12:03:24 +0300
commit9bdda427e6ffa2b07f924530b7d2a2db6adbb797 (patch)
tree69d04799288c73d4eb24e67bdc335666dd9203b3 /release/scripts/startup/bl_ui/properties_texture.py
parent2fbc50e4c1714d393453209ff6c305c01bb3421f (diff)
PyAPI: remove bpy.utils.register_module()
In preparation for it being removed, see: T47811
Diffstat (limited to 'release/scripts/startup/bl_ui/properties_texture.py')
-rw-r--r--release/scripts/startup/bl_ui/properties_texture.py35
1 files changed, 34 insertions, 1 deletions
diff --git a/release/scripts/startup/bl_ui/properties_texture.py b/release/scripts/startup/bl_ui/properties_texture.py
index caf19a9e469..c3f160e03d7 100644
--- a/release/scripts/startup/bl_ui/properties_texture.py
+++ b/release/scripts/startup/bl_ui/properties_texture.py
@@ -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)