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
path: root/intern
diff options
context:
space:
mode:
authorSergey Sharybin <sergey.vfx@gmail.com>2013-02-05 19:22:30 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2013-02-05 19:22:30 +0400
commit0983e9c745785f3f2c7773d8750a134d7addaccb (patch)
tree6cffdec46885450efab7de5adbf5970acc9c6325 /intern
parent2fc46efbd688f336fcdea571cf892fcc21f23608 (diff)
Add missing Custom Properties panels when Cycles render is active
Diffstat (limited to 'intern')
-rw-r--r--intern/cycles/blender/addon/ui.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/intern/cycles/blender/addon/ui.py b/intern/cycles/blender/addon/ui.py
index 840fc216c49..09c94cac270 100644
--- a/intern/cycles/blender/addon/ui.py
+++ b/intern/cycles/blender/addon/ui.py
@@ -1133,12 +1133,14 @@ def get_panels():
types.RENDER_PT_stamp,
types.SCENE_PT_scene,
types.SCENE_PT_color_management,
+ types.SCENE_PT_custom_props,
types.SCENE_PT_audio,
types.SCENE_PT_unit,
types.SCENE_PT_keying_sets,
types.SCENE_PT_keying_set_paths,
types.SCENE_PT_physics,
types.WORLD_PT_context_world,
+ types.WORLD_PT_custom_props,
types.DATA_PT_context_mesh,
types.DATA_PT_context_camera,
types.DATA_PT_context_lamp,
@@ -1161,6 +1163,11 @@ def get_panels():
types.DATA_PT_custom_props_camera,
types.DATA_PT_custom_props_lamp,
types.DATA_PT_custom_props_speaker,
+ types.DATA_PT_custom_props_arm,
+ types.DATA_PT_custom_props_curve,
+ types.DATA_PT_custom_props_lattice,
+ types.DATA_PT_custom_props_metaball,
+ types.TEXTURE_PT_custom_props,
types.TEXTURE_PT_clouds,
types.TEXTURE_PT_wood,
types.TEXTURE_PT_marble,
@@ -1180,6 +1187,7 @@ def get_panels():
types.TEXTURE_PT_influence,
types.TEXTURE_PT_colors,
types.PARTICLE_PT_context_particles,
+ types.PARTICLE_PT_custom_props,
types.PARTICLE_PT_emission,
types.PARTICLE_PT_hair_dynamics,
types.PARTICLE_PT_cache,
@@ -1197,6 +1205,9 @@ def get_panels():
types.PARTICLE_PT_force_fields,
types.PARTICLE_PT_vertexgroups,
types.PARTICLE_PT_custom_props,
+ types.MATERIAL_PT_custom_props,
+ types.BONE_PT_custom_props,
+ types.OBJECT_PT_custom_props,
)