From 0d3cc9a06dfd3f77fa9bd20c5013ae9b050b4fae Mon Sep 17 00:00:00 2001 From: Gaia Clary Date: Mon, 1 Apr 2019 12:00:36 +0200 Subject: new: MathVis: Added option to display points and lines in front --- space_view3d_math_vis/__init__.py | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'space_view3d_math_vis/__init__.py') diff --git a/space_view3d_math_vis/__init__.py b/space_view3d_math_vis/__init__.py index f64de364..94d871d3 100644 --- a/space_view3d_math_vis/__init__.py +++ b/space_view3d_math_vis/__init__.py @@ -88,6 +88,7 @@ class PanelConsoleVars(Panel): col = layout.column() col.prop(bpy.context.window_manager.MathVisProp, "name_hide") col.prop(bpy.context.window_manager.MathVisProp, "bbox_hide") + col.prop(bpy.context.window_manager.MathVisProp, "in_front") col.prop(bpy.context.window_manager.MathVisProp, "bbox_scale") col.operator("mathvis.cleanup_console") @@ -242,6 +243,12 @@ class MathVis(PropertyGroup): "lines for the display of Matrix items" ) + in_front: BoolProperty( + name="Always In Front", + default=True, + description="Draw Points and lines alwasy in front", + update=call_console_hook + ) classes = ( PanelConsoleVars, -- cgit v1.2.3