File: addon_tutorial.rst

package info (click to toggle)
blender-doc 4.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 253,604 kB
  • sloc: python: 13,030; javascript: 322; makefile: 113; sh: 107
file content (606 lines) | stat: -rw-r--r-- 21,488 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606

.. This document is an exception to the rule of not having tutorials in the reference manual.
   Since this doesn't quite belong on the API docs either.
   It's important we have at least one place with good basic info on how to write an add-on.
   -- ideasman42

***************
Add-on Tutorial
***************

Intended Audience
=================

This tutorial is designed to help technical artists or developers learn to extend Blender.
An understanding of the basics of Python is expected for those working through this tutorial.


Prerequisites
-------------

Before going through the tutorial you should...

- Be familiar with the basics of working in Blender.
- Know how to run a script in Blender's Text editor.
- Have an understanding of Python primitive types (integer, Boolean, string, list, tuple, dictionary, and set).
- Be familiar with the concept of Python modules.
- Have a basic understanding of classes (object orientation) in Python.

Suggested reading before starting this tutorial.

- `Dive Into Python <https://finderiko.com/python-book>`__ sections (1, 2, 3, 4, and 7).
- `Blender API Quickstart <https://docs.blender.org/api/current/info_quickstart.html>`__
  to help become familiar with Blender/Python basics.

To best troubleshoot any error message Python prints while writing scripts, you run Blender from a terminal.
See `Use The Terminal <https://docs.blender.org/api/current/info_tips_and_tricks.html#use-the-terminal>`__.

.. tip::

   You can enable :ref:`Developer Extras <bpy.types.PreferencesView.show_developer_ui>`
   in the preferences to enable features that make developing add-ons easier.


Documentation Links
===================

While going through the tutorial, you may want to look into our reference documentation.

- `Blender API Overview <https://docs.blender.org/api/current/info_overview.html>`__:
  This document is rather detailed but helpful if you want to know more on a topic.
- :mod:`blender_api:bpy.context` API reference --
  Handy to have a list of available items your script may operate on.
- :class:`blender_api:bpy.types.Operator` --
  The following add-ons define operators, these docs give details and more examples of operators.


What is an Add-on?
==================

An add-on is simply a Python module with some additional requirements so Blender
can display it in a list with useful information.

To give an example, here is the simplest possible add-on::

   bl_info = {
       "name": "My Test Add-on",
       "blender": (2, 80, 0),
       "category": "Object",
   }
   def register():
       print("Hello World")
   def unregister():
       print("Goodbye World")

``bl_info``
   is a dictionary containing add-on metadata such as the title,
   version and author to be displayed in the Preferences add-on list.
   It also specifies the minimum Blender version required to run the script;
   older versions won't display the add-on in the list.
``register``
   is a function which only runs when enabling the add-on,
   this means the module can be loaded without activating the add-on.
``unregister``
   is a function to unload anything setup by ``register``,
   this is called when the add-on is disabled.

Notice this add-on does not do anything related to Blender
(the :mod:`blender_api:bpy` module is not imported for example).

This is a contrived example of an add-on that serves to illustrate the point
that the base requirements of an add-on are simple.

An add-on will typically register operators, panels, menu items, etc,
but it's worth noting that *any* script can do this,
when executed from the Text editor or even the interactive console --
there is nothing inherently different about an add-on that allows it to integrate with Blender,
such functionality is just provided by the :mod:`blender_api:bpy` module for any script to access.

So an add-on is just a way to encapsulate a Python module in a way a user can easily utilize.

.. note::

   Running this script within the Text editor won't print anything,
   to see the output it must be installed through the Preferences.
   Messages will be printed when enabling and disabling.


Your First Add-on
=================

The simplest possible add-on above is useful as an example but not much else.
This next add-on is simple but shows how to integrate a script into Blender using an ``Operator``
which is the typical way to define a tool accessed from menus, buttons and keyboard shortcuts.

For the first example we will make a script that simply moves all objects in a scene.


Write the Script
----------------

Add the following script to the Text editor in Blender::

   import bpy

   scene = bpy.context.scene
   for obj in scene.objects:
       obj.location.x += 1.0

Click the :ref:`Run Script button <editors-text-run-script>`,
all objects in the active scene are moved by 1.0 unit.


.. _advanced-scripting-write-the-add-on-simple:

Write the Add-on (Simple)
-------------------------

