From 13f4c169e4cb05827a56f490f500a58d31984d05 Mon Sep 17 00:00:00 2001 From: Maurice Raybaud <mauriceraybaud@hotmail.fr> Date: Tue, 18 Jan 2011 14:28:51 +0000 Subject: [PATCH] Removed (commented out) Baking from the interface until we work on it again. More important issues need to be solved first. --- render_povray/ui.py | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/render_povray/ui.py b/render_povray/ui.py index c30257285..9b262dcd9 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): -- GitLab