Questions tagged [operator]
An operator is a processing unit that is invoked/executed on scene data by the window manager.
527 questions
0 votes
1 answer
6 views
Best way to allow user to edit property that is average of value (like Transform panel)?
I'm running Blender 5.0.0. I want to implement a function similar to the Transform panel in the Items tab of the sidebar during Edit mode. I want to: Display an average of a custom attribute over the ...
0 votes
0 answers
23 views
Call pack islands operator with a low level override showing popup for tweaking
I'd like to pack island by calling the operator from code with a low level override. Here it is: ...
2 votes
1 answer
185 views
How do I show the Last Operation panel?
How do I get the operator panel to show up on the bottom left corner of my screen?
0 votes
0 answers
49 views
Report message from previous run persists in successive run of the same operator
Summary When an operator is run multiple times successively in blender, report messages (generated by report() API) from previous runs are also showing up in present run. What is the reason behind it ...
0 votes
0 answers
17 views
How to run multiple modal operators to download images using separate threads?
Let say I have an Operator.bl_idname=download.image with url: StringProperty(), I am drawing this operator in a ...
0 votes
0 answers
26 views
Adjust Last Operation Panel Not Showing When Using Operator Poll Method with Mesh Object Check
I have an operator that creates bones in an armature, where each bone's tail points toward a random vertex on a selected target mesh object. The operator works as expected, and I can adjust the number ...
1 vote
1 answer
97 views
bpy.ops.console.scrollback_append RuntimeError context is incorrect when called from SimpleOperator template
repro: Run Blender 4.2.0 File -> New -> General Scripting Workspace Template -> Simple Operator replace main function with ...
1 vote
1 answer
34 views
How to display Size property in form of "number+units" in the custom operator's REDO panel?
If we add some standard mesh (e.g, cube) - the Size property will be displayed as number + units : API documentation says that in case of primitive_cube_add the ...