This add-on takes the body of the script above, and adds it to an operator's ``execute()`` function. ::

   bl_info = {
       "name": "Move X Axis",
       "blender": (2, 80, 0),
       "category": "Object",
   }

   import bpy


   class ObjectMoveX(bpy.types.Operator):
       """My Object Moving Script"""      # Use this as a tooltip for menu items and buttons.
       bl_idname = "object.move_x"        # Unique identifier for buttons and menu items to reference.
       bl_label = "Move X by One"         # Display name in the interface.
       bl_options = {'REGISTER', 'UNDO'}  # Enable undo for the operator.

       def execute(self, context):        # execute() is called when running the operator.

           # The original script
           scene = context.scene
           for obj in scene.objects:
               obj.location.x += 1.0

           return {'FINISHED'}            # Lets Blender know the operator finished successfully.

   def menu_func(self, context):
       self.layout.operator(ObjectMoveX.bl_idname)

   def register():
       bpy.utils.register_class(ObjectMoveX)
       bpy.types.VIEW3D_MT_object.append(menu_func)  # Adds the new operator to an existing menu.

   def unregister():
       bpy.utils.unregister_class(ObjectMoveX)


   # This allows you to run the script directly from Blender's Text editor
   # to test the add-on without having to install it.
   if __name__ == "__main__":
       register()

.. note::

   ``bl_info`` is split across multiple lines, this is just a style convention used to more easily add items.

.. note::

   Rather than using ``bpy.context.scene``, we use the ``context.scene`` argument passed to ``execute()``.
   In most cases these will be the same. However in some cases, operators will be passed a custom context
   so script authors should prefer the ``context`` argument passed to operators.

To test the script, you can copy and paste it into Blender's Text editor and run it.
This will execute the script directly and call register immediately.

However running the script won't move any objects. For this, you need to execute the newly registered operator.

.. figure:: /images/advanced_scripting_addon-tutorial_operator-search-menu.png

   Operator Search menu.

Open the :ref:`Operator Search <bpy.ops.wm.search_operator>` menu
and type in "Move X by One" (the ``bl_label``), then :kbd:`Return`.

The objects should move as before.

*Keep this add-on open in Blender for the next step - Installing.*


Install the Add-on
------------------

Once you have your add-on within in Blender's Text editor,
you will want to be able to install it so it can be enabled in the Preferences to load on startup.

Even though the add-on above is a test, let's go through the steps anyway so you know how to do it for later.

To install the Blender text as an add-on, you will first have to save it on drive. Take care to obey the naming
restrictions that apply to Python modules and end with a ``.py`` extension.

Once the file is on drive, you can install it as you would for an add-on downloaded online.

Open the :menuselection:`Preferences --> Add-ons --> Install...` and select the file.

Now the add-on will be listed and you can enable it by pressing the checkbox,
if you want it to be enabled on restart, press *Save as Default*. The operator
can be run in the same way as described in the :ref:`previous section <advanced-scripting-write-the-add-on-simple>`.

When the add-on is enabled, Blender executes the code and runs the ``register()`` function.
When the add-on is disabled, Blender runs the ``unregister()`` function.

.. note::

   The destination of the add-on depends on your Blender configuration.
   When installing an add-on the source and destination paths are printed in the console.
   You can also find add-on path locations by running this in the Python Console::

      import addon_utils
      print(addon_utils.paths())

   More is written on this topic here:
   :ref:`Directory Layout <blender-directory-layout>`.


Your Second Add-on
==================

For our second add-on, we will focus on object instancing -- this is -- to make linked
copies of an object in a similar way to what you may have seen with the Array modifier.


Write the Script
----------------

As before, first we will start with a script, develop it, then convert it into an add-on. ::

   import bpy
   from bpy import context

   # Get the current scene
   scene = context.scene

   # Get the 3D cursor location
   cursor = scene.cursor.location

   # Get the active object (assume we have one)
   obj = context.active_object

   # Now make a copy of the object
   obj_new = obj.copy()

   # The new object has to be added to a collection in the scene
   scene.collection.objects.link(obj_new)

   # Now we can place the object
   obj_new.location = cursor

Now try copying this script into Blender and run it on the default Cube.
Make sure you click to move the 3D cursor before running as the duplicate will appear at the cursor's location.

After running, notice that when you go into *Edit Mode* to change the Cube -- all of the copies change.
In Blender, this is known as *Linked Duplicates*.

Next, we're going to do this in a loop, to make an array of objects between the active object and the cursor. ::

   import bpy
   from bpy import context

   scene = context.scene
   cursor = scene.cursor.location
   obj = context.active_object

   # Use a fixed value for now, eventually make this user adjustable
   total = 10

   # Add 'total' objects into the scene
   for i in range(total):
       obj_new = obj.copy()
       scene.collection.objects.link(obj_new)

       # Now place the object in between the cursor
       # and the active object based on 'i'
       factor = i / total
       obj_new.location = (obj.location * factor) + (cursor * (1.0 - factor))

Try running this script with the active object and the cursor spaced apart to see the result.

