From a77125ff124c3df63dae480e0b88e74d3e919b24 Mon Sep 17 00:00:00 2001 From: Andrej730 Date: Thu, 15 May 2025 20:00:56 +0500 Subject: [PATCH] bim.add_drawing - document camera placement behaviour in description See https://i.imgur.com/VfOjGHk.png --- src/bonsai/bonsai/bim/module/drawing/operator.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/bonsai/bonsai/bim/module/drawing/operator.py b/src/bonsai/bonsai/bim/module/drawing/operator.py index a4af42d21d..a0a0f07138 100644 --- a/src/bonsai/bonsai/bim/module/drawing/operator.py +++ b/src/bonsai/bonsai/bim/module/drawing/operator.py @@ -139,7 +139,11 @@ class AddDrawing(bpy.types.Operator, tool.Ifc.Operator): bl_idname = "bim.add_drawing" bl_label = "Add Drawing" bl_options = {"REGISTER", "UNDO"} - bl_description = "Add a drawing view to the IFC project" + bl_description = ( + "Add a drawing view to the IFC project.\n\n" + "For all views besides MODEL_VIEW camera will be placed at the current cursor position,\n" + "for MODEL_VIEW camera will be aligned to the current viewport position and orientation." + ) def _execute(self, context): props = tool.Drawing.get_document_props()