diff --git a/addons/io_hubs_addon/components/definitions/fog.py b/addons/io_hubs_addon/components/definitions/fog.py index 95734043..e822d71c 100644 --- a/addons/io_hubs_addon/components/definitions/fog.py +++ b/addons/io_hubs_addon/components/definitions/fog.py @@ -15,8 +15,9 @@ class Fog(HubsComponent): } def draw(self, context, layout, panel): - '''Draw method to be called by the panel. The base class method will print all the component properties''' + '''Draw method to be called by the panel.''' layout.prop(data=self, property="type") + layout.prop(data=self, property="color") if self.type == "linear": layout.prop(data=self, property="near") layout.prop(data=self, property="far")