With this script you'll notice we're doing some math with the object location and cursor,
this works because both are 3D :class:`blender_api:mathutils.Vector` instances,
a convenient class provided by the :mod:`blender_api:mathutils` module which
allows vectors to be multiplied by numbers and matrices.

If you are interested in this area, read into :class:`blender_api:mathutils.Vector`
-- there are many handy utility functions such as getting the angle between vectors,
cross product, dot products as well as more advanced functions in :mod:`blender_api:mathutils.geometry`
such as Bézier spline interpolation and ray-triangle intersection.

For now we will focus on making this script an add-on, but it's good to know that this
3D math module is available and can help you with more advanced functionality later on.


Write the Add-on
----------------

The first step is to convert the script as-is into an add-on::

   bl_info = {
       "name": "Cursor Array",
       "blender": (2, 80, 0),
       "category": "Object",
   }

   import bpy


   class ObjectCursorArray(bpy.types.Operator):
       """Object Cursor Array"""
       bl_idname = "object.cursor_array"
       bl_label = "Cursor Array"
       bl_options = {'REGISTER', 'UNDO'}

       def execute(self, context):
           scene = context.scene
           cursor = scene.cursor.location
           obj = context.active_object

           total = 10

           for i in range(total):
               obj_new = obj.copy()
               scene.collection.objects.link(obj_new)

               factor = i / total
               obj_new.location = (obj.location * factor) + (cursor * (1.0 - factor))

           return {'FINISHED'}

   def register():
       bpy.utils.register_class(ObjectCursorArray)


   def unregister():
       bpy.utils.unregister_class(ObjectCursorArray)


   if __name__ == "__main__":
       register()

Everything here has been covered in the previous steps, you may want to try run
the add-on still and consider what could be done to make it more useful.

The two of the most obvious missing things are -- having the total fixed at 10,
and having to access the operator with :ref:`bpy.ops.wm.search_operator` is not very convenient.

Both these additions are explained next, with the final script afterwards.


Operator Property
^^^^^^^^^^^^^^^^^

There are a variety of property types that are used for tool settings, common property types include:
int, float, vector, color, Boolean and string.

These properties are handled differently to typical Python class attributes
because Blender needs to display them in the interface,
store their settings in keymaps and keep settings for reuse.

While this is handled in a fairly Pythonic way, be mindful that you are in fact defining tool settings that
are loaded into Blender and accessed by other parts of Blender, outside of Python.

To get rid of the literal 10 for ``total``, we'll use an operator property.
Operator properties are defined via bpy.props module, this is added to the class body::

   # moved assignment from execute() to the body of the class...
   total: bpy.props.IntProperty(name="Steps", default=2, min=1, max=100)

   # and this is accessed on the class
   # instance within the execute() function as...
   self.total

These properties from :mod:`blender_api:bpy.props` are handled specially by Blender
when the class is registered so they display as buttons in the user interface.
There are many arguments you can pass to properties to set limits,
change the default and display a tooltip.

.. seealso:: :func:`blender_api:bpy.props.IntProperty`

This document doesn't go into details about using other property types.
However, the link above includes examples of more advanced property usage.


Menu Item
^^^^^^^^^

Add-ons can add to the user interface of existing panels, headers and menus defined in Python.

For this example we'll add to an existing menu.

.. figure:: /images/advanced_scripting_addon-tutorial_menu-id.png

   Menu Identifier.

To find the identifier of a menu, first enable *Python Tooltips* in the preferences.
Then you can hover your mouse over the menu item and the identifier is displayed.

The method used for adding a menu item is to append a draw function into an existing class::

   def menu_func(self, context):
       self.layout.operator(ObjectCursorArray.bl_idname)

   def register():
       bpy.utils.register_class(ObjectCursorArray)
       bpy.types.VIEW3D_MT_object.append(menu_func)

For docs on extending menus, see: :class:`blender_api:bpy.types.Menu`.


Keymap
^^^^^^

In Blender, add-ons have their own keymaps so as not to interfere with Blender's built-in keymaps.

In the example below, a new object mode :class:`blender_api:bpy.types.KeyMap` is added,
then a :class:`blender_api:bpy.types.KeyMapItem` is added to the keymap which references
our newly added operator, using :kbd:`Shift-Ctrl-T` as the key shortcut to activate it. ::

   # store keymaps here to access after registration
   addon_keymaps = []

   def register():

       # handle the keymap
       wm = bpy.context.window_manager
       km = wm.keyconfigs.addon.keymaps.new(name='Object Mode', space_type='EMPTY')

       kmi = km.keymap_items.new(ObjectCursorArray.bl_idname, 'T', 'PRESS', ctrl=True, shift=True)
       kmi.properties.total = 4

       addon_keymaps.append((km, kmi))


   def unregister():

       # handle the keymap
       for km, kmi in addon_keymaps:
           km.keymap_items.remove(kmi)
       addon_keymaps.clear()

