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

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaurice Raybaud <mauriceraybaud@hotmail.fr>2011-01-18 17:28:51 +0300
committerMaurice Raybaud <mauriceraybaud@hotmail.fr>2011-01-18 17:28:51 +0300
commit13f4c169e4cb05827a56f490f500a58d31984d05 (patch)
tree9c0ae2b656bfbdeea8376fdbd624d0b27ec76437
parent40367bf3fd605b2f7bd905fc1b8d56fae4778824 (diff)
Removed (commented out) Baking from the interface until we work on it again. More important issues need to be solved first.
-rw-r--r--render_povray/ui.py32
1 files changed, 16 insertions, 16 deletions
diff --git a/render_povray/ui.py b/render_povray/ui.py
index c3025728..9b262dcd 100644
--- a/render_povray/ui.py
+++ b/render_povray/ui.py
@@ -355,22 +355,22 @@ class RENDER_PT_povray_media(RenderButtonsPanel, bpy.types.Panel):
col.prop(scene, "pov_media_color", text="Color")
-class RENDER_PT_povray_baking(RenderButtonsPanel, bpy.types.Panel):
- bl_label = "Baking"
- COMPAT_ENGINES = {'POVRAY_RENDER'}
-
- def draw_header(self, context):
- scene = context.scene
-
- self.layout.prop(scene, "pov_baking_enable", text="")
-
- def draw(self, context):
- layout = self.layout
-
- scene = context.scene
- rd = scene.render
-
- layout.active = scene.pov_baking_enable
+##class RENDER_PT_povray_baking(RenderButtonsPanel, bpy.types.Panel):
+## bl_label = "Baking"
+## COMPAT_ENGINES = {'POVRAY_RENDER'}
+##
+## def draw_header(self, context):
+## scene = context.scene
+##
+## self.layout.prop(scene, "pov_baking_enable", text="")
+##
+## def draw(self, context):
+## layout = self.layout
+##
+## scene = context.scene
+## rd = scene.render
+##
+## layout.active = scene.pov_baking_enable
class RENDER_PT_povray_formatting(RenderButtonsPanel, bpy.types.Panel):