fake-bpy-module 20240708__py3-none-any.whl → 20240709__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of fake-bpy-module might be problematic. Click here for more details.

Files changed (116) hide show
  1. _bpy_internal/__init__.pyi +1 -0
  2. _bpy_internal/addons/__init__.pyi +7 -0
  3. _bpy_internal/addons/cli/__init__.pyi +8 -0
  4. _bpy_internal/extensions/wheel_manager/__init__.pyi +1 -1
  5. _bpy_internal/freedesktop/__init__.pyi +1 -1
  6. addon_utils/__init__.pyi +6 -5
  7. bl_app_override/__init__.pyi +2 -1
  8. bl_app_template_utils/__init__.pyi +4 -4
  9. bl_console_utils/autocomplete/complete_calltip/__init__.pyi +1 -1
  10. bl_console_utils/autocomplete/complete_namespace/__init__.pyi +2 -2
  11. bl_console_utils/autocomplete/intellisense/__init__.pyi +3 -1
  12. bl_keymap_utils/io/__init__.pyi +4 -2
  13. bl_keymap_utils/keymap_from_toolbar/__init__.pyi +1 -1
  14. bl_keymap_utils/platform_helpers/__init__.pyi +1 -1
  15. bl_operators/__init__.pyi +1 -0
  16. bl_operators/add_mesh_torus/__init__.pyi +1 -1
  17. bl_operators/anim/__init__.pyi +8 -8
  18. bl_operators/assets/__init__.pyi +3 -3
  19. bl_operators/bone_selection_sets/__init__.pyi +2986 -0
  20. bl_operators/clip/__init__.pyi +11 -11
  21. bl_operators/connect_to_output/__init__.pyi +1 -1
  22. bl_operators/console/__init__.pyi +5 -5
  23. bl_operators/constraint/__init__.pyi +4 -4
  24. bl_operators/file/__init__.pyi +3 -3
  25. bl_operators/freestyle/__init__.pyi +4 -4
  26. bl_operators/geometry_nodes/__init__.pyi +4 -4
  27. bl_operators/image/__init__.pyi +4 -4
  28. bl_operators/image_as_planes/__init__.pyi +2 -2
  29. bl_operators/mesh/__init__.pyi +3 -3
  30. bl_operators/node/__init__.pyi +8 -8
  31. bl_operators/object/__init__.pyi +15 -15
  32. bl_operators/object_align/__init__.pyi +1 -1
  33. bl_operators/object_quick_effects/__init__.pyi +4 -4
  34. bl_operators/object_randomize_transform/__init__.pyi +1 -1
  35. bl_operators/presets/__init__.pyi +25 -23
  36. bl_operators/rigidbody/__init__.pyi +3 -3
  37. bl_operators/screen_play_rendered_anim/__init__.pyi +1 -1
  38. bl_operators/sequencer/__init__.pyi +5 -5
  39. bl_operators/spreadsheet/__init__.pyi +1 -1
  40. bl_operators/userpref/__init__.pyi +25 -25
  41. bl_operators/uvcalc_follow_active/__init__.pyi +1 -1
  42. bl_operators/uvcalc_lightmap/__init__.pyi +2 -2
  43. bl_operators/uvcalc_transform/__init__.pyi +2 -2
  44. bl_operators/vertexpaint_dirt/__init__.pyi +1 -1
  45. bl_operators/view3d/__init__.pyi +5 -5
  46. bl_operators/wm/__init__.pyi +46 -42
  47. bl_operators/world/__init__.pyi +1 -1
  48. bl_ui/__init__.pyi +2 -0
  49. bl_ui/anim/__init__.pyi +1 -0
  50. bl_ui/generic_ui_list/__init__.pyi +5 -4
  51. bl_ui/node_add_menu/__init__.pyi +2 -1
  52. bl_ui/node_add_menu_compositor/__init__.pyi +18 -0
  53. bl_ui/node_add_menu_geometry/__init__.pyi +49 -0
  54. bl_ui/node_add_menu_shader/__init__.pyi +10 -0
  55. bl_ui/node_add_menu_texture/__init__.pyi +9 -0
  56. bl_ui/properties_collection/__init__.pyi +1 -0
  57. bl_ui/properties_data_armature/__init__.pyi +1273 -0
  58. bl_ui/properties_data_camera/__init__.pyi +2 -0
  59. bl_ui/properties_data_curves/__init__.pyi +1 -0
  60. bl_ui/properties_data_gpencil/__init__.pyi +2 -0
  61. bl_ui/properties_data_grease_pencil/__init__.pyi +3 -0
  62. bl_ui/properties_data_mesh/__init__.pyi +4 -0
  63. bl_ui/properties_data_modifier/__init__.pyi +8 -1
  64. bl_ui/properties_data_pointcloud/__init__.pyi +1 -0
  65. bl_ui/properties_freestyle/__init__.pyi +1 -0
  66. bl_ui/properties_grease_pencil_common/__init__.pyi +13 -1
  67. bl_ui/properties_mask_common/__init__.pyi +6 -0
  68. bl_ui/properties_material/__init__.pyi +1 -0
  69. bl_ui/properties_material_gpencil/__init__.pyi +2 -0
  70. bl_ui/properties_object/__init__.pyi +1 -0
  71. bl_ui/properties_output/__init__.pyi +3 -0
  72. bl_ui/properties_paint_common/__init__.pyi +48 -17
  73. bl_ui/properties_particle/__init__.pyi +2 -0
  74. bl_ui/properties_physics_cloth/__init__.pyi +1 -0
  75. bl_ui/properties_physics_fluid/__init__.pyi +1 -0
  76. bl_ui/properties_render/__init__.pyi +2 -0
  77. bl_ui/properties_texture/__init__.pyi +1 -0
  78. bl_ui/properties_view_layer/__init__.pyi +1 -0
  79. bl_ui/space_clip/__init__.pyi +31 -0
  80. bl_ui/space_console/__init__.pyi +5 -0
  81. bl_ui/space_dopesheet/__init__.pyi +14 -0
  82. bl_ui/space_filebrowser/__init__.pyi +13 -0
  83. bl_ui/space_graph/__init__.pyi +16 -0
  84. bl_ui/space_image/__init__.pyi +313 -11
  85. bl_ui/space_info/__init__.pyi +5 -0
  86. bl_ui/space_nla/__init__.pyi +13 -0
  87. bl_ui/space_node/__init__.pyi +12 -0
  88. bl_ui/space_outliner/__init__.pyi +12 -0
  89. bl_ui/space_sequencer/__init__.pyi +34 -0
  90. bl_ui/space_text/__init__.pyi +12 -0
  91. bl_ui/space_time/__init__.pyi +4 -0
  92. bl_ui/space_toolsystem_common/__init__.pyi +7 -6
  93. bl_ui/space_toolsystem_toolbar/__init__.pyi +18 -13
  94. bl_ui/space_topbar/__init__.pyi +20 -1
  95. bl_ui/space_userpref/__init__.pyi +8 -0
  96. bl_ui/space_view3d/__init__.pyi +3477 -1372
  97. bl_ui/space_view3d_toolbar/__init__.pyi +1706 -880
  98. bl_ui/utils/__init__.pyi +1 -0
  99. bl_ui_utils/bug_report_url/__init__.pyi +1 -1
  100. bpy/ops/brush/__init__.pyi +185 -11
  101. bpy/ops/gpencil/__init__.pyi +0 -28
  102. bpy/ops/paint/__init__.pyi +0 -48
  103. bpy/ops/pose/__init__.pyi +176 -0
  104. bpy/ops/wm/__init__.pyi +18 -0
  105. bpy/path/__init__.pyi +6 -6
  106. bpy/types/__init__.pyi +2607 -1090
  107. bpy/utils/__init__.pyi +14 -12
  108. bpy_extras/anim_utils/__init__.pyi +3 -3
  109. bpy_extras/view3d_utils/__init__.pyi +2 -0
  110. {fake_bpy_module-20240708.dist-info → fake_bpy_module-20240709.dist-info}/METADATA +1 -1
  111. {fake_bpy_module-20240708.dist-info → fake_bpy_module-20240709.dist-info}/RECORD +116 -113
  112. rna_info/__init__.pyi +1 -0
  113. rna_prop_ui/__init__.pyi +2 -1
  114. rna_xml/__init__.pyi +2 -2
  115. {fake_bpy_module-20240708.dist-info → fake_bpy_module-20240709.dist-info}/WHEEL +0 -0
  116. {fake_bpy_module-20240708.dist-info → fake_bpy_module-20240709.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,2986 @@
1
+ import typing
2
+ import collections.abc
3
+ import typing_extensions
4
+ import bpy.types
5
+
6
+ GenericType1 = typing.TypeVar("GenericType1")
7
+ GenericType2 = typing.TypeVar("GenericType2")
8
+
9
+ class POSE_OT_selection_set_add(_PoseModeOnlyMixin):
10
+ """Operator only available for objects of type armature in pose mode."""
11
+
12
+ bl_description: typing.Any
13
+ bl_idname: typing.Any
14
+ bl_label: typing.Any
15
+ bl_options: typing.Any
16
+ bl_rna: typing.Any
17
+ id_data: typing.Any
18
+
19
+ def as_keywords(self, *, ignore=()):
20
+ """Return a copy of the properties as a dictionary
21
+
22
+ :param ignore:
23
+ """
24
+ ...
25
+
26
+ def as_pointer(self) -> int:
27
+ """Returns the memory address which holds a pointer to Blender's internal data
28
+
29
+ :return: int (memory address).
30
+ :rtype: int
31
+ """
32
+ ...
33
+
34
+ def bl_rna_get_subclass(self) -> bpy.types.Struct:
35
+ """
36
+
37
+ :return: The RNA type or default when not found.
38
+ :rtype: bpy.types.Struct
39
+ """
40
+ ...
41
+
42
+ def bl_rna_get_subclass_py(self) -> typing.Any:
43
+ """
44
+
45
+ :return: The class or default when not found.
46
+ :rtype: typing.Any
47
+ """
48
+ ...
49
+
50
+ def driver_add(self) -> bpy.types.FCurve:
51
+ """Adds driver(s) to the given property
52
+
53
+ :return: The driver(s) added.
54
+ :rtype: bpy.types.FCurve
55
+ """
56
+ ...
57
+
58
+ def driver_remove(self) -> bool:
59
+ """Remove driver(s) from the given property
60
+
61
+ :return: Success of driver removal.
62
+ :rtype: bool
63
+ """
64
+ ...
65
+
66
+ def execute(self, context):
67
+ """
68
+
69
+ :param context:
70
+ """
71
+ ...
72
+
73
+ def get(self):
74
+ """Returns the value of the custom property assigned to key or default
75
+ when not found (matches Python's dictionary function of the same name).
76
+
77
+ """
78
+ ...
79
+
80
+ def id_properties_clear(self):
81
+ """
82
+
83
+ :return: Remove the parent group for an RNA struct's custom IDProperties.
84
+ """
85
+ ...
86
+
87
+ def id_properties_ensure(self):
88
+ """
89
+
90
+ :return: the parent group for an RNA struct's custom IDProperties.
91
+ """
92
+ ...
93
+
94
+ def id_properties_ui(self):
95
+ """
96
+
97
+ :return: Return an object used to manage an IDProperty's UI data.
98
+ """
99
+ ...
100
+
101
+ def is_property_hidden(self) -> bool:
102
+ """Check if a property is hidden.
103
+
104
+ :return: True when the property is hidden.
105
+ :rtype: bool
106
+ """
107
+ ...
108
+
109
+ def is_property_overridable_library(self) -> bool:
110
+ """Check if a property is overridable.
111
+
112
+ :return: True when the property is overridable.
113
+ :rtype: bool
114
+ """
115
+ ...
116
+
117
+ def is_property_readonly(self) -> bool:
118
+ """Check if a property is readonly.
119
+
120
+ :return: True when the property is readonly (not writable).
121
+ :rtype: bool
122
+ """
123
+ ...
124
+
125
+ def is_property_set(self) -> bool:
126
+ """Check if a property is set, use for testing operator properties.
127
+
128
+ :return: True when the property has been set.
129
+ :rtype: bool
130
+ """
131
+ ...
132
+
133
+ def items(self):
134
+ """Returns the items of this objects custom properties (matches Python's
135
+ dictionary function of the same name).
136
+
137
+ :return: custom property key, value pairs.
138
+ """
139
+ ...
140
+
141
+ def keyframe_delete(self) -> bool:
142
+ """Remove a keyframe from this properties fcurve.
143
+
144
+ :return: Success of keyframe deletion.
145
+ :rtype: bool
146
+ """
147
+ ...
148
+
149
+ def keyframe_insert(self) -> bool:
150
+ """Insert a keyframe on the property given, adding fcurves and animation data when necessary.
151
+
152
+ :return: Success of keyframe insertion.
153
+ :rtype: bool
154
+ """
155
+ ...
156
+
157
+ def keys(self):
158
+ """Returns the keys of this objects custom properties (matches Python's
159
+ dictionary function of the same name).
160
+
161
+ :return: custom property keys.
162
+ """
163
+ ...
164
+
165
+ def path_from_id(self) -> str:
166
+ """Returns the data path from the ID to this object (string).
167
+
168
+ :return: The path from `bpy.types.bpy_struct.id_data`
169
+ to this struct and property (when given).
170
+ :rtype: str
171
+ """
172
+ ...
173
+
174
+ def path_resolve(self):
175
+ """Returns the property from the path, raise an exception when not found."""
176
+ ...
177
+
178
+ def poll(self, context):
179
+ """
180
+
181
+ :param context:
182
+ """
183
+ ...
184
+
185
+ def poll_message_set(self):
186
+ """Set the message to show in the tool-tip when poll fails.When message is callable, additional user defined positional arguments are passed to the message function."""
187
+ ...
188
+
189
+ def pop(self):
190
+ """Remove and return the value of the custom property assigned to key or default
191
+ when not found (matches Python's dictionary function of the same name).
192
+
193
+ """
194
+ ...
195
+
196
+ def property_overridable_library_set(self) -> bool:
197
+ """Define a property as overridable or not (only for custom properties!).
198
+
199
+ :return: True when the overridable status of the property was successfully set.
200
+ :rtype: bool
201
+ """
202
+ ...
203
+
204
+ def property_unset(self):
205
+ """Unset a property, will use default value afterward."""
206
+ ...
207
+
208
+ def type_recast(self):
209
+ """Return a new instance, this is needed because types
210
+ such as textures can be changed at runtime.
211
+
212
+ :return: a new instance of this object with the type initialized again.
213
+ """
214
+ ...
215
+
216
+ def values(self):
217
+ """Returns the values of this objects custom properties (matches Python's
218
+ dictionary function of the same name).
219
+
220
+ :return: custom property values.
221
+ """
222
+ ...
223
+
224
+ class POSE_OT_selection_set_add_and_assign(_PoseModeOnlyMixin):
225
+ """Operator only available for objects of type armature in pose mode."""
226
+
227
+ bl_description: typing.Any
228
+ bl_idname: typing.Any
229
+ bl_label: typing.Any
230
+ bl_options: typing.Any
231
+ bl_rna: typing.Any
232
+ id_data: typing.Any
233
+
234
+ def as_keywords(self, *, ignore=()):
235
+ """Return a copy of the properties as a dictionary
236
+
237
+ :param ignore:
238
+ """
239
+ ...
240
+
241
+ def as_pointer(self) -> int:
242
+ """Returns the memory address which holds a pointer to Blender's internal data
243
+
244
+ :return: int (memory address).
245
+ :rtype: int
246
+ """
247
+ ...
248
+
249
+ def bl_rna_get_subclass(self) -> bpy.types.Struct:
250
+ """
251
+
252
+ :return: The RNA type or default when not found.
253
+ :rtype: bpy.types.Struct
254
+ """
255
+ ...
256
+
257
+ def bl_rna_get_subclass_py(self) -> typing.Any:
258
+ """
259
+
260
+ :return: The class or default when not found.
261
+ :rtype: typing.Any
262
+ """
263
+ ...
264
+
265
+ def driver_add(self) -> bpy.types.FCurve:
266
+ """Adds driver(s) to the given property
267
+
268
+ :return: The driver(s) added.
269
+ :rtype: bpy.types.FCurve
270
+ """
271
+ ...
272
+
273
+ def driver_remove(self) -> bool:
274
+ """Remove driver(s) from the given property
275
+
276
+ :return: Success of driver removal.
277
+ :rtype: bool
278
+ """
279
+ ...
280
+
281
+ def execute(self, context):
282
+ """
283
+
284
+ :param context:
285
+ """
286
+ ...
287
+
288
+ def get(self):
289
+ """Returns the value of the custom property assigned to key or default
290
+ when not found (matches Python's dictionary function of the same name).
291
+
292
+ """
293
+ ...
294
+
295
+ def id_properties_clear(self):
296
+ """
297
+
298
+ :return: Remove the parent group for an RNA struct's custom IDProperties.
299
+ """
300
+ ...
301
+
302
+ def id_properties_ensure(self):
303
+ """
304
+
305
+ :return: the parent group for an RNA struct's custom IDProperties.
306
+ """
307
+ ...
308
+
309
+ def id_properties_ui(self):
310
+ """
311
+
312
+ :return: Return an object used to manage an IDProperty's UI data.
313
+ """
314
+ ...
315
+
316
+ def is_property_hidden(self) -> bool:
317
+ """Check if a property is hidden.
318
+
319
+ :return: True when the property is hidden.
320
+ :rtype: bool
321
+ """
322
+ ...
323
+
324
+ def is_property_overridable_library(self) -> bool:
325
+ """Check if a property is overridable.
326
+
327
+ :return: True when the property is overridable.
328
+ :rtype: bool
329
+ """
330
+ ...
331
+
332
+ def is_property_readonly(self) -> bool:
333
+ """Check if a property is readonly.
334
+
335
+ :return: True when the property is readonly (not writable).
336
+ :rtype: bool
337
+ """
338
+ ...
339
+
340
+ def is_property_set(self) -> bool:
341
+ """Check if a property is set, use for testing operator properties.
342
+
343
+ :return: True when the property has been set.
344
+ :rtype: bool
345
+ """
346
+ ...
347
+
348
+ def items(self):
349
+ """Returns the items of this objects custom properties (matches Python's
350
+ dictionary function of the same name).
351
+
352
+ :return: custom property key, value pairs.
353
+ """
354
+ ...
355
+
356
+ def keyframe_delete(self) -> bool:
357
+ """Remove a keyframe from this properties fcurve.
358
+
359
+ :return: Success of keyframe deletion.
360
+ :rtype: bool
361
+ """
362
+ ...
363
+
364
+ def keyframe_insert(self) -> bool:
365
+ """Insert a keyframe on the property given, adding fcurves and animation data when necessary.
366
+
367
+ :return: Success of keyframe insertion.
368
+ :rtype: bool
369
+ """
370
+ ...
371
+
372
+ def keys(self):
373
+ """Returns the keys of this objects custom properties (matches Python's
374
+ dictionary function of the same name).
375
+
376
+ :return: custom property keys.
377
+ """
378
+ ...
379
+
380
+ def path_from_id(self) -> str:
381
+ """Returns the data path from the ID to this object (string).
382
+
383
+ :return: The path from `bpy.types.bpy_struct.id_data`
384
+ to this struct and property (when given).
385
+ :rtype: str
386
+ """
387
+ ...
388
+
389
+ def path_resolve(self):
390
+ """Returns the property from the path, raise an exception when not found."""
391
+ ...
392
+
393
+ def poll(self, context):
394
+ """
395
+
396
+ :param context:
397
+ """
398
+ ...
399
+
400
+ def poll_message_set(self):
401
+ """Set the message to show in the tool-tip when poll fails.When message is callable, additional user defined positional arguments are passed to the message function."""
402
+ ...
403
+
404
+ def pop(self):
405
+ """Remove and return the value of the custom property assigned to key or default
406
+ when not found (matches Python's dictionary function of the same name).
407
+
408
+ """
409
+ ...
410
+
411
+ def property_overridable_library_set(self) -> bool:
412
+ """Define a property as overridable or not (only for custom properties!).
413
+
414
+ :return: True when the overridable status of the property was successfully set.
415
+ :rtype: bool
416
+ """
417
+ ...
418
+
419
+ def property_unset(self):
420
+ """Unset a property, will use default value afterward."""
421
+ ...
422
+
423
+ def type_recast(self):
424
+ """Return a new instance, this is needed because types
425
+ such as textures can be changed at runtime.
426
+
427
+ :return: a new instance of this object with the type initialized again.
428
+ """
429
+ ...
430
+
431
+ def values(self):
432
+ """Returns the values of this objects custom properties (matches Python's
433
+ dictionary function of the same name).
434
+
435
+ :return: custom property values.
436
+ """
437
+ ...
438
+
439
+ class POSE_OT_selection_set_assign(_PoseModeOnlyMixin):
440
+ """Operator only available for objects of type armature in pose mode."""
441
+
442
+ bl_description: typing.Any
443
+ bl_idname: typing.Any
444
+ bl_label: typing.Any
445
+ bl_options: typing.Any
446
+ bl_rna: typing.Any
447
+ id_data: typing.Any
448
+
449
+ def as_keywords(self, *, ignore=()):
450
+ """Return a copy of the properties as a dictionary
451
+
452
+ :param ignore:
453
+ """
454
+ ...
455
+
456
+ def as_pointer(self) -> int:
457
+ """Returns the memory address which holds a pointer to Blender's internal data
458
+
459
+ :return: int (memory address).
460
+ :rtype: int
461
+ """
462
+ ...
463
+
464
+ def bl_rna_get_subclass(self) -> bpy.types.Struct:
465
+ """
466
+
467
+ :return: The RNA type or default when not found.
468
+ :rtype: bpy.types.Struct
469
+ """
470
+ ...
471
+
472
+ def bl_rna_get_subclass_py(self) -> typing.Any:
473
+ """
474
+
475
+ :return: The class or default when not found.
476
+ :rtype: typing.Any
477
+ """
478
+ ...
479
+
480
+ def driver_add(self) -> bpy.types.FCurve:
481
+ """Adds driver(s) to the given property
482
+
483
+ :return: The driver(s) added.
484
+ :rtype: bpy.types.FCurve
485
+ """
486
+ ...
487
+
488
+ def driver_remove(self) -> bool:
489
+ """Remove driver(s) from the given property
490
+
491
+ :return: Success of driver removal.
492
+ :rtype: bool
493
+ """
494
+ ...
495
+
496
+ def execute(self, context):
497
+ """
498
+
499
+ :param context:
500
+ """
501
+ ...
502
+
503
+ def get(self):
504
+ """Returns the value of the custom property assigned to key or default
505
+ when not found (matches Python's dictionary function of the same name).
506
+
507
+ """
508
+ ...
509
+
510
+ def id_properties_clear(self):
511
+ """
512
+
513
+ :return: Remove the parent group for an RNA struct's custom IDProperties.
514
+ """
515
+ ...
516
+
517
+ def id_properties_ensure(self):
518
+ """
519
+
520
+ :return: the parent group for an RNA struct's custom IDProperties.
521
+ """
522
+ ...
523
+
524
+ def id_properties_ui(self):
525
+ """
526
+
527
+ :return: Return an object used to manage an IDProperty's UI data.
528
+ """
529
+ ...
530
+
531
+ def invoke(self, context, event):
532
+ """
533
+
534
+ :param context:
535
+ :param event:
536
+ """
537
+ ...
538
+
539
+ def is_property_hidden(self) -> bool:
540
+ """Check if a property is hidden.
541
+
542
+ :return: True when the property is hidden.
543
+ :rtype: bool
544
+ """
545
+ ...
546
+
547
+ def is_property_overridable_library(self) -> bool:
548
+ """Check if a property is overridable.
549
+
550
+ :return: True when the property is overridable.
551
+ :rtype: bool
552
+ """
553
+ ...
554
+
555
+ def is_property_readonly(self) -> bool:
556
+ """Check if a property is readonly.
557
+
558
+ :return: True when the property is readonly (not writable).
559
+ :rtype: bool
560
+ """
561
+ ...
562
+
563
+ def is_property_set(self) -> bool:
564
+ """Check if a property is set, use for testing operator properties.
565
+
566
+ :return: True when the property has been set.
567
+ :rtype: bool
568
+ """
569
+ ...
570
+
571
+ def items(self):
572
+ """Returns the items of this objects custom properties (matches Python's
573
+ dictionary function of the same name).
574
+
575
+ :return: custom property key, value pairs.
576
+ """
577
+ ...
578
+
579
+ def keyframe_delete(self) -> bool:
580
+ """Remove a keyframe from this properties fcurve.
581
+
582
+ :return: Success of keyframe deletion.
583
+ :rtype: bool
584
+ """
585
+ ...
586
+
587
+ def keyframe_insert(self) -> bool:
588
+ """Insert a keyframe on the property given, adding fcurves and animation data when necessary.
589
+
590
+ :return: Success of keyframe insertion.
591
+ :rtype: bool
592
+ """
593
+ ...
594
+
595
+ def keys(self):
596
+ """Returns the keys of this objects custom properties (matches Python's
597
+ dictionary function of the same name).
598
+
599
+ :return: custom property keys.
600
+ """
601
+ ...
602
+
603
+ def path_from_id(self) -> str:
604
+ """Returns the data path from the ID to this object (string).
605
+
606
+ :return: The path from `bpy.types.bpy_struct.id_data`
607
+ to this struct and property (when given).
608
+ :rtype: str
609
+ """
610
+ ...
611
+
612
+ def path_resolve(self):
613
+ """Returns the property from the path, raise an exception when not found."""
614
+ ...
615
+
616
+ def poll(self, context):
617
+ """
618
+
619
+ :param context:
620
+ """
621
+ ...
622
+
623
+ def poll_message_set(self):
624
+ """Set the message to show in the tool-tip when poll fails.When message is callable, additional user defined positional arguments are passed to the message function."""
625
+ ...
626
+
627
+ def pop(self):
628
+ """Remove and return the value of the custom property assigned to key or default
629
+ when not found (matches Python's dictionary function of the same name).
630
+
631
+ """
632
+ ...
633
+
634
+ def property_overridable_library_set(self) -> bool:
635
+ """Define a property as overridable or not (only for custom properties!).
636
+
637
+ :return: True when the overridable status of the property was successfully set.
638
+ :rtype: bool
639
+ """
640
+ ...
641
+
642
+ def property_unset(self):
643
+ """Unset a property, will use default value afterward."""
644
+ ...
645
+
646
+ def type_recast(self):
647
+ """Return a new instance, this is needed because types
648
+ such as textures can be changed at runtime.
649
+
650
+ :return: a new instance of this object with the type initialized again.
651
+ """
652
+ ...
653
+
654
+ def values(self):
655
+ """Returns the values of this objects custom properties (matches Python's
656
+ dictionary function of the same name).
657
+
658
+ :return: custom property values.
659
+ """
660
+ ...
661
+
662
+ class POSE_OT_selection_set_copy(_PoseModeOnlyMixin, _NeedSelSetMixin):
663
+ """Operator only available if the armature has a selected selection set."""
664
+
665
+ bl_description: typing.Any
666
+ bl_idname: typing.Any
667
+ bl_label: typing.Any
668
+ bl_options: typing.Any
669
+ bl_rna: typing.Any
670
+ id_data: typing.Any
671
+
672
+ def as_keywords(self, *, ignore=()):
673
+ """Return a copy of the properties as a dictionary
674
+
675
+ :param ignore:
676
+ """
677
+ ...
678
+
679
+ def as_pointer(self) -> int:
680
+ """Returns the memory address which holds a pointer to Blender's internal data
681
+
682
+ :return: int (memory address).
683
+ :rtype: int
684
+ """
685
+ ...
686
+
687
+ def bl_rna_get_subclass(self) -> bpy.types.Struct:
688
+ """
689
+
690
+ :return: The RNA type or default when not found.
691
+ :rtype: bpy.types.Struct
692
+ """
693
+ ...
694
+
695
+ def bl_rna_get_subclass_py(self) -> typing.Any:
696
+ """
697
+
698
+ :return: The class or default when not found.
699
+ :rtype: typing.Any
700
+ """
701
+ ...
702
+
703
+ def driver_add(self) -> bpy.types.FCurve:
704
+ """Adds driver(s) to the given property
705
+
706
+ :return: The driver(s) added.
707
+ :rtype: bpy.types.FCurve
708
+ """
709
+ ...
710
+
711
+ def driver_remove(self) -> bool:
712
+ """Remove driver(s) from the given property
713
+
714
+ :return: Success of driver removal.
715
+ :rtype: bool
716
+ """
717
+ ...
718
+
719
+ def execute(self, context):
720
+ """
721
+
722
+ :param context:
723
+ """
724
+ ...
725
+
726
+ def get(self):
727
+ """Returns the value of the custom property assigned to key or default
728
+ when not found (matches Python's dictionary function of the same name).
729
+
730
+ """
731
+ ...
732
+
733
+ def id_properties_clear(self):
734
+ """
735
+
736
+ :return: Remove the parent group for an RNA struct's custom IDProperties.
737
+ """
738
+ ...
739
+
740
+ def id_properties_ensure(self):
741
+ """
742
+
743
+ :return: the parent group for an RNA struct's custom IDProperties.
744
+ """
745
+ ...
746
+
747
+ def id_properties_ui(self):
748
+ """
749
+
750
+ :return: Return an object used to manage an IDProperty's UI data.
751
+ """
752
+ ...
753
+
754
+ def is_property_hidden(self) -> bool:
755
+ """Check if a property is hidden.
756
+
757
+ :return: True when the property is hidden.
758
+ :rtype: bool
759
+ """
760
+ ...
761
+
762
+ def is_property_overridable_library(self) -> bool:
763
+ """Check if a property is overridable.
764
+
765
+ :return: True when the property is overridable.
766
+ :rtype: bool
767
+ """
768
+ ...
769
+
770
+ def is_property_readonly(self) -> bool:
771
+ """Check if a property is readonly.
772
+
773
+ :return: True when the property is readonly (not writable).
774
+ :rtype: bool
775
+ """
776
+ ...
777
+
778
+ def is_property_set(self) -> bool:
779
+ """Check if a property is set, use for testing operator properties.
780
+
781
+ :return: True when the property has been set.
782
+ :rtype: bool
783
+ """
784
+ ...
785
+
786
+ def items(self):
787
+ """Returns the items of this objects custom properties (matches Python's
788
+ dictionary function of the same name).
789
+
790
+ :return: custom property key, value pairs.
791
+ """
792
+ ...
793
+
794
+ def keyframe_delete(self) -> bool:
795
+ """Remove a keyframe from this properties fcurve.
796
+
797
+ :return: Success of keyframe deletion.
798
+ :rtype: bool
799
+ """
800
+ ...
801
+
802
+ def keyframe_insert(self) -> bool:
803
+ """Insert a keyframe on the property given, adding fcurves and animation data when necessary.
804
+
805
+ :return: Success of keyframe insertion.
806
+ :rtype: bool
807
+ """
808
+ ...
809
+
810
+ def keys(self):
811
+ """Returns the keys of this objects custom properties (matches Python's
812
+ dictionary function of the same name).
813
+
814
+ :return: custom property keys.
815
+ """
816
+ ...
817
+
818
+ def path_from_id(self) -> str:
819
+ """Returns the data path from the ID to this object (string).
820
+
821
+ :return: The path from `bpy.types.bpy_struct.id_data`
822
+ to this struct and property (when given).
823
+ :rtype: str
824
+ """
825
+ ...
826
+
827
+ def path_resolve(self):
828
+ """Returns the property from the path, raise an exception when not found."""
829
+ ...
830
+
831
+ def poll(self, context):
832
+ """
833
+
834
+ :param context:
835
+ """
836
+ ...
837
+
838
+ def poll_message_set(self):
839
+ """Set the message to show in the tool-tip when poll fails.When message is callable, additional user defined positional arguments are passed to the message function."""
840
+ ...
841
+
842
+ def pop(self):
843
+ """Remove and return the value of the custom property assigned to key or default
844
+ when not found (matches Python's dictionary function of the same name).
845
+
846
+ """
847
+ ...
848
+
849
+ def property_overridable_library_set(self) -> bool:
850
+ """Define a property as overridable or not (only for custom properties!).
851
+
852
+ :return: True when the overridable status of the property was successfully set.
853
+ :rtype: bool
854
+ """
855
+ ...
856
+
857
+ def property_unset(self):
858
+ """Unset a property, will use default value afterward."""
859
+ ...
860
+
861
+ def type_recast(self):
862
+ """Return a new instance, this is needed because types
863
+ such as textures can be changed at runtime.
864
+
865
+ :return: a new instance of this object with the type initialized again.
866
+ """
867
+ ...
868
+
869
+ def values(self):
870
+ """Returns the values of this objects custom properties (matches Python's
871
+ dictionary function of the same name).
872
+
873
+ :return: custom property values.
874
+ """
875
+ ...
876
+
877
+ class POSE_OT_selection_set_delete_all(_PoseModeOnlyMixin):
878
+ """Operator only available for objects of type armature in pose mode."""
879
+
880
+ bl_description: typing.Any
881
+ bl_idname: typing.Any
882
+ bl_label: typing.Any
883
+ bl_options: typing.Any
884
+ bl_rna: typing.Any
885
+ id_data: typing.Any
886
+
887
+ def as_keywords(self, *, ignore=()):
888
+ """Return a copy of the properties as a dictionary
889
+
890
+ :param ignore:
891
+ """
892
+ ...
893
+
894
+ def as_pointer(self) -> int:
895
+ """Returns the memory address which holds a pointer to Blender's internal data
896
+
897
+ :return: int (memory address).
898
+ :rtype: int
899
+ """
900
+ ...
901
+
902
+ def bl_rna_get_subclass(self) -> bpy.types.Struct:
903
+ """
904
+
905
+ :return: The RNA type or default when not found.
906
+ :rtype: bpy.types.Struct
907
+ """
908
+ ...
909
+
910
+ def bl_rna_get_subclass_py(self) -> typing.Any:
911
+ """
912
+
913
+ :return: The class or default when not found.
914
+ :rtype: typing.Any
915
+ """
916
+ ...
917
+
918
+ def driver_add(self) -> bpy.types.FCurve:
919
+ """Adds driver(s) to the given property
920
+
921
+ :return: The driver(s) added.
922
+ :rtype: bpy.types.FCurve
923
+ """
924
+ ...
925
+
926
+ def driver_remove(self) -> bool:
927
+ """Remove driver(s) from the given property
928
+
929
+ :return: Success of driver removal.
930
+ :rtype: bool
931
+ """
932
+ ...
933
+
934
+ def execute(self, context):
935
+ """
936
+
937
+ :param context:
938
+ """
939
+ ...
940
+
941
+ def get(self):
942
+ """Returns the value of the custom property assigned to key or default
943
+ when not found (matches Python's dictionary function of the same name).
944
+
945
+ """
946
+ ...
947
+
948
+ def id_properties_clear(self):
949
+ """
950
+
951
+ :return: Remove the parent group for an RNA struct's custom IDProperties.
952
+ """
953
+ ...
954
+
955
+ def id_properties_ensure(self):
956
+ """
957
+
958
+ :return: the parent group for an RNA struct's custom IDProperties.
959
+ """
960
+ ...
961
+
962
+ def id_properties_ui(self):
963
+ """
964
+
965
+ :return: Return an object used to manage an IDProperty's UI data.
966
+ """
967
+ ...
968
+
969
+ def is_property_hidden(self) -> bool:
970
+ """Check if a property is hidden.
971
+
972
+ :return: True when the property is hidden.
973
+ :rtype: bool
974
+ """
975
+ ...
976
+
977
+ def is_property_overridable_library(self) -> bool:
978
+ """Check if a property is overridable.
979
+
980
+ :return: True when the property is overridable.
981
+ :rtype: bool
982
+ """
983
+ ...
984
+
985
+ def is_property_readonly(self) -> bool:
986
+ """Check if a property is readonly.
987
+
988
+ :return: True when the property is readonly (not writable).
989
+ :rtype: bool
990
+ """
991
+ ...
992
+
993
+ def is_property_set(self) -> bool:
994
+ """Check if a property is set, use for testing operator properties.
995
+
996
+ :return: True when the property has been set.
997
+ :rtype: bool
998
+ """
999
+ ...
1000
+
1001
+ def items(self):
1002
+ """Returns the items of this objects custom properties (matches Python's
1003
+ dictionary function of the same name).
1004
+
1005
+ :return: custom property key, value pairs.
1006
+ """
1007
+ ...
1008
+
1009
+ def keyframe_delete(self) -> bool:
1010
+ """Remove a keyframe from this properties fcurve.
1011
+
1012
+ :return: Success of keyframe deletion.
1013
+ :rtype: bool
1014
+ """
1015
+ ...
1016
+
1017
+ def keyframe_insert(self) -> bool:
1018
+ """Insert a keyframe on the property given, adding fcurves and animation data when necessary.
1019
+
1020
+ :return: Success of keyframe insertion.
1021
+ :rtype: bool
1022
+ """
1023
+ ...
1024
+
1025
+ def keys(self):
1026
+ """Returns the keys of this objects custom properties (matches Python's
1027
+ dictionary function of the same name).
1028
+
1029
+ :return: custom property keys.
1030
+ """
1031
+ ...
1032
+
1033
+ def path_from_id(self) -> str:
1034
+ """Returns the data path from the ID to this object (string).
1035
+
1036
+ :return: The path from `bpy.types.bpy_struct.id_data`
1037
+ to this struct and property (when given).
1038
+ :rtype: str
1039
+ """
1040
+ ...
1041
+
1042
+ def path_resolve(self):
1043
+ """Returns the property from the path, raise an exception when not found."""
1044
+ ...
1045
+
1046
+ def poll(self, context):
1047
+ """
1048
+
1049
+ :param context:
1050
+ """
1051
+ ...
1052
+
1053
+ def poll_message_set(self):
1054
+ """Set the message to show in the tool-tip when poll fails.When message is callable, additional user defined positional arguments are passed to the message function."""
1055
+ ...
1056
+
1057
+ def pop(self):
1058
+ """Remove and return the value of the custom property assigned to key or default
1059
+ when not found (matches Python's dictionary function of the same name).
1060
+
1061
+ """
1062
+ ...
1063
+
1064
+ def property_overridable_library_set(self) -> bool:
1065
+ """Define a property as overridable or not (only for custom properties!).
1066
+
1067
+ :return: True when the overridable status of the property was successfully set.
1068
+ :rtype: bool
1069
+ """
1070
+ ...
1071
+
1072
+ def property_unset(self):
1073
+ """Unset a property, will use default value afterward."""
1074
+ ...
1075
+
1076
+ def type_recast(self):
1077
+ """Return a new instance, this is needed because types
1078
+ such as textures can be changed at runtime.
1079
+
1080
+ :return: a new instance of this object with the type initialized again.
1081
+ """
1082
+ ...
1083
+
1084
+ def values(self):
1085
+ """Returns the values of this objects custom properties (matches Python's
1086
+ dictionary function of the same name).
1087
+
1088
+ :return: custom property values.
1089
+ """
1090
+ ...
1091
+
1092
+ class POSE_OT_selection_set_deselect(_PoseModeOnlyMixin, _NeedSelSetMixin):
1093
+ """Operator only available if the armature has a selected selection set."""
1094
+
1095
+ bl_description: typing.Any
1096
+ bl_idname: typing.Any
1097
+ bl_label: typing.Any
1098
+ bl_options: typing.Any
1099
+ bl_rna: typing.Any
1100
+ id_data: typing.Any
1101
+
1102
+ def as_keywords(self, *, ignore=()):
1103
+ """Return a copy of the properties as a dictionary
1104
+
1105
+ :param ignore:
1106
+ """
1107
+ ...
1108
+
1109
+ def as_pointer(self) -> int:
1110
+ """Returns the memory address which holds a pointer to Blender's internal data
1111
+
1112
+ :return: int (memory address).
1113
+ :rtype: int
1114
+ """
1115
+ ...
1116
+
1117
+ def bl_rna_get_subclass(self) -> bpy.types.Struct:
1118
+ """
1119
+
1120
+ :return: The RNA type or default when not found.
1121
+ :rtype: bpy.types.Struct
1122
+ """
1123
+ ...
1124
+
1125
+ def bl_rna_get_subclass_py(self) -> typing.Any:
1126
+ """
1127
+
1128
+ :return: The class or default when not found.
1129
+ :rtype: typing.Any
1130
+ """
1131
+ ...
1132
+
1133
+ def driver_add(self) -> bpy.types.FCurve:
1134
+ """Adds driver(s) to the given property
1135
+
1136
+ :return: The driver(s) added.
1137
+ :rtype: bpy.types.FCurve
1138
+ """
1139
+ ...
1140
+
1141
+ def driver_remove(self) -> bool:
1142
+ """Remove driver(s) from the given property
1143
+
1144
+ :return: Success of driver removal.
1145
+ :rtype: bool
1146
+ """
1147
+ ...
1148
+
1149
+ def execute(self, context):
1150
+ """
1151
+
1152
+ :param context:
1153
+ """
1154
+ ...
1155
+
1156
+ def get(self):
1157
+ """Returns the value of the custom property assigned to key or default
1158
+ when not found (matches Python's dictionary function of the same name).
1159
+
1160
+ """
1161
+ ...
1162
+
1163
+ def id_properties_clear(self):
1164
+ """
1165
+
1166
+ :return: Remove the parent group for an RNA struct's custom IDProperties.
1167
+ """
1168
+ ...
1169
+
1170
+ def id_properties_ensure(self):
1171
+ """
1172
+
1173
+ :return: the parent group for an RNA struct's custom IDProperties.
1174
+ """
1175
+ ...
1176
+
1177
+ def id_properties_ui(self):
1178
+ """
1179
+
1180
+ :return: Return an object used to manage an IDProperty's UI data.
1181
+ """
1182
+ ...
1183
+
1184
+ def is_property_hidden(self) -> bool:
1185
+ """Check if a property is hidden.
1186
+
1187
+ :return: True when the property is hidden.
1188
+ :rtype: bool
1189
+ """
1190
+ ...
1191
+
1192
+ def is_property_overridable_library(self) -> bool:
1193
+ """Check if a property is overridable.
1194
+
1195
+ :return: True when the property is overridable.
1196
+ :rtype: bool
1197
+ """
1198
+ ...
1199
+
1200
+ def is_property_readonly(self) -> bool:
1201
+ """Check if a property is readonly.
1202
+
1203
+ :return: True when the property is readonly (not writable).
1204
+ :rtype: bool
1205
+ """
1206
+ ...
1207
+
1208
+ def is_property_set(self) -> bool:
1209
+ """Check if a property is set, use for testing operator properties.
1210
+
1211
+ :return: True when the property has been set.
1212
+ :rtype: bool
1213
+ """
1214
+ ...
1215
+
1216
+ def items(self):
1217
+ """Returns the items of this objects custom properties (matches Python's
1218
+ dictionary function of the same name).
1219
+
1220
+ :return: custom property key, value pairs.
1221
+ """
1222
+ ...
1223
+
1224
+ def keyframe_delete(self) -> bool:
1225
+ """Remove a keyframe from this properties fcurve.
1226
+
1227
+ :return: Success of keyframe deletion.
1228
+ :rtype: bool
1229
+ """
1230
+ ...
1231
+
1232
+ def keyframe_insert(self) -> bool:
1233
+ """Insert a keyframe on the property given, adding fcurves and animation data when necessary.
1234
+
1235
+ :return: Success of keyframe insertion.
1236
+ :rtype: bool
1237
+ """
1238
+ ...
1239
+
1240
+ def keys(self):
1241
+ """Returns the keys of this objects custom properties (matches Python's
1242
+ dictionary function of the same name).
1243
+
1244
+ :return: custom property keys.
1245
+ """
1246
+ ...
1247
+
1248
+ def path_from_id(self) -> str:
1249
+ """Returns the data path from the ID to this object (string).
1250
+
1251
+ :return: The path from `bpy.types.bpy_struct.id_data`
1252
+ to this struct and property (when given).
1253
+ :rtype: str
1254
+ """
1255
+ ...
1256
+
1257
+ def path_resolve(self):
1258
+ """Returns the property from the path, raise an exception when not found."""
1259
+ ...
1260
+
1261
+ def poll(self, context):
1262
+ """
1263
+
1264
+ :param context:
1265
+ """
1266
+ ...
1267
+
1268
+ def poll_message_set(self):
1269
+ """Set the message to show in the tool-tip when poll fails.When message is callable, additional user defined positional arguments are passed to the message function."""
1270
+ ...
1271
+
1272
+ def pop(self):
1273
+ """Remove and return the value of the custom property assigned to key or default
1274
+ when not found (matches Python's dictionary function of the same name).
1275
+
1276
+ """
1277
+ ...
1278
+
1279
+ def property_overridable_library_set(self) -> bool:
1280
+ """Define a property as overridable or not (only for custom properties!).
1281
+
1282
+ :return: True when the overridable status of the property was successfully set.
1283
+ :rtype: bool
1284
+ """
1285
+ ...
1286
+
1287
+ def property_unset(self):
1288
+ """Unset a property, will use default value afterward."""
1289
+ ...
1290
+
1291
+ def type_recast(self):
1292
+ """Return a new instance, this is needed because types
1293
+ such as textures can be changed at runtime.
1294
+
1295
+ :return: a new instance of this object with the type initialized again.
1296
+ """
1297
+ ...
1298
+
1299
+ def values(self):
1300
+ """Returns the values of this objects custom properties (matches Python's
1301
+ dictionary function of the same name).
1302
+
1303
+ :return: custom property values.
1304
+ """
1305
+ ...
1306
+
1307
+ class POSE_OT_selection_set_move(_PoseModeOnlyMixin, _NeedSelSetMixin):
1308
+ """Operator only available if the armature has a selected selection set."""
1309
+
1310
+ bl_description: typing.Any
1311
+ bl_idname: typing.Any
1312
+ bl_label: typing.Any
1313
+ bl_options: typing.Any
1314
+ bl_rna: typing.Any
1315
+ id_data: typing.Any
1316
+
1317
+ def as_keywords(self, *, ignore=()):
1318
+ """Return a copy of the properties as a dictionary
1319
+
1320
+ :param ignore:
1321
+ """
1322
+ ...
1323
+
1324
+ def as_pointer(self) -> int:
1325
+ """Returns the memory address which holds a pointer to Blender's internal data
1326
+
1327
+ :return: int (memory address).
1328
+ :rtype: int
1329
+ """
1330
+ ...
1331
+
1332
+ def bl_rna_get_subclass(self) -> bpy.types.Struct:
1333
+ """
1334
+
1335
+ :return: The RNA type or default when not found.
1336
+ :rtype: bpy.types.Struct
1337
+ """
1338
+ ...
1339
+
1340
+ def bl_rna_get_subclass_py(self) -> typing.Any:
1341
+ """
1342
+
1343
+ :return: The class or default when not found.
1344
+ :rtype: typing.Any
1345
+ """
1346
+ ...
1347
+
1348
+ def driver_add(self) -> bpy.types.FCurve:
1349
+ """Adds driver(s) to the given property
1350
+
1351
+ :return: The driver(s) added.
1352
+ :rtype: bpy.types.FCurve
1353
+ """
1354
+ ...
1355
+
1356
+ def driver_remove(self) -> bool:
1357
+ """Remove driver(s) from the given property
1358
+
1359
+ :return: Success of driver removal.
1360
+ :rtype: bool
1361
+ """
1362
+ ...
1363
+
1364
+ def execute(self, context):
1365
+ """
1366
+
1367
+ :param context:
1368
+ """
1369
+ ...
1370
+
1371
+ def get(self):
1372
+ """Returns the value of the custom property assigned to key or default
1373
+ when not found (matches Python's dictionary function of the same name).
1374
+
1375
+ """
1376
+ ...
1377
+
1378
+ def id_properties_clear(self):
1379
+ """
1380
+
1381
+ :return: Remove the parent group for an RNA struct's custom IDProperties.
1382
+ """
1383
+ ...
1384
+
1385
+ def id_properties_ensure(self):
1386
+ """
1387
+
1388
+ :return: the parent group for an RNA struct's custom IDProperties.
1389
+ """
1390
+ ...
1391
+
1392
+ def id_properties_ui(self):
1393
+ """
1394
+
1395
+ :return: Return an object used to manage an IDProperty's UI data.
1396
+ """
1397
+ ...
1398
+
1399
+ def is_property_hidden(self) -> bool:
1400
+ """Check if a property is hidden.
1401
+
1402
+ :return: True when the property is hidden.
1403
+ :rtype: bool
1404
+ """
1405
+ ...
1406
+
1407
+ def is_property_overridable_library(self) -> bool:
1408
+ """Check if a property is overridable.
1409
+
1410
+ :return: True when the property is overridable.
1411
+ :rtype: bool
1412
+ """
1413
+ ...
1414
+
1415
+ def is_property_readonly(self) -> bool:
1416
+ """Check if a property is readonly.
1417
+
1418
+ :return: True when the property is readonly (not writable).
1419
+ :rtype: bool
1420
+ """
1421
+ ...
1422
+
1423
+ def is_property_set(self) -> bool:
1424
+ """Check if a property is set, use for testing operator properties.
1425
+
1426
+ :return: True when the property has been set.
1427
+ :rtype: bool
1428
+ """
1429
+ ...
1430
+
1431
+ def items(self):
1432
+ """Returns the items of this objects custom properties (matches Python's
1433
+ dictionary function of the same name).
1434
+
1435
+ :return: custom property key, value pairs.
1436
+ """
1437
+ ...
1438
+
1439
+ def keyframe_delete(self) -> bool:
1440
+ """Remove a keyframe from this properties fcurve.
1441
+
1442
+ :return: Success of keyframe deletion.
1443
+ :rtype: bool
1444
+ """
1445
+ ...
1446
+
1447
+ def keyframe_insert(self) -> bool:
1448
+ """Insert a keyframe on the property given, adding fcurves and animation data when necessary.
1449
+
1450
+ :return: Success of keyframe insertion.
1451
+ :rtype: bool
1452
+ """
1453
+ ...
1454
+
1455
+ def keys(self):
1456
+ """Returns the keys of this objects custom properties (matches Python's
1457
+ dictionary function of the same name).
1458
+
1459
+ :return: custom property keys.
1460
+ """
1461
+ ...
1462
+
1463
+ def path_from_id(self) -> str:
1464
+ """Returns the data path from the ID to this object (string).
1465
+
1466
+ :return: The path from `bpy.types.bpy_struct.id_data`
1467
+ to this struct and property (when given).
1468
+ :rtype: str
1469
+ """
1470
+ ...
1471
+
1472
+ def path_resolve(self):
1473
+ """Returns the property from the path, raise an exception when not found."""
1474
+ ...
1475
+
1476
+ def poll(self, context):
1477
+ """
1478
+
1479
+ :param context:
1480
+ """
1481
+ ...
1482
+
1483
+ def poll_message_set(self):
1484
+ """Set the message to show in the tool-tip when poll fails.When message is callable, additional user defined positional arguments are passed to the message function."""
1485
+ ...
1486
+
1487
+ def pop(self):
1488
+ """Remove and return the value of the custom property assigned to key or default
1489
+ when not found (matches Python's dictionary function of the same name).
1490
+
1491
+ """
1492
+ ...
1493
+
1494
+ def property_overridable_library_set(self) -> bool:
1495
+ """Define a property as overridable or not (only for custom properties!).
1496
+
1497
+ :return: True when the overridable status of the property was successfully set.
1498
+ :rtype: bool
1499
+ """
1500
+ ...
1501
+
1502
+ def property_unset(self):
1503
+ """Unset a property, will use default value afterward."""
1504
+ ...
1505
+
1506
+ def type_recast(self):
1507
+ """Return a new instance, this is needed because types
1508
+ such as textures can be changed at runtime.
1509
+
1510
+ :return: a new instance of this object with the type initialized again.
1511
+ """
1512
+ ...
1513
+
1514
+ def values(self):
1515
+ """Returns the values of this objects custom properties (matches Python's
1516
+ dictionary function of the same name).
1517
+
1518
+ :return: custom property values.
1519
+ """
1520
+ ...
1521
+
1522
+ class POSE_OT_selection_set_paste(_PoseModeOnlyMixin):
1523
+ """Operator only available for objects of type armature in pose mode."""
1524
+
1525
+ bl_description: typing.Any
1526
+ bl_idname: typing.Any
1527
+ bl_label: typing.Any
1528
+ bl_options: typing.Any
1529
+ bl_rna: typing.Any
1530
+ id_data: typing.Any
1531
+
1532
+ def as_keywords(self, *, ignore=()):
1533
+ """Return a copy of the properties as a dictionary
1534
+
1535
+ :param ignore:
1536
+ """
1537
+ ...
1538
+
1539
+ def as_pointer(self) -> int:
1540
+ """Returns the memory address which holds a pointer to Blender's internal data
1541
+
1542
+ :return: int (memory address).
1543
+ :rtype: int
1544
+ """
1545
+ ...
1546
+
1547
+ def bl_rna_get_subclass(self) -> bpy.types.Struct:
1548
+ """
1549
+
1550
+ :return: The RNA type or default when not found.
1551
+ :rtype: bpy.types.Struct
1552
+ """
1553
+ ...
1554
+
1555
+ def bl_rna_get_subclass_py(self) -> typing.Any:
1556
+ """
1557
+
1558
+ :return: The class or default when not found.
1559
+ :rtype: typing.Any
1560
+ """
1561
+ ...
1562
+
1563
+ def driver_add(self) -> bpy.types.FCurve:
1564
+ """Adds driver(s) to the given property
1565
+
1566
+ :return: The driver(s) added.
1567
+ :rtype: bpy.types.FCurve
1568
+ """
1569
+ ...
1570
+
1571
+ def driver_remove(self) -> bool:
1572
+ """Remove driver(s) from the given property
1573
+
1574
+ :return: Success of driver removal.
1575
+ :rtype: bool
1576
+ """
1577
+ ...
1578
+
1579
+ def execute(self, context):
1580
+ """
1581
+
1582
+ :param context:
1583
+ """
1584
+ ...
1585
+
1586
+ def get(self):
1587
+ """Returns the value of the custom property assigned to key or default
1588
+ when not found (matches Python's dictionary function of the same name).
1589
+
1590
+ """
1591
+ ...
1592
+
1593
+ def id_properties_clear(self):
1594
+ """
1595
+
1596
+ :return: Remove the parent group for an RNA struct's custom IDProperties.
1597
+ """
1598
+ ...
1599
+
1600
+ def id_properties_ensure(self):
1601
+ """
1602
+
1603
+ :return: the parent group for an RNA struct's custom IDProperties.
1604
+ """
1605
+ ...
1606
+
1607
+ def id_properties_ui(self):
1608
+ """
1609
+
1610
+ :return: Return an object used to manage an IDProperty's UI data.
1611
+ """
1612
+ ...
1613
+
1614
+ def is_property_hidden(self) -> bool:
1615
+ """Check if a property is hidden.
1616
+
1617
+ :return: True when the property is hidden.
1618
+ :rtype: bool
1619
+ """
1620
+ ...
1621
+
1622
+ def is_property_overridable_library(self) -> bool:
1623
+ """Check if a property is overridable.
1624
+
1625
+ :return: True when the property is overridable.
1626
+ :rtype: bool
1627
+ """
1628
+ ...
1629
+
1630
+ def is_property_readonly(self) -> bool:
1631
+ """Check if a property is readonly.
1632
+
1633
+ :return: True when the property is readonly (not writable).
1634
+ :rtype: bool
1635
+ """
1636
+ ...
1637
+
1638
+ def is_property_set(self) -> bool:
1639
+ """Check if a property is set, use for testing operator properties.
1640
+
1641
+ :return: True when the property has been set.
1642
+ :rtype: bool
1643
+ """
1644
+ ...
1645
+
1646
+ def items(self):
1647
+ """Returns the items of this objects custom properties (matches Python's
1648
+ dictionary function of the same name).
1649
+
1650
+ :return: custom property key, value pairs.
1651
+ """
1652
+ ...
1653
+
1654
+ def keyframe_delete(self) -> bool:
1655
+ """Remove a keyframe from this properties fcurve.
1656
+
1657
+ :return: Success of keyframe deletion.
1658
+ :rtype: bool
1659
+ """
1660
+ ...
1661
+
1662
+ def keyframe_insert(self) -> bool:
1663
+ """Insert a keyframe on the property given, adding fcurves and animation data when necessary.
1664
+
1665
+ :return: Success of keyframe insertion.
1666
+ :rtype: bool
1667
+ """
1668
+ ...
1669
+
1670
+ def keys(self):
1671
+ """Returns the keys of this objects custom properties (matches Python's
1672
+ dictionary function of the same name).
1673
+
1674
+ :return: custom property keys.
1675
+ """
1676
+ ...
1677
+
1678
+ def path_from_id(self) -> str:
1679
+ """Returns the data path from the ID to this object (string).
1680
+
1681
+ :return: The path from `bpy.types.bpy_struct.id_data`
1682
+ to this struct and property (when given).
1683
+ :rtype: str
1684
+ """
1685
+ ...
1686
+
1687
+ def path_resolve(self):
1688
+ """Returns the property from the path, raise an exception when not found."""
1689
+ ...
1690
+
1691
+ def poll(self, context):
1692
+ """
1693
+
1694
+ :param context:
1695
+ """
1696
+ ...
1697
+
1698
+ def poll_message_set(self):
1699
+ """Set the message to show in the tool-tip when poll fails.When message is callable, additional user defined positional arguments are passed to the message function."""
1700
+ ...
1701
+
1702
+ def pop(self):
1703
+ """Remove and return the value of the custom property assigned to key or default
1704
+ when not found (matches Python's dictionary function of the same name).
1705
+
1706
+ """
1707
+ ...
1708
+
1709
+ def property_overridable_library_set(self) -> bool:
1710
+ """Define a property as overridable or not (only for custom properties!).
1711
+
1712
+ :return: True when the overridable status of the property was successfully set.
1713
+ :rtype: bool
1714
+ """
1715
+ ...
1716
+
1717
+ def property_unset(self):
1718
+ """Unset a property, will use default value afterward."""
1719
+ ...
1720
+
1721
+ def type_recast(self):
1722
+ """Return a new instance, this is needed because types
1723
+ such as textures can be changed at runtime.
1724
+
1725
+ :return: a new instance of this object with the type initialized again.
1726
+ """
1727
+ ...
1728
+
1729
+ def values(self):
1730
+ """Returns the values of this objects custom properties (matches Python's
1731
+ dictionary function of the same name).
1732
+
1733
+ :return: custom property values.
1734
+ """
1735
+ ...
1736
+
1737
+ class POSE_OT_selection_set_remove(_PoseModeOnlyMixin, _NeedSelSetMixin):
1738
+ """Operator only available if the armature has a selected selection set."""
1739
+
1740
+ bl_description: typing.Any
1741
+ bl_idname: typing.Any
1742
+ bl_label: typing.Any
1743
+ bl_options: typing.Any
1744
+ bl_rna: typing.Any
1745
+ id_data: typing.Any
1746
+
1747
+ def as_keywords(self, *, ignore=()):
1748
+ """Return a copy of the properties as a dictionary
1749
+
1750
+ :param ignore:
1751
+ """
1752
+ ...
1753
+
1754
+ def as_pointer(self) -> int:
1755
+ """Returns the memory address which holds a pointer to Blender's internal data
1756
+
1757
+ :return: int (memory address).
1758
+ :rtype: int
1759
+ """
1760
+ ...
1761
+
1762
+ def bl_rna_get_subclass(self) -> bpy.types.Struct:
1763
+ """
1764
+
1765
+ :return: The RNA type or default when not found.
1766
+ :rtype: bpy.types.Struct
1767
+ """
1768
+ ...
1769
+
1770
+ def bl_rna_get_subclass_py(self) -> typing.Any:
1771
+ """
1772
+
1773
+ :return: The class or default when not found.
1774
+ :rtype: typing.Any
1775
+ """
1776
+ ...
1777
+
1778
+ def driver_add(self) -> bpy.types.FCurve:
1779
+ """Adds driver(s) to the given property
1780
+
1781
+ :return: The driver(s) added.
1782
+ :rtype: bpy.types.FCurve
1783
+ """
1784
+ ...
1785
+
1786
+ def driver_remove(self) -> bool:
1787
+ """Remove driver(s) from the given property
1788
+
1789
+ :return: Success of driver removal.
1790
+ :rtype: bool
1791
+ """
1792
+ ...
1793
+
1794
+ def execute(self, context):
1795
+ """
1796
+
1797
+ :param context:
1798
+ """
1799
+ ...
1800
+
1801
+ def get(self):
1802
+ """Returns the value of the custom property assigned to key or default
1803
+ when not found (matches Python's dictionary function of the same name).
1804
+
1805
+ """
1806
+ ...
1807
+
1808
+ def id_properties_clear(self):
1809
+ """
1810
+
1811
+ :return: Remove the parent group for an RNA struct's custom IDProperties.
1812
+ """
1813
+ ...
1814
+
1815
+ def id_properties_ensure(self):
1816
+ """
1817
+
1818
+ :return: the parent group for an RNA struct's custom IDProperties.
1819
+ """
1820
+ ...
1821
+
1822
+ def id_properties_ui(self):
1823
+ """
1824
+
1825
+ :return: Return an object used to manage an IDProperty's UI data.
1826
+ """
1827
+ ...
1828
+
1829
+ def is_property_hidden(self) -> bool:
1830
+ """Check if a property is hidden.
1831
+
1832
+ :return: True when the property is hidden.
1833
+ :rtype: bool
1834
+ """
1835
+ ...
1836
+
1837
+ def is_property_overridable_library(self) -> bool:
1838
+ """Check if a property is overridable.
1839
+
1840
+ :return: True when the property is overridable.
1841
+ :rtype: bool
1842
+ """
1843
+ ...
1844
+
1845
+ def is_property_readonly(self) -> bool:
1846
+ """Check if a property is readonly.
1847
+
1848
+ :return: True when the property is readonly (not writable).
1849
+ :rtype: bool
1850
+ """
1851
+ ...
1852
+
1853
+ def is_property_set(self) -> bool:
1854
+ """Check if a property is set, use for testing operator properties.
1855
+
1856
+ :return: True when the property has been set.
1857
+ :rtype: bool
1858
+ """
1859
+ ...
1860
+
1861
+ def items(self):
1862
+ """Returns the items of this objects custom properties (matches Python's
1863
+ dictionary function of the same name).
1864
+
1865
+ :return: custom property key, value pairs.
1866
+ """
1867
+ ...
1868
+
1869
+ def keyframe_delete(self) -> bool:
1870
+ """Remove a keyframe from this properties fcurve.
1871
+
1872
+ :return: Success of keyframe deletion.
1873
+ :rtype: bool
1874
+ """
1875
+ ...
1876
+
1877
+ def keyframe_insert(self) -> bool:
1878
+ """Insert a keyframe on the property given, adding fcurves and animation data when necessary.
1879
+
1880
+ :return: Success of keyframe insertion.
1881
+ :rtype: bool
1882
+ """
1883
+ ...
1884
+
1885
+ def keys(self):
1886
+ """Returns the keys of this objects custom properties (matches Python's
1887
+ dictionary function of the same name).
1888
+
1889
+ :return: custom property keys.
1890
+ """
1891
+ ...
1892
+
1893
+ def path_from_id(self) -> str:
1894
+ """Returns the data path from the ID to this object (string).
1895
+
1896
+ :return: The path from `bpy.types.bpy_struct.id_data`
1897
+ to this struct and property (when given).
1898
+ :rtype: str
1899
+ """
1900
+ ...
1901
+
1902
+ def path_resolve(self):
1903
+ """Returns the property from the path, raise an exception when not found."""
1904
+ ...
1905
+
1906
+ def poll(self, context):
1907
+ """
1908
+
1909
+ :param context:
1910
+ """
1911
+ ...
1912
+
1913
+ def poll_message_set(self):
1914
+ """Set the message to show in the tool-tip when poll fails.When message is callable, additional user defined positional arguments are passed to the message function."""
1915
+ ...
1916
+
1917
+ def pop(self):
1918
+ """Remove and return the value of the custom property assigned to key or default
1919
+ when not found (matches Python's dictionary function of the same name).
1920
+
1921
+ """
1922
+ ...
1923
+
1924
+ def property_overridable_library_set(self) -> bool:
1925
+ """Define a property as overridable or not (only for custom properties!).
1926
+
1927
+ :return: True when the overridable status of the property was successfully set.
1928
+ :rtype: bool
1929
+ """
1930
+ ...
1931
+
1932
+ def property_unset(self):
1933
+ """Unset a property, will use default value afterward."""
1934
+ ...
1935
+
1936
+ def type_recast(self):
1937
+ """Return a new instance, this is needed because types
1938
+ such as textures can be changed at runtime.
1939
+
1940
+ :return: a new instance of this object with the type initialized again.
1941
+ """
1942
+ ...
1943
+
1944
+ def values(self):
1945
+ """Returns the values of this objects custom properties (matches Python's
1946
+ dictionary function of the same name).
1947
+
1948
+ :return: custom property values.
1949
+ """
1950
+ ...
1951
+
1952
+ class POSE_OT_selection_set_remove_bones(_PoseModeOnlyMixin):
1953
+ """Operator only available for objects of type armature in pose mode."""
1954
+
1955
+ bl_description: typing.Any
1956
+ bl_idname: typing.Any
1957
+ bl_label: typing.Any
1958
+ bl_options: typing.Any
1959
+ bl_rna: typing.Any
1960
+ id_data: typing.Any
1961
+
1962
+ def as_keywords(self, *, ignore=()):
1963
+ """Return a copy of the properties as a dictionary
1964
+
1965
+ :param ignore:
1966
+ """
1967
+ ...
1968
+
1969
+ def as_pointer(self) -> int:
1970
+ """Returns the memory address which holds a pointer to Blender's internal data
1971
+
1972
+ :return: int (memory address).
1973
+ :rtype: int
1974
+ """
1975
+ ...
1976
+
1977
+ def bl_rna_get_subclass(self) -> bpy.types.Struct:
1978
+ """
1979
+
1980
+ :return: The RNA type or default when not found.
1981
+ :rtype: bpy.types.Struct
1982
+ """
1983
+ ...
1984
+
1985
+ def bl_rna_get_subclass_py(self) -> typing.Any:
1986
+ """
1987
+
1988
+ :return: The class or default when not found.
1989
+ :rtype: typing.Any
1990
+ """
1991
+ ...
1992
+
1993
+ def driver_add(self) -> bpy.types.FCurve:
1994
+ """Adds driver(s) to the given property
1995
+
1996
+ :return: The driver(s) added.
1997
+ :rtype: bpy.types.FCurve
1998
+ """
1999
+ ...
2000
+
2001
+ def driver_remove(self) -> bool:
2002
+ """Remove driver(s) from the given property
2003
+
2004
+ :return: Success of driver removal.
2005
+ :rtype: bool
2006
+ """
2007
+ ...
2008
+
2009
+ def execute(self, context):
2010
+ """
2011
+
2012
+ :param context:
2013
+ """
2014
+ ...
2015
+
2016
+ def get(self):
2017
+ """Returns the value of the custom property assigned to key or default
2018
+ when not found (matches Python's dictionary function of the same name).
2019
+
2020
+ """
2021
+ ...
2022
+
2023
+ def id_properties_clear(self):
2024
+ """
2025
+
2026
+ :return: Remove the parent group for an RNA struct's custom IDProperties.
2027
+ """
2028
+ ...
2029
+
2030
+ def id_properties_ensure(self):
2031
+ """
2032
+
2033
+ :return: the parent group for an RNA struct's custom IDProperties.
2034
+ """
2035
+ ...
2036
+
2037
+ def id_properties_ui(self):
2038
+ """
2039
+
2040
+ :return: Return an object used to manage an IDProperty's UI data.
2041
+ """
2042
+ ...
2043
+
2044
+ def is_property_hidden(self) -> bool:
2045
+ """Check if a property is hidden.
2046
+
2047
+ :return: True when the property is hidden.
2048
+ :rtype: bool
2049
+ """
2050
+ ...
2051
+
2052
+ def is_property_overridable_library(self) -> bool:
2053
+ """Check if a property is overridable.
2054
+
2055
+ :return: True when the property is overridable.
2056
+ :rtype: bool
2057
+ """
2058
+ ...
2059
+
2060
+ def is_property_readonly(self) -> bool:
2061
+ """Check if a property is readonly.
2062
+
2063
+ :return: True when the property is readonly (not writable).
2064
+ :rtype: bool
2065
+ """
2066
+ ...
2067
+
2068
+ def is_property_set(self) -> bool:
2069
+ """Check if a property is set, use for testing operator properties.
2070
+
2071
+ :return: True when the property has been set.
2072
+ :rtype: bool
2073
+ """
2074
+ ...
2075
+
2076
+ def items(self):
2077
+ """Returns the items of this objects custom properties (matches Python's
2078
+ dictionary function of the same name).
2079
+
2080
+ :return: custom property key, value pairs.
2081
+ """
2082
+ ...
2083
+
2084
+ def keyframe_delete(self) -> bool:
2085
+ """Remove a keyframe from this properties fcurve.
2086
+
2087
+ :return: Success of keyframe deletion.
2088
+ :rtype: bool
2089
+ """
2090
+ ...
2091
+
2092
+ def keyframe_insert(self) -> bool:
2093
+ """Insert a keyframe on the property given, adding fcurves and animation data when necessary.
2094
+
2095
+ :return: Success of keyframe insertion.
2096
+ :rtype: bool
2097
+ """
2098
+ ...
2099
+
2100
+ def keys(self):
2101
+ """Returns the keys of this objects custom properties (matches Python's
2102
+ dictionary function of the same name).
2103
+
2104
+ :return: custom property keys.
2105
+ """
2106
+ ...
2107
+
2108
+ def path_from_id(self) -> str:
2109
+ """Returns the data path from the ID to this object (string).
2110
+
2111
+ :return: The path from `bpy.types.bpy_struct.id_data`
2112
+ to this struct and property (when given).
2113
+ :rtype: str
2114
+ """
2115
+ ...
2116
+
2117
+ def path_resolve(self):
2118
+ """Returns the property from the path, raise an exception when not found."""
2119
+ ...
2120
+
2121
+ def poll(self, context):
2122
+ """
2123
+
2124
+ :param context:
2125
+ """
2126
+ ...
2127
+
2128
+ def poll_message_set(self):
2129
+ """Set the message to show in the tool-tip when poll fails.When message is callable, additional user defined positional arguments are passed to the message function."""
2130
+ ...
2131
+
2132
+ def pop(self):
2133
+ """Remove and return the value of the custom property assigned to key or default
2134
+ when not found (matches Python's dictionary function of the same name).
2135
+
2136
+ """
2137
+ ...
2138
+
2139
+ def property_overridable_library_set(self) -> bool:
2140
+ """Define a property as overridable or not (only for custom properties!).
2141
+
2142
+ :return: True when the overridable status of the property was successfully set.
2143
+ :rtype: bool
2144
+ """
2145
+ ...
2146
+
2147
+ def property_unset(self):
2148
+ """Unset a property, will use default value afterward."""
2149
+ ...
2150
+
2151
+ def type_recast(self):
2152
+ """Return a new instance, this is needed because types
2153
+ such as textures can be changed at runtime.
2154
+
2155
+ :return: a new instance of this object with the type initialized again.
2156
+ """
2157
+ ...
2158
+
2159
+ def values(self):
2160
+ """Returns the values of this objects custom properties (matches Python's
2161
+ dictionary function of the same name).
2162
+
2163
+ :return: custom property values.
2164
+ """
2165
+ ...
2166
+
2167
+ class POSE_OT_selection_set_select(_PoseModeOnlyMixin, _NeedSelSetMixin):
2168
+ """Operator only available if the armature has a selected selection set."""
2169
+
2170
+ bl_description: typing.Any
2171
+ bl_idname: typing.Any
2172
+ bl_label: typing.Any
2173
+ bl_options: typing.Any
2174
+ bl_rna: typing.Any
2175
+ id_data: typing.Any
2176
+
2177
+ def as_keywords(self, *, ignore=()):
2178
+ """Return a copy of the properties as a dictionary
2179
+
2180
+ :param ignore:
2181
+ """
2182
+ ...
2183
+
2184
+ def as_pointer(self) -> int:
2185
+ """Returns the memory address which holds a pointer to Blender's internal data
2186
+
2187
+ :return: int (memory address).
2188
+ :rtype: int
2189
+ """
2190
+ ...
2191
+
2192
+ def bl_rna_get_subclass(self) -> bpy.types.Struct:
2193
+ """
2194
+
2195
+ :return: The RNA type or default when not found.
2196
+ :rtype: bpy.types.Struct
2197
+ """
2198
+ ...
2199
+
2200
+ def bl_rna_get_subclass_py(self) -> typing.Any:
2201
+ """
2202
+
2203
+ :return: The class or default when not found.
2204
+ :rtype: typing.Any
2205
+ """
2206
+ ...
2207
+
2208
+ def driver_add(self) -> bpy.types.FCurve:
2209
+ """Adds driver(s) to the given property
2210
+
2211
+ :return: The driver(s) added.
2212
+ :rtype: bpy.types.FCurve
2213
+ """
2214
+ ...
2215
+
2216
+ def driver_remove(self) -> bool:
2217
+ """Remove driver(s) from the given property
2218
+
2219
+ :return: Success of driver removal.
2220
+ :rtype: bool
2221
+ """
2222
+ ...
2223
+
2224
+ def execute(self, context):
2225
+ """
2226
+
2227
+ :param context:
2228
+ """
2229
+ ...
2230
+
2231
+ def get(self):
2232
+ """Returns the value of the custom property assigned to key or default
2233
+ when not found (matches Python's dictionary function of the same name).
2234
+
2235
+ """
2236
+ ...
2237
+
2238
+ def id_properties_clear(self):
2239
+ """
2240
+
2241
+ :return: Remove the parent group for an RNA struct's custom IDProperties.
2242
+ """
2243
+ ...
2244
+
2245
+ def id_properties_ensure(self):
2246
+ """
2247
+
2248
+ :return: the parent group for an RNA struct's custom IDProperties.
2249
+ """
2250
+ ...
2251
+
2252
+ def id_properties_ui(self):
2253
+ """
2254
+
2255
+ :return: Return an object used to manage an IDProperty's UI data.
2256
+ """
2257
+ ...
2258
+
2259
+ def is_property_hidden(self) -> bool:
2260
+ """Check if a property is hidden.
2261
+
2262
+ :return: True when the property is hidden.
2263
+ :rtype: bool
2264
+ """
2265
+ ...
2266
+
2267
+ def is_property_overridable_library(self) -> bool:
2268
+ """Check if a property is overridable.
2269
+
2270
+ :return: True when the property is overridable.
2271
+ :rtype: bool
2272
+ """
2273
+ ...
2274
+
2275
+ def is_property_readonly(self) -> bool:
2276
+ """Check if a property is readonly.
2277
+
2278
+ :return: True when the property is readonly (not writable).
2279
+ :rtype: bool
2280
+ """
2281
+ ...
2282
+
2283
+ def is_property_set(self) -> bool:
2284
+ """Check if a property is set, use for testing operator properties.
2285
+
2286
+ :return: True when the property has been set.
2287
+ :rtype: bool
2288
+ """
2289
+ ...
2290
+
2291
+ def items(self):
2292
+ """Returns the items of this objects custom properties (matches Python's
2293
+ dictionary function of the same name).
2294
+
2295
+ :return: custom property key, value pairs.
2296
+ """
2297
+ ...
2298
+
2299
+ def keyframe_delete(self) -> bool:
2300
+ """Remove a keyframe from this properties fcurve.
2301
+
2302
+ :return: Success of keyframe deletion.
2303
+ :rtype: bool
2304
+ """
2305
+ ...
2306
+
2307
+ def keyframe_insert(self) -> bool:
2308
+ """Insert a keyframe on the property given, adding fcurves and animation data when necessary.
2309
+
2310
+ :return: Success of keyframe insertion.
2311
+ :rtype: bool
2312
+ """
2313
+ ...
2314
+
2315
+ def keys(self):
2316
+ """Returns the keys of this objects custom properties (matches Python's
2317
+ dictionary function of the same name).
2318
+
2319
+ :return: custom property keys.
2320
+ """
2321
+ ...
2322
+
2323
+ def path_from_id(self) -> str:
2324
+ """Returns the data path from the ID to this object (string).
2325
+
2326
+ :return: The path from `bpy.types.bpy_struct.id_data`
2327
+ to this struct and property (when given).
2328
+ :rtype: str
2329
+ """
2330
+ ...
2331
+
2332
+ def path_resolve(self):
2333
+ """Returns the property from the path, raise an exception when not found."""
2334
+ ...
2335
+
2336
+ def poll(self, context):
2337
+ """
2338
+
2339
+ :param context:
2340
+ """
2341
+ ...
2342
+
2343
+ def poll_message_set(self):
2344
+ """Set the message to show in the tool-tip when poll fails.When message is callable, additional user defined positional arguments are passed to the message function."""
2345
+ ...
2346
+
2347
+ def pop(self):
2348
+ """Remove and return the value of the custom property assigned to key or default
2349
+ when not found (matches Python's dictionary function of the same name).
2350
+
2351
+ """
2352
+ ...
2353
+
2354
+ def property_overridable_library_set(self) -> bool:
2355
+ """Define a property as overridable or not (only for custom properties!).
2356
+
2357
+ :return: True when the overridable status of the property was successfully set.
2358
+ :rtype: bool
2359
+ """
2360
+ ...
2361
+
2362
+ def property_unset(self):
2363
+ """Unset a property, will use default value afterward."""
2364
+ ...
2365
+
2366
+ def type_recast(self):
2367
+ """Return a new instance, this is needed because types
2368
+ such as textures can be changed at runtime.
2369
+
2370
+ :return: a new instance of this object with the type initialized again.
2371
+ """
2372
+ ...
2373
+
2374
+ def values(self):
2375
+ """Returns the values of this objects custom properties (matches Python's
2376
+ dictionary function of the same name).
2377
+
2378
+ :return: custom property values.
2379
+ """
2380
+ ...
2381
+
2382
+ class POSE_OT_selection_set_unassign(_PoseModeOnlyMixin, _NeedSelSetMixin):
2383
+ """Operator only available if the armature has a selected selection set."""
2384
+
2385
+ bl_description: typing.Any
2386
+ bl_idname: typing.Any
2387
+ bl_label: typing.Any
2388
+ bl_options: typing.Any
2389
+ bl_rna: typing.Any
2390
+ id_data: typing.Any
2391
+
2392
+ def as_keywords(self, *, ignore=()):
2393
+ """Return a copy of the properties as a dictionary
2394
+
2395
+ :param ignore:
2396
+ """
2397
+ ...
2398
+
2399
+ def as_pointer(self) -> int:
2400
+ """Returns the memory address which holds a pointer to Blender's internal data
2401
+
2402
+ :return: int (memory address).
2403
+ :rtype: int
2404
+ """
2405
+ ...
2406
+
2407
+ def bl_rna_get_subclass(self) -> bpy.types.Struct:
2408
+ """
2409
+
2410
+ :return: The RNA type or default when not found.
2411
+ :rtype: bpy.types.Struct
2412
+ """
2413
+ ...
2414
+
2415
+ def bl_rna_get_subclass_py(self) -> typing.Any:
2416
+ """
2417
+
2418
+ :return: The class or default when not found.
2419
+ :rtype: typing.Any
2420
+ """
2421
+ ...
2422
+
2423
+ def driver_add(self) -> bpy.types.FCurve:
2424
+ """Adds driver(s) to the given property
2425
+
2426
+ :return: The driver(s) added.
2427
+ :rtype: bpy.types.FCurve
2428
+ """
2429
+ ...
2430
+
2431
+ def driver_remove(self) -> bool:
2432
+ """Remove driver(s) from the given property
2433
+
2434
+ :return: Success of driver removal.
2435
+ :rtype: bool
2436
+ """
2437
+ ...
2438
+
2439
+ def execute(self, context):
2440
+ """
2441
+
2442
+ :param context:
2443
+ """
2444
+ ...
2445
+
2446
+ def get(self):
2447
+ """Returns the value of the custom property assigned to key or default
2448
+ when not found (matches Python's dictionary function of the same name).
2449
+
2450
+ """
2451
+ ...
2452
+
2453
+ def id_properties_clear(self):
2454
+ """
2455
+
2456
+ :return: Remove the parent group for an RNA struct's custom IDProperties.
2457
+ """
2458
+ ...
2459
+
2460
+ def id_properties_ensure(self):
2461
+ """
2462
+
2463
+ :return: the parent group for an RNA struct's custom IDProperties.
2464
+ """
2465
+ ...
2466
+
2467
+ def id_properties_ui(self):
2468
+ """
2469
+
2470
+ :return: Return an object used to manage an IDProperty's UI data.
2471
+ """
2472
+ ...
2473
+
2474
+ def is_property_hidden(self) -> bool:
2475
+ """Check if a property is hidden.
2476
+
2477
+ :return: True when the property is hidden.
2478
+ :rtype: bool
2479
+ """
2480
+ ...
2481
+
2482
+ def is_property_overridable_library(self) -> bool:
2483
+ """Check if a property is overridable.
2484
+
2485
+ :return: True when the property is overridable.
2486
+ :rtype: bool
2487
+ """
2488
+ ...
2489
+
2490
+ def is_property_readonly(self) -> bool:
2491
+ """Check if a property is readonly.
2492
+
2493
+ :return: True when the property is readonly (not writable).
2494
+ :rtype: bool
2495
+ """
2496
+ ...
2497
+
2498
+ def is_property_set(self) -> bool:
2499
+ """Check if a property is set, use for testing operator properties.
2500
+
2501
+ :return: True when the property has been set.
2502
+ :rtype: bool
2503
+ """
2504
+ ...
2505
+
2506
+ def items(self):
2507
+ """Returns the items of this objects custom properties (matches Python's
2508
+ dictionary function of the same name).
2509
+
2510
+ :return: custom property key, value pairs.
2511
+ """
2512
+ ...
2513
+
2514
+ def keyframe_delete(self) -> bool:
2515
+ """Remove a keyframe from this properties fcurve.
2516
+
2517
+ :return: Success of keyframe deletion.
2518
+ :rtype: bool
2519
+ """
2520
+ ...
2521
+
2522
+ def keyframe_insert(self) -> bool:
2523
+ """Insert a keyframe on the property given, adding fcurves and animation data when necessary.
2524
+
2525
+ :return: Success of keyframe insertion.
2526
+ :rtype: bool
2527
+ """
2528
+ ...
2529
+
2530
+ def keys(self):
2531
+ """Returns the keys of this objects custom properties (matches Python's
2532
+ dictionary function of the same name).
2533
+
2534
+ :return: custom property keys.
2535
+ """
2536
+ ...
2537
+
2538
+ def path_from_id(self) -> str:
2539
+ """Returns the data path from the ID to this object (string).
2540
+
2541
+ :return: The path from `bpy.types.bpy_struct.id_data`
2542
+ to this struct and property (when given).
2543
+ :rtype: str
2544
+ """
2545
+ ...
2546
+
2547
+ def path_resolve(self):
2548
+ """Returns the property from the path, raise an exception when not found."""
2549
+ ...
2550
+
2551
+ def poll(self, context):
2552
+ """
2553
+
2554
+ :param context:
2555
+ """
2556
+ ...
2557
+
2558
+ def poll_message_set(self):
2559
+ """Set the message to show in the tool-tip when poll fails.When message is callable, additional user defined positional arguments are passed to the message function."""
2560
+ ...
2561
+
2562
+ def pop(self):
2563
+ """Remove and return the value of the custom property assigned to key or default
2564
+ when not found (matches Python's dictionary function of the same name).
2565
+
2566
+ """
2567
+ ...
2568
+
2569
+ def property_overridable_library_set(self) -> bool:
2570
+ """Define a property as overridable or not (only for custom properties!).
2571
+
2572
+ :return: True when the overridable status of the property was successfully set.
2573
+ :rtype: bool
2574
+ """
2575
+ ...
2576
+
2577
+ def property_unset(self):
2578
+ """Unset a property, will use default value afterward."""
2579
+ ...
2580
+
2581
+ def type_recast(self):
2582
+ """Return a new instance, this is needed because types
2583
+ such as textures can be changed at runtime.
2584
+
2585
+ :return: a new instance of this object with the type initialized again.
2586
+ """
2587
+ ...
2588
+
2589
+ def values(self):
2590
+ """Returns the values of this objects custom properties (matches Python's
2591
+ dictionary function of the same name).
2592
+
2593
+ :return: custom property values.
2594
+ """
2595
+ ...
2596
+
2597
+ class SelectionEntry:
2598
+ bl_rna: typing.Any
2599
+ id_data: typing.Any
2600
+
2601
+ def as_pointer(self) -> int:
2602
+ """Returns the memory address which holds a pointer to Blender's internal data
2603
+
2604
+ :return: int (memory address).
2605
+ :rtype: int
2606
+ """
2607
+ ...
2608
+
2609
+ def bl_rna_get_subclass(self) -> bpy.types.Struct:
2610
+ """
2611
+
2612
+ :return: The RNA type or default when not found.
2613
+ :rtype: bpy.types.Struct
2614
+ """
2615
+ ...
2616
+
2617
+ def bl_rna_get_subclass_py(self) -> typing.Any:
2618
+ """
2619
+
2620
+ :return: The class or default when not found.
2621
+ :rtype: typing.Any
2622
+ """
2623
+ ...
2624
+
2625
+ def driver_add(self) -> bpy.types.FCurve:
2626
+ """Adds driver(s) to the given property
2627
+
2628
+ :return: The driver(s) added.
2629
+ :rtype: bpy.types.FCurve
2630
+ """
2631
+ ...
2632
+
2633
+ def driver_remove(self) -> bool:
2634
+ """Remove driver(s) from the given property
2635
+
2636
+ :return: Success of driver removal.
2637
+ :rtype: bool
2638
+ """
2639
+ ...
2640
+
2641
+ def get(self):
2642
+ """Returns the value of the custom property assigned to key or default
2643
+ when not found (matches Python's dictionary function of the same name).
2644
+
2645
+ """
2646
+ ...
2647
+
2648
+ def id_properties_clear(self):
2649
+ """
2650
+
2651
+ :return: Remove the parent group for an RNA struct's custom IDProperties.
2652
+ """
2653
+ ...
2654
+
2655
+ def id_properties_ensure(self):
2656
+ """
2657
+
2658
+ :return: the parent group for an RNA struct's custom IDProperties.
2659
+ """
2660
+ ...
2661
+
2662
+ def id_properties_ui(self):
2663
+ """
2664
+
2665
+ :return: Return an object used to manage an IDProperty's UI data.
2666
+ """
2667
+ ...
2668
+
2669
+ def is_property_hidden(self) -> bool:
2670
+ """Check if a property is hidden.
2671
+
2672
+ :return: True when the property is hidden.
2673
+ :rtype: bool
2674
+ """
2675
+ ...
2676
+
2677
+ def is_property_overridable_library(self) -> bool:
2678
+ """Check if a property is overridable.
2679
+
2680
+ :return: True when the property is overridable.
2681
+ :rtype: bool
2682
+ """
2683
+ ...
2684
+
2685
+ def is_property_readonly(self) -> bool:
2686
+ """Check if a property is readonly.
2687
+
2688
+ :return: True when the property is readonly (not writable).
2689
+ :rtype: bool
2690
+ """
2691
+ ...
2692
+
2693
+ def is_property_set(self) -> bool:
2694
+ """Check if a property is set, use for testing operator properties.
2695
+
2696
+ :return: True when the property has been set.
2697
+ :rtype: bool
2698
+ """
2699
+ ...
2700
+
2701
+ def items(self):
2702
+ """Returns the items of this objects custom properties (matches Python's
2703
+ dictionary function of the same name).
2704
+
2705
+ :return: custom property key, value pairs.
2706
+ """
2707
+ ...
2708
+
2709
+ def keyframe_delete(self) -> bool:
2710
+ """Remove a keyframe from this properties fcurve.
2711
+
2712
+ :return: Success of keyframe deletion.
2713
+ :rtype: bool
2714
+ """
2715
+ ...
2716
+
2717
+ def keyframe_insert(self) -> bool:
2718
+ """Insert a keyframe on the property given, adding fcurves and animation data when necessary.
2719
+
2720
+ :return: Success of keyframe insertion.
2721
+ :rtype: bool
2722
+ """
2723
+ ...
2724
+
2725
+ def keys(self):
2726
+ """Returns the keys of this objects custom properties (matches Python's
2727
+ dictionary function of the same name).
2728
+
2729
+ :return: custom property keys.
2730
+ """
2731
+ ...
2732
+
2733
+ def path_from_id(self) -> str:
2734
+ """Returns the data path from the ID to this object (string).
2735
+
2736
+ :return: The path from `bpy.types.bpy_struct.id_data`
2737
+ to this struct and property (when given).
2738
+ :rtype: str
2739
+ """
2740
+ ...
2741
+
2742
+ def path_resolve(self):
2743
+ """Returns the property from the path, raise an exception when not found."""
2744
+ ...
2745
+
2746
+ def pop(self):
2747
+ """Remove and return the value of the custom property assigned to key or default
2748
+ when not found (matches Python's dictionary function of the same name).
2749
+
2750
+ """
2751
+ ...
2752
+
2753
+ def property_overridable_library_set(self) -> bool:
2754
+ """Define a property as overridable or not (only for custom properties!).
2755
+
2756
+ :return: True when the overridable status of the property was successfully set.
2757
+ :rtype: bool
2758
+ """
2759
+ ...
2760
+
2761
+ def property_unset(self):
2762
+ """Unset a property, will use default value afterward."""
2763
+ ...
2764
+
2765
+ def type_recast(self):
2766
+ """Return a new instance, this is needed because types
2767
+ such as textures can be changed at runtime.
2768
+
2769
+ :return: a new instance of this object with the type initialized again.
2770
+ """
2771
+ ...
2772
+
2773
+ def values(self):
2774
+ """Returns the values of this objects custom properties (matches Python's
2775
+ dictionary function of the same name).
2776
+
2777
+ :return: custom property values.
2778
+ """
2779
+ ...
2780
+
2781
+ class SelectionSet:
2782
+ bl_rna: typing.Any
2783
+ id_data: typing.Any
2784
+
2785
+ def as_pointer(self) -> int:
2786
+ """Returns the memory address which holds a pointer to Blender's internal data
2787
+
2788
+ :return: int (memory address).
2789
+ :rtype: int
2790
+ """
2791
+ ...
2792
+
2793
+ def bl_rna_get_subclass(self) -> bpy.types.Struct:
2794
+ """
2795
+
2796
+ :return: The RNA type or default when not found.
2797
+ :rtype: bpy.types.Struct
2798
+ """
2799
+ ...
2800
+
2801
+ def bl_rna_get_subclass_py(self) -> typing.Any:
2802
+ """
2803
+
2804
+ :return: The class or default when not found.
2805
+ :rtype: typing.Any
2806
+ """
2807
+ ...
2808
+
2809
+ def driver_add(self) -> bpy.types.FCurve:
2810
+ """Adds driver(s) to the given property
2811
+
2812
+ :return: The driver(s) added.
2813
+ :rtype: bpy.types.FCurve
2814
+ """
2815
+ ...
2816
+
2817
+ def driver_remove(self) -> bool:
2818
+ """Remove driver(s) from the given property
2819
+
2820
+ :return: Success of driver removal.
2821
+ :rtype: bool
2822
+ """
2823
+ ...
2824
+
2825
+ def get(self):
2826
+ """Returns the value of the custom property assigned to key or default
2827
+ when not found (matches Python's dictionary function of the same name).
2828
+
2829
+ """
2830
+ ...
2831
+
2832
+ def id_properties_clear(self):
2833
+ """
2834
+
2835
+ :return: Remove the parent group for an RNA struct's custom IDProperties.
2836
+ """
2837
+ ...
2838
+
2839
+ def id_properties_ensure(self):
2840
+ """
2841
+
2842
+ :return: the parent group for an RNA struct's custom IDProperties.
2843
+ """
2844
+ ...
2845
+
2846
+ def id_properties_ui(self):
2847
+ """
2848
+
2849
+ :return: Return an object used to manage an IDProperty's UI data.
2850
+ """
2851
+ ...
2852
+
2853
+ def is_property_hidden(self) -> bool:
2854
+ """Check if a property is hidden.
2855
+
2856
+ :return: True when the property is hidden.
2857
+ :rtype: bool
2858
+ """
2859
+ ...
2860
+
2861
+ def is_property_overridable_library(self) -> bool:
2862
+ """Check if a property is overridable.
2863
+
2864
+ :return: True when the property is overridable.
2865
+ :rtype: bool
2866
+ """
2867
+ ...
2868
+
2869
+ def is_property_readonly(self) -> bool:
2870
+ """Check if a property is readonly.
2871
+
2872
+ :return: True when the property is readonly (not writable).
2873
+ :rtype: bool
2874
+ """
2875
+ ...
2876
+
2877
+ def is_property_set(self) -> bool:
2878
+ """Check if a property is set, use for testing operator properties.
2879
+
2880
+ :return: True when the property has been set.
2881
+ :rtype: bool
2882
+ """
2883
+ ...
2884
+
2885
+ def items(self):
2886
+ """Returns the items of this objects custom properties (matches Python's
2887
+ dictionary function of the same name).
2888
+
2889
+ :return: custom property key, value pairs.
2890
+ """
2891
+ ...
2892
+
2893
+ def keyframe_delete(self) -> bool:
2894
+ """Remove a keyframe from this properties fcurve.
2895
+
2896
+ :return: Success of keyframe deletion.
2897
+ :rtype: bool
2898
+ """
2899
+ ...
2900
+
2901
+ def keyframe_insert(self) -> bool:
2902
+ """Insert a keyframe on the property given, adding fcurves and animation data when necessary.
2903
+
2904
+ :return: Success of keyframe insertion.
2905
+ :rtype: bool
2906
+ """
2907
+ ...
2908
+
2909
+ def keys(self):
2910
+ """Returns the keys of this objects custom properties (matches Python's
2911
+ dictionary function of the same name).
2912
+
2913
+ :return: custom property keys.
2914
+ """
2915
+ ...
2916
+
2917
+ def path_from_id(self) -> str:
2918
+ """Returns the data path from the ID to this object (string).
2919
+
2920
+ :return: The path from `bpy.types.bpy_struct.id_data`
2921
+ to this struct and property (when given).
2922
+ :rtype: str
2923
+ """
2924
+ ...
2925
+
2926
+ def path_resolve(self):
2927
+ """Returns the property from the path, raise an exception when not found."""
2928
+ ...
2929
+
2930
+ def pop(self):
2931
+ """Remove and return the value of the custom property assigned to key or default
2932
+ when not found (matches Python's dictionary function of the same name).
2933
+
2934
+ """
2935
+ ...
2936
+
2937
+ def property_overridable_library_set(self) -> bool:
2938
+ """Define a property as overridable or not (only for custom properties!).
2939
+
2940
+ :return: True when the overridable status of the property was successfully set.
2941
+ :rtype: bool
2942
+ """
2943
+ ...
2944
+
2945
+ def property_unset(self):
2946
+ """Unset a property, will use default value afterward."""
2947
+ ...
2948
+
2949
+ def type_recast(self):
2950
+ """Return a new instance, this is needed because types
2951
+ such as textures can be changed at runtime.
2952
+
2953
+ :return: a new instance of this object with the type initialized again.
2954
+ """
2955
+ ...
2956
+
2957
+ def values(self):
2958
+ """Returns the values of this objects custom properties (matches Python's
2959
+ dictionary function of the same name).
2960
+
2961
+ :return: custom property values.
2962
+ """
2963
+ ...
2964
+
2965
+ class _PoseModeOnlyMixin:
2966
+ """Operator only available for objects of type armature in pose mode."""
2967
+
2968
+ def poll(self, context):
2969
+ """
2970
+
2971
+ :param context:
2972
+ """
2973
+ ...
2974
+
2975
+ class _NeedSelSetMixin(_PoseModeOnlyMixin):
2976
+ """Operator only available if the armature has a selected selection set."""
2977
+
2978
+ def poll(self, context):
2979
+ """
2980
+
2981
+ :param context:
2982
+ """
2983
+ ...
2984
+
2985
+ def register(): ...
2986
+ def unregister(): ...