Notice how the keymap item can have a ``total`` setting different than the default set by the operator,
this allows you to have multiple keys accessing the same operator with different settings.

.. note::

   While :kbd:`Shift-Ctrl-T` is not a default Blender key shortcut,
   it is hard to make sure add-ons will not overwrite each other's keymaps.
   Thus at least take care when assigning keys that they do not
   conflict with important functionality of Blender
   (see also `is key free add-on <https://projects.blender.org/extensions/development_iskeyfree>`__).

For API documentation on the functions listed above, see:

- :meth:`blender_api:bpy.types.KeyMaps.new`
- :class:`blender_api:bpy.types.KeyMap`
- :meth:`blender_api:bpy.types.KeyMapItems.new`
- :class:`blender_api:bpy.types.KeyMapItem`


Bringing It All Together
^^^^^^^^^^^^^^^^^^^^^^^^

.. code-block:: python

   bl_info = {
       "name": "Cursor Array",
       "blender": (2, 80, 0),
       "category": "Object",
   }

   import bpy


   class ObjectCursorArray(bpy.types.Operator):
       """Object Cursor Array"""
       bl_idname = "object.cursor_array"
       bl_label = "Cursor Array"
       bl_options = {'REGISTER', 'UNDO'}

       total: bpy.props.IntProperty(name="Steps", default=2, min=1, max=100)

       def execute(self, context):
           scene = context.scene
           cursor = scene.cursor.location
           obj = context.active_object

           for i in range(self.total):
               obj_new = obj.copy()
               scene.collection.objects.link(obj_new)

               factor = i / self.total
               obj_new.location = (obj.location * factor) + (cursor * (1.0 - factor))

           return {'FINISHED'}


   def menu_func(self, context):
       self.layout.operator(ObjectCursorArray.bl_idname)

   # store keymaps here to access after registration
   addon_keymaps = []


   def register():
       bpy.utils.register_class(ObjectCursorArray)
       bpy.types.VIEW3D_MT_object.append(menu_func)

       # handle the keymap
       wm = bpy.context.window_manager
       # Note that in background mode (no GUI available), keyconfigs are not available either,
       # so we have to check this to avoid nasty errors in background case.
       kc = wm.keyconfigs.addon
       if kc:
           km = wm.keyconfigs.addon.keymaps.new(name='Object Mode', space_type='EMPTY')
           kmi = km.keymap_items.new(ObjectCursorArray.bl_idname, 'T', 'PRESS', ctrl=True, shift=True)
           kmi.properties.total = 4
           addon_keymaps.append((km, kmi))

   def unregister():
       # Note: when unregistering, it's usually good practice to do it in reverse order you registered.
       # Can avoid strange issues like keymap still referring to operators already unregistered...
       # handle the keymap
       for km, kmi in addon_keymaps:
           km.keymap_items.remove(kmi)
       addon_keymaps.clear()

       bpy.utils.unregister_class(ObjectCursorArray)
       bpy.types.VIEW3D_MT_object.remove(menu_func)


   if __name__ == "__main__":
       register()

.. figure:: /images/advanced_scripting_addon-tutorial_in-menu.png

   In the menu.

Run the script (or save it and add it through the Preferences like before) and it will appear in the *Object* menu.

.. figure:: /images/advanced_scripting_addon-tutorial_op-prop.png

   Operator Property.

After selecting it from the menu, you can choose how many instances of the cube you want create.

.. note::

   Directly executing the script multiple times will add the menu each time too.
   While not useful behavior, there is nothing to worry about since add-ons will not
   register themselves multiple times when enabled through the Preferences.


Conclusions
===========

Add-ons can encapsulate certain functionality neatly for writing tools
to improve your workflow or for writing utilities for others to use.

While there are limits to what Python can do within Blender,
there is certainly a lot that can be achieved without having to dive into Blender's C/C++ code.

The example given in the tutorial is limited, but shows the Blender API used
for common tasks that you can expand on to write your own tools.


Further Reading
---------------

Blender comes with commented templates which are accessible from the Text editor's header.
If you have specific areas you want to see example code for, this is a good place to start.

Here are some sites you might like to check on after completing this tutorial.

- `Blender/Python API Overview <https://docs.blender.org/api/current/info_overview.html>`__ --
  For more background details on Blender/Python integration.
- `How to Think Like a Computer Scientist <https://runestone.academy/ns/books/published/thinkcspy/index.html>`__ --
  Great info for those who are still learning Python.
- `Blender Development <https://developer.blender.org/>`__ --
  Blender Development, general information and helpful links.
- `Blender Developer Forum <https://devtalk.blender.org/tag/python>`__ --
  Forum where people ask Python development questions.