fake-bpy-module 20240712__py3-none-any.whl → 20240714__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.

@@ -4265,6 +4265,232 @@ class DOPESHEET_PT_action(DopesheetActionPanelBase, bpy_types._GenericUI):
4265
4265
  """
4266
4266
  ...
4267
4267
 
4268
+ class DOPESHEET_PT_action_slot(bpy_types._GenericUI):
4269
+ bl_category: typing.Any
4270
+ bl_label: typing.Any
4271
+ bl_region_type: typing.Any
4272
+ bl_rna: typing.Any
4273
+ bl_space_type: typing.Any
4274
+ id_data: typing.Any
4275
+
4276
+ def append(self, draw_func):
4277
+ """Append a draw function to this menu,
4278
+ takes the same arguments as the menus draw function
4279
+
4280
+ :param draw_func:
4281
+ """
4282
+ ...
4283
+
4284
+ def as_pointer(self) -> int:
4285
+ """Returns the memory address which holds a pointer to Blender's internal data
4286
+
4287
+ :return: int (memory address).
4288
+ :rtype: int
4289
+ """
4290
+ ...
4291
+
4292
+ def bl_rna_get_subclass(self) -> bpy.types.Struct:
4293
+ """
4294
+
4295
+ :return: The RNA type or default when not found.
4296
+ :rtype: bpy.types.Struct
4297
+ """
4298
+ ...
4299
+
4300
+ def bl_rna_get_subclass_py(self) -> typing.Any:
4301
+ """
4302
+
4303
+ :return: The class or default when not found.
4304
+ :rtype: typing.Any
4305
+ """
4306
+ ...
4307
+
4308
+ def draw(self, context):
4309
+ """
4310
+
4311
+ :param context:
4312
+ """
4313
+ ...
4314
+
4315
+ def driver_add(self) -> bpy.types.FCurve:
4316
+ """Adds driver(s) to the given property
4317
+
4318
+ :return: The driver(s) added.
4319
+ :rtype: bpy.types.FCurve
4320
+ """
4321
+ ...
4322
+
4323
+ def driver_remove(self) -> bool:
4324
+ """Remove driver(s) from the given property
4325
+
4326
+ :return: Success of driver removal.
4327
+ :rtype: bool
4328
+ """
4329
+ ...
4330
+
4331
+ def get(self):
4332
+ """Returns the value of the custom property assigned to key or default
4333
+ when not found (matches Python's dictionary function of the same name).
4334
+
4335
+ """
4336
+ ...
4337
+
4338
+ def id_properties_clear(self):
4339
+ """
4340
+
4341
+ :return: Remove the parent group for an RNA struct's custom IDProperties.
4342
+ """
4343
+ ...
4344
+
4345
+ def id_properties_ensure(self):
4346
+ """
4347
+
4348
+ :return: the parent group for an RNA struct's custom IDProperties.
4349
+ """
4350
+ ...
4351
+
4352
+ def id_properties_ui(self):
4353
+ """
4354
+
4355
+ :return: Return an object used to manage an IDProperty's UI data.
4356
+ """
4357
+ ...
4358
+
4359
+ def is_extended(self): ...
4360
+ def is_property_hidden(self) -> bool:
4361
+ """Check if a property is hidden.
4362
+
4363
+ :return: True when the property is hidden.
4364
+ :rtype: bool
4365
+ """
4366
+ ...
4367
+
4368
+ def is_property_overridable_library(self) -> bool:
4369
+ """Check if a property is overridable.
4370
+
4371
+ :return: True when the property is overridable.
4372
+ :rtype: bool
4373
+ """
4374
+ ...
4375
+
4376
+ def is_property_readonly(self) -> bool:
4377
+ """Check if a property is readonly.
4378
+
4379
+ :return: True when the property is readonly (not writable).
4380
+ :rtype: bool
4381
+ """
4382
+ ...
4383
+
4384
+ def is_property_set(self) -> bool:
4385
+ """Check if a property is set, use for testing operator properties.
4386
+
4387
+ :return: True when the property has been set.
4388
+ :rtype: bool
4389
+ """
4390
+ ...
4391
+
4392
+ def items(self):
4393
+ """Returns the items of this objects custom properties (matches Python's
4394
+ dictionary function of the same name).
4395
+
4396
+ :return: custom property key, value pairs.
4397
+ """
4398
+ ...
4399
+
4400
+ def keyframe_delete(self) -> bool:
4401
+ """Remove a keyframe from this properties fcurve.
4402
+
4403
+ :return: Success of keyframe deletion.
4404
+ :rtype: bool
4405
+ """
4406
+ ...
4407
+
4408
+ def keyframe_insert(self) -> bool:
4409
+ """Insert a keyframe on the property given, adding fcurves and animation data when necessary.
4410
+
4411
+ :return: Success of keyframe insertion.
4412
+ :rtype: bool
4413
+ """
4414
+ ...
4415
+
4416
+ def keys(self):
4417
+ """Returns the keys of this objects custom properties (matches Python's
4418
+ dictionary function of the same name).
4419
+
4420
+ :return: custom property keys.
4421
+ """
4422
+ ...
4423
+
4424
+ def path_from_id(self) -> str:
4425
+ """Returns the data path from the ID to this object (string).
4426
+
4427
+ :return: The path from `bpy.types.bpy_struct.id_data`
4428
+ to this struct and property (when given).
4429
+ :rtype: str
4430
+ """
4431
+ ...
4432
+
4433
+ def path_resolve(self):
4434
+ """Returns the property from the path, raise an exception when not found."""
4435
+ ...
4436
+
4437
+ def poll(self, context):
4438
+ """
4439
+
4440
+ :param context:
4441
+ """
4442
+ ...
4443
+
4444
+ def pop(self):
4445
+ """Remove and return the value of the custom property assigned to key or default
4446
+ when not found (matches Python's dictionary function of the same name).
4447
+
4448
+ """
4449
+ ...
4450
+
4451
+ def prepend(self, draw_func):
4452
+ """Prepend a draw function to this menu, takes the same arguments as
4453
+ the menus draw function
4454
+
4455
+ :param draw_func:
4456
+ """
4457
+ ...
4458
+
4459
+ def property_overridable_library_set(self) -> bool:
4460
+ """Define a property as overridable or not (only for custom properties!).
4461
+
4462
+ :return: True when the overridable status of the property was successfully set.
4463
+ :rtype: bool
4464
+ """
4465
+ ...
4466
+
4467
+ def property_unset(self):
4468
+ """Unset a property, will use default value afterward."""
4469
+ ...
4470
+
4471
+ def remove(self, draw_func):
4472
+ """Remove a draw function that has been added to this menu
4473
+
4474
+ :param draw_func:
4475
+ """
4476
+ ...
4477
+
4478
+ def type_recast(self):
4479
+ """Return a new instance, this is needed because types
4480
+ such as textures can be changed at runtime.
4481
+
4482
+ :return: a new instance of this object with the type initialized again.
4483
+ """
4484
+ ...
4485
+
4486
+ def values(self):
4487
+ """Returns the values of this objects custom properties (matches Python's
4488
+ dictionary function of the same name).
4489
+
4490
+ :return: custom property values.
4491
+ """
4492
+ ...
4493
+
4268
4494
  class DOPESHEET_PT_custom_props_action(rna_prop_ui.PropertyPanel, bpy_types._GenericUI):
4269
4495
  """The subclass should have its own poll function
4270
4496
  and the variable '_context_path' MUST be set.
@@ -726,12 +726,16 @@ class _defs_gpencil_weight:
726
726
  """
727
727
  ...
728
728
 
729
+ class _defs_grease_pencil_edit:
730
+ interpolate: typing.Any
731
+
729
732
  class _defs_grease_pencil_paint:
730
733
  arc: typing.Any
731
734
  box: typing.Any
732
735
  circle: typing.Any
733
736
  curve: typing.Any
734
737
  cutter: typing.Any
738
+ interpolate: typing.Any
735
739
  line: typing.Any
736
740
  polyline: typing.Any
737
741
 
@@ -14433,6 +14433,236 @@ class VIEW3D_PT_tools_grease_pencil_v3_brush_eraser(View3DPanel, bpy_types._Gene
14433
14433
  """
14434
14434
  ...
14435
14435
 
14436
+ class VIEW3D_PT_tools_grease_pencil_v3_brush_gap_closure(
14437
+ View3DPanel, bpy_types._GenericUI
14438
+ ):
14439
+ bl_category: typing.Any
14440
+ bl_context: typing.Any
14441
+ bl_label: typing.Any
14442
+ bl_parent_id: typing.Any
14443
+ bl_region_type: typing.Any
14444
+ bl_rna: typing.Any
14445
+ bl_space_type: typing.Any
14446
+ id_data: typing.Any
14447
+
14448
+ def append(self, draw_func):
14449
+ """Append a draw function to this menu,
14450
+ takes the same arguments as the menus draw function
14451
+
14452
+ :param draw_func:
14453
+ """
14454
+ ...
14455
+
14456
+ def as_pointer(self) -> int:
14457
+ """Returns the memory address which holds a pointer to Blender's internal data
14458
+
14459
+ :return: int (memory address).
14460
+ :rtype: int
14461
+ """
14462
+ ...
14463
+
14464
+ def bl_rna_get_subclass(self) -> bpy.types.Struct:
14465
+ """
14466
+
14467
+ :return: The RNA type or default when not found.
14468
+ :rtype: bpy.types.Struct
14469
+ """
14470
+ ...
14471
+
14472
+ def bl_rna_get_subclass_py(self) -> typing.Any:
14473
+ """
14474
+
14475
+ :return: The class or default when not found.
14476
+ :rtype: typing.Any
14477
+ """
14478
+ ...
14479
+
14480
+ def draw(self, context):
14481
+ """
14482
+
14483
+ :param context:
14484
+ """
14485
+ ...
14486
+
14487
+ def driver_add(self) -> bpy.types.FCurve:
14488
+ """Adds driver(s) to the given property
14489
+
14490
+ :return: The driver(s) added.
14491
+ :rtype: bpy.types.FCurve
14492
+ """
14493
+ ...
14494
+
14495
+ def driver_remove(self) -> bool:
14496
+ """Remove driver(s) from the given property
14497
+
14498
+ :return: Success of driver removal.
14499
+ :rtype: bool
14500
+ """
14501
+ ...
14502
+
14503
+ def get(self):
14504
+ """Returns the value of the custom property assigned to key or default
14505
+ when not found (matches Python's dictionary function of the same name).
14506
+
14507
+ """
14508
+ ...
14509
+
14510
+ def id_properties_clear(self):
14511
+ """
14512
+
14513
+ :return: Remove the parent group for an RNA struct's custom IDProperties.
14514
+ """
14515
+ ...
14516
+
14517
+ def id_properties_ensure(self):
14518
+ """
14519
+
14520
+ :return: the parent group for an RNA struct's custom IDProperties.
14521
+ """
14522
+ ...
14523
+
14524
+ def id_properties_ui(self):
14525
+ """
14526
+
14527
+ :return: Return an object used to manage an IDProperty's UI data.
14528
+ """
14529
+ ...
14530
+
14531
+ def is_extended(self): ...
14532
+ def is_property_hidden(self) -> bool:
14533
+ """Check if a property is hidden.
14534
+
14535
+ :return: True when the property is hidden.
14536
+ :rtype: bool
14537
+ """
14538
+ ...
14539
+
14540
+ def is_property_overridable_library(self) -> bool:
14541
+ """Check if a property is overridable.
14542
+
14543
+ :return: True when the property is overridable.
14544
+ :rtype: bool
14545
+ """
14546
+ ...
14547
+
14548
+ def is_property_readonly(self) -> bool:
14549
+ """Check if a property is readonly.
14550
+
14551
+ :return: True when the property is readonly (not writable).
14552
+ :rtype: bool
14553
+ """
14554
+ ...
14555
+
14556
+ def is_property_set(self) -> bool:
14557
+ """Check if a property is set, use for testing operator properties.
14558
+
14559
+ :return: True when the property has been set.
14560
+ :rtype: bool
14561
+ """
14562
+ ...
14563
+
14564
+ def items(self):
14565
+ """Returns the items of this objects custom properties (matches Python's
14566
+ dictionary function of the same name).
14567
+
14568
+ :return: custom property key, value pairs.
14569
+ """
14570
+ ...
14571
+
14572
+ def keyframe_delete(self) -> bool:
14573
+ """Remove a keyframe from this properties fcurve.
14574
+
14575
+ :return: Success of keyframe deletion.
14576
+ :rtype: bool
14577
+ """
14578
+ ...
14579
+
14580
+ def keyframe_insert(self) -> bool:
14581
+ """Insert a keyframe on the property given, adding fcurves and animation data when necessary.
14582
+
14583
+ :return: Success of keyframe insertion.
14584
+ :rtype: bool
14585
+ """
14586
+ ...
14587
+
14588
+ def keys(self):
14589
+ """Returns the keys of this objects custom properties (matches Python's
14590
+ dictionary function of the same name).
14591
+
14592
+ :return: custom property keys.
14593
+ """
14594
+ ...
14595
+
14596
+ def path_from_id(self) -> str:
14597
+ """Returns the data path from the ID to this object (string).
14598
+
14599
+ :return: The path from `bpy.types.bpy_struct.id_data`
14600
+ to this struct and property (when given).
14601
+ :rtype: str
14602
+ """
14603
+ ...
14604
+
14605
+ def path_resolve(self):
14606
+ """Returns the property from the path, raise an exception when not found."""
14607
+ ...
14608
+
14609
+ def poll(self, context):
14610
+ """
14611
+
14612
+ :param context:
14613
+ """
14614
+ ...
14615
+
14616
+ def pop(self):
14617
+ """Remove and return the value of the custom property assigned to key or default
14618
+ when not found (matches Python's dictionary function of the same name).
14619
+
14620
+ """
14621
+ ...
14622
+
14623
+ def prepend(self, draw_func):
14624
+ """Prepend a draw function to this menu, takes the same arguments as
14625
+ the menus draw function
14626
+
14627
+ :param draw_func:
14628
+ """
14629
+ ...
14630
+
14631
+ def property_overridable_library_set(self) -> bool:
14632
+ """Define a property as overridable or not (only for custom properties!).
14633
+
14634
+ :return: True when the overridable status of the property was successfully set.
14635
+ :rtype: bool
14636
+ """
14637
+ ...
14638
+
14639
+ def property_unset(self):
14640
+ """Unset a property, will use default value afterward."""
14641
+ ...
14642
+
14643
+ def remove(self, draw_func):
14644
+ """Remove a draw function that has been added to this menu
14645
+
14646
+ :param draw_func:
14647
+ """
14648
+ ...
14649
+
14650
+ def type_recast(self):
14651
+ """Return a new instance, this is needed because types
14652
+ such as textures can be changed at runtime.
14653
+
14654
+ :return: a new instance of this object with the type initialized again.
14655
+ """
14656
+ ...
14657
+
14658
+ def values(self):
14659
+ """Returns the values of this objects custom properties (matches Python's
14660
+ dictionary function of the same name).
14661
+
14662
+ :return: custom property values.
14663
+ """
14664
+ ...
14665
+
14436
14666
  class VIEW3D_PT_tools_grease_pencil_v3_brush_mix_palette(
14437
14667
  View3DPanel, bpy_types._GenericUI
14438
14668
  ):
bmesh/types/__init__.pyi CHANGED
@@ -121,16 +121,16 @@ class BMEdge:
121
121
  :type: bool
122
122
  """
123
123
 
124
- link_faces: BMElemSeq | list[BMFace]
124
+ link_faces: BMElemSeq[BMFace]
125
125
  """ Faces connected to this edge, (read-only).
126
126
 
127
- :type: BMElemSeq | list[BMFace]
127
+ :type: BMElemSeq[BMFace]
128
128
  """
129
129
 
130
- link_loops: BMElemSeq | list[BMLoop]
130
+ link_loops: BMElemSeq[BMLoop]
131
131
  """ Loops connected to this edge, (read-only).
132
132
 
133
- :type: BMElemSeq | list[BMLoop]
133
+ :type: BMElemSeq[BMLoop]
134
134
  """
135
135
 
136
136
  seam: bool
@@ -157,10 +157,10 @@ class BMEdge:
157
157
  :type: bool
158
158
  """
159
159
 
160
- verts: BMElemSeq | list[BMVert]
160
+ verts: BMElemSeq[BMVert]
161
161
  """ Verts this edge uses (always 2), (read-only).
162
162
 
163
- :type: BMElemSeq | list[BMVert]
163
+ :type: BMElemSeq[BMVert]
164
164
  """
165
165
 
166
166
  def calc_face_angle(self, fallback: typing.Any = None) -> float:
@@ -457,10 +457,10 @@ class BMElemSeq(typing.Generic[GenericType1]):
457
457
  class BMFace:
458
458
  """The BMesh face with 3 or more sides"""
459
459
 
460
- edges: BMElemSeq | list[BMEdge]
460
+ edges: BMElemSeq[BMEdge]
461
461
  """ Edges of this face, (read-only).
462
462
 
463
- :type: BMElemSeq | list[BMEdge]
463
+ :type: BMElemSeq[BMEdge]
464
464
  """
465
465
 
466
466
  hide: bool
@@ -481,10 +481,10 @@ class BMFace:
481
481
  :type: bool
482
482
  """
483
483
 
484
- loops: BMElemSeq | list[BMLoop]
484
+ loops: BMElemSeq[BMLoop]
485
485
  """ Loops of this face, (read-only).
486
486
 
487
- :type: BMElemSeq | list[BMLoop]
487
+ :type: BMElemSeq[BMLoop]
488
488
  """
489
489
 
490
490
  material_index: int
@@ -517,10 +517,10 @@ class BMFace:
517
517
  :type: bool
518
518
  """
519
519
 
520
- verts: BMElemSeq | list[BMVert]
520
+ verts: BMElemSeq[BMVert]
521
521
  """ Verts of this face, (read-only).
522
522
 
523
- :type: BMElemSeq | list[BMVert]
523
+ :type: BMElemSeq[BMVert]
524
524
  """
525
525
 
526
526
  def calc_area(self) -> float:
@@ -1150,10 +1150,10 @@ class BMLoop:
1150
1150
  :type: BMLoop
1151
1151
  """
1152
1152
 
1153
- link_loops: BMElemSeq | list[BMLoop]
1153
+ link_loops: BMElemSeq[BMLoop]
1154
1154
  """ Loops connected to this loop, (read-only).
1155
1155
 
1156
- :type: BMElemSeq | list[BMLoop]
1156
+ :type: BMElemSeq[BMLoop]
1157
1157
  """
1158
1158
 
1159
1159
  tag: bool
@@ -1322,22 +1322,22 @@ class BMVert:
1322
1322
  :type: bool
1323
1323
  """
1324
1324
 
1325
- link_edges: BMElemSeq | list[BMEdge]
1325
+ link_edges: BMElemSeq[BMEdge]
1326
1326
  """ Edges connected to this vertex (read-only).
1327
1327
 
1328
- :type: BMElemSeq | list[BMEdge]
1328
+ :type: BMElemSeq[BMEdge]
1329
1329
  """
1330
1330
 
1331
- link_faces: BMElemSeq | list[BMFace]
1331
+ link_faces: BMElemSeq[BMFace]
1332
1332
  """ Faces connected to this vertex (read-only).
1333
1333
 
1334
- :type: BMElemSeq | list[BMFace]
1334
+ :type: BMElemSeq[BMFace]
1335
1335
  """
1336
1336
 
1337
- link_loops: BMElemSeq | list[BMLoop]
1337
+ link_loops: BMElemSeq[BMLoop]
1338
1338
  """ Loops that use this vertex (read-only).
1339
1339
 
1340
- :type: BMElemSeq | list[BMLoop]
1340
+ :type: BMElemSeq[BMLoop]
1341
1341
  """
1342
1342
 
1343
1343
  normal: mathutils.Vector
@@ -173,6 +173,46 @@ def execute_node_group(
173
173
  name: str = "",
174
174
  session_uid: int | None = 0,
175
175
  mouse_position: collections.abc.Iterable[int] | None = (0, 0),
176
+ region_size: collections.abc.Iterable[int] | None = (0, 0),
177
+ cursor_position: collections.abc.Iterable[float] | None = (0.0, 0.0, 0.0),
178
+ cursor_rotation: collections.abc.Iterable[float] | None = (0.0, 0.0, 0.0, 0.0),
179
+ viewport_projection_matrix: collections.abc.Iterable[float] | None = (
180
+ 0.0,
181
+ 0.0,
182
+ 0.0,
183
+ 0.0,
184
+ 0.0,
185
+ 0.0,
186
+ 0.0,
187
+ 0.0,
188
+ 0.0,
189
+ 0.0,
190
+ 0.0,
191
+ 0.0,
192
+ 0.0,
193
+ 0.0,
194
+ 0.0,
195
+ 0.0,
196
+ ),
197
+ viewport_view_matrix: collections.abc.Iterable[float] | None = (
198
+ 0.0,
199
+ 0.0,
200
+ 0.0,
201
+ 0.0,
202
+ 0.0,
203
+ 0.0,
204
+ 0.0,
205
+ 0.0,
206
+ 0.0,
207
+ 0.0,
208
+ 0.0,
209
+ 0.0,
210
+ 0.0,
211
+ 0.0,
212
+ 0.0,
213
+ 0.0,
214
+ ),
215
+ viewport_is_perspective: bool | None = False,
176
216
  ):
177
217
  """Execute a node group on geometry
178
218
 
@@ -191,6 +231,18 @@ def execute_node_group(
191
231
  :type session_uid: int | None
192
232
  :param mouse_position: Mouse Position, Mouse coordinates in region space
193
233
  :type mouse_position: collections.abc.Iterable[int] | None
234
+ :param region_size: Region Size
235
+ :type region_size: collections.abc.Iterable[int] | None
236
+ :param cursor_position: 3D Cursor Position
237
+ :type cursor_position: collections.abc.Iterable[float] | None
238
+ :param cursor_rotation: 3D Cursor Rotation
239
+ :type cursor_rotation: collections.abc.Iterable[float] | None
240
+ :param viewport_projection_matrix: Viewport Projection Transform
241
+ :type viewport_projection_matrix: collections.abc.Iterable[float] | None
242
+ :param viewport_view_matrix: Viewport View Transform
243
+ :type viewport_view_matrix: collections.abc.Iterable[float] | None
244
+ :param viewport_is_perspective: Viewport Is Perspective
245
+ :type viewport_is_perspective: bool | None
194
246
  """
195
247
 
196
248
  ...
@@ -33,6 +33,9 @@ def brush_stroke(
33
33
 
34
34
  SMOOTH
35
35
  Smooth -- Switch brush to smooth mode for duration of stroke.
36
+
37
+ ERASE
38
+ Erase -- Switch brush to erase mode for duration of stroke.
36
39
  :type mode: str | None
37
40
  """
38
41
 
@@ -258,7 +261,6 @@ def fill(
258
261
  execution_context: int | str | None = None,
259
262
  undo: bool | None = None,
260
263
  *,
261
- on_back: bool | None = False,
262
264
  invert: bool | None = False,
263
265
  precision: bool | None = False,
264
266
  ):
@@ -267,8 +269,6 @@ def fill(
267
269
  :type override_context: bpy.types.Context | dict[str, typing.Any] | None
268
270
  :type execution_context: int | str | None
269
271
  :type undo: bool | None
270
- :param on_back: Draw on Back, Send new stroke to back
271
- :type on_back: bool | None
272
272
  :param invert: Invert, Find boundary of unfilled instead of filled regions
273
273
  :type invert: bool | None
274
274
  :param precision: Precision, Use precision movement for extension lines
@@ -316,6 +316,39 @@ def insert_blank_frame(
316
316
 
317
317
  ...
318
318
 
319
+ def interpolate(
320
+ override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
321
+ execution_context: int | str | None = None,
322
+ undo: bool | None = None,
323
+ *,
324
+ shift: float | None = 0.0,
325
+ layers: str | None = "ACTIVE",
326
+ exclude_breakdowns: bool | None = False,
327
+ flip: str | None = "AUTO",
328
+ smooth_steps: int | None = 1,
329
+ smooth_factor: float | None = 0.0,
330
+ ):
331
+ """Interpolate grease pencil strokes between frames
332
+
333
+ :type override_context: bpy.types.Context | dict[str, typing.Any] | None
334
+ :type execution_context: int | str | None
335
+ :type undo: bool | None
336
+ :param shift: Shift, Bias factor for which frame has more influence on the interpolated strokes
337
+ :type shift: float | None
338
+ :param layers: Layer, Layers included in the interpolation
339
+ :type layers: str | None
340
+ :param exclude_breakdowns: Exclude Breakdowns, Exclude existing Breakdowns keyframes as interpolation extremes
341
+ :type exclude_breakdowns: bool | None
342
+ :param flip: Flip Mode, Invert destination stroke to match start and end with source stroke
343
+ :type flip: str | None
344
+ :param smooth_steps: Iterations, Number of times to smooth newly created strokes
345
+ :type smooth_steps: int | None
346
+ :param smooth_factor: Smooth, Amount of smoothing to apply to interpolated strokes, to reduce jitter/noise
347
+ :type smooth_factor: float | None
348
+ """
349
+
350
+ ...
351
+
319
352
  def layer_active(
320
353
  override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
321
354
  execution_context: int | str | None = None,
@@ -931,6 +964,9 @@ def sculpt_paint(
931
964
 
932
965
  SMOOTH
933
966
  Smooth -- Switch brush to smooth mode for duration of stroke.
967
+
968
+ ERASE
969
+ Erase -- Switch brush to erase mode for duration of stroke.
934
970
  :type mode: str | None
935
971
  """
936
972
 
@@ -1477,6 +1513,9 @@ def weight_brush_stroke(
1477
1513
 
1478
1514
  SMOOTH
1479
1515
  Smooth -- Switch brush to smooth mode for duration of stroke.
1516
+
1517
+ ERASE
1518
+ Erase -- Switch brush to erase mode for duration of stroke.
1480
1519
  :type mode: str | None
1481
1520
  """
1482
1521
 
@@ -543,6 +543,9 @@ def image_paint(
543
543
 
544
544
  SMOOTH
545
545
  Smooth -- Switch brush to smooth mode for duration of stroke.
546
+
547
+ ERASE
548
+ Erase -- Switch brush to erase mode for duration of stroke.
546
549
  :type mode: str | None
547
550
  """
548
551
 
@@ -1136,6 +1139,9 @@ def vertex_paint(
1136
1139
 
1137
1140
  SMOOTH
1138
1141
  Smooth -- Switch brush to smooth mode for duration of stroke.
1142
+
1143
+ ERASE
1144
+ Erase -- Switch brush to erase mode for duration of stroke.
1139
1145
  :type mode: str | None
1140
1146
  """
1141
1147
 
@@ -1285,6 +1291,9 @@ def weight_paint(
1285
1291
 
1286
1292
  SMOOTH
1287
1293
  Smooth -- Switch brush to smooth mode for duration of stroke.
1294
+
1295
+ ERASE
1296
+ Erase -- Switch brush to erase mode for duration of stroke.
1288
1297
  :type mode: str | None
1289
1298
  """
1290
1299
 
@@ -34,6 +34,9 @@ def brush_stroke(
34
34
 
35
35
  SMOOTH
36
36
  Smooth -- Switch brush to smooth mode for duration of stroke.
37
+
38
+ ERASE
39
+ Erase -- Switch brush to erase mode for duration of stroke.
37
40
  :type mode: str | None
38
41
  :param ignore_background_click: Ignore Background Click, Clicks on the background do not start the stroke
39
42
  :type ignore_background_click: bool | None
@@ -32,6 +32,9 @@ def brush_stroke(
32
32
 
33
33
  SMOOTH
34
34
  Smooth -- Switch brush to smooth mode for duration of stroke.
35
+
36
+ ERASE
37
+ Erase -- Switch brush to erase mode for duration of stroke.
35
38
  :type mode: str | None
36
39
  """
37
40
 
@@ -1863,7 +1863,7 @@ def slip(
1863
1863
  execution_context: int | str | None = None,
1864
1864
  undo: bool | None = None,
1865
1865
  *,
1866
- offset: int | None = 0,
1866
+ offset: float | None = 0.0,
1867
1867
  ):
1868
1868
  """Slip the contents of selected strips
1869
1869
 
@@ -1871,7 +1871,7 @@ def slip(
1871
1871
  :type execution_context: int | str | None
1872
1872
  :type undo: bool | None
1873
1873
  :param offset: Offset, Offset to the data of the strip
1874
- :type offset: int | None
1874
+ :type offset: float | None
1875
1875
  """
1876
1876
 
1877
1877
  ...
bpy/types/__init__.pyi CHANGED
@@ -35705,6 +35705,7 @@ Property types used in class declarations are all in bpy.props
35705
35705
  --------------------
35706
35706
 
35707
35707
  * Action.slots
35708
+ * ActionSlots.active
35708
35709
  * ActionSlots.new
35709
35710
  * KeyframeActionStrip.key_insert
35710
35711
 
@@ -101021,6 +101022,12 @@ class ActionPoseMarkers(bpy_prop_collection[TimelineMarker], bpy_struct):
101021
101022
  class ActionSlots(bpy_prop_collection[ActionSlot], bpy_struct):
101022
101023
  """Collection of action slots"""
101023
101024
 
101025
+ active: ActionSlot | None
101026
+ """ Active slot for this action
101027
+
101028
+ :type: ActionSlot | None
101029
+ """
101030
+
101024
101031
  def new(self, for_id: ID | None = None) -> ActionSlot:
101025
101032
  """Add a slot to the animation
101026
101033
 
@@ -111398,22 +111405,34 @@ class ActionLayer(bpy_struct):
111398
111405
  ...
111399
111406
 
111400
111407
  class ActionSlot(bpy_struct):
111401
- """Number specific to this Slot, unique within the ActionThis is used, for example, on a KeyframeActionStrip to look up the ActionChannelBag for this Slot"""
111408
+ """Identifier for a set of channels in this Action, that can be used by a data-block to specify what it gets animated by"""
111409
+
111410
+ active: bool | None
111411
+ """ Whether this is the active slot, can be set by assigning to action.slots.active
111412
+
111413
+ :type: bool | None
111414
+ """
111402
111415
 
111403
111416
  handle: int
111417
+ """ Number specific to this Slot, unique within the ActionThis is used, for example, on a KeyframeActionStrip to look up the ActionChannelBag for this Slot
111418
+
111419
+ :type: int
111420
+ """
111421
+
111422
+ idtype_icon: int
111404
111423
  """
111405
111424
 
111406
111425
  :type: int
111407
111426
  """
111408
111427
 
111409
111428
  name: str
111410
- """
111429
+ """ Used when connecting an Action to a data-block, to find the correct slot handle
111411
111430
 
111412
111431
  :type: str
111413
111432
  """
111414
111433
 
111415
111434
  name_display: str
111416
- """
111435
+ """ Name of the slot for showing in the interface. It is the name, without the first two characters that identify what kind of data-block it animates
111417
111436
 
111418
111437
  :type: str
111419
111438
  """
@@ -210617,6 +210636,12 @@ class SoundSequence(Sequence, bpy_struct):
210617
210636
  :type: Sound | None
210618
210637
  """
210619
210638
 
210639
+ sound_offset: float
210640
+ """ Offset of the sound from the beginning of the strip, expressed in seconds
210641
+
210642
+ :type: float
210643
+ """
210644
+
210620
210645
  volume: float
210621
210646
  """ Playback volume of the sound
210622
210647
 
@@ -236106,6 +236131,8 @@ DOPESHEET_MT_view_pie: bl_ui.space_dopesheet.DOPESHEET_MT_view_pie
236106
236131
 
236107
236132
  DOPESHEET_PT_action: bl_ui.space_dopesheet.DOPESHEET_PT_action
236108
236133
 
236134
+ DOPESHEET_PT_action_slot: bl_ui.space_dopesheet.DOPESHEET_PT_action_slot
236135
+
236109
236136
  DOPESHEET_PT_custom_props_action: bl_ui.space_dopesheet.DOPESHEET_PT_custom_props_action
236110
236137
 
236111
236138
  DOPESHEET_PT_filters: bl_ui.space_dopesheet.DOPESHEET_PT_filters
@@ -238750,6 +238777,8 @@ VIEW3D_PT_tools_grease_pencil_v3_brush_advanced: bl_ui.space_view3d_toolbar.VIEW
238750
238777
 
238751
238778
  VIEW3D_PT_tools_grease_pencil_v3_brush_eraser: bl_ui.space_view3d_toolbar.VIEW3D_PT_tools_grease_pencil_v3_brush_eraser
238752
238779
 
238780
+ VIEW3D_PT_tools_grease_pencil_v3_brush_gap_closure: bl_ui.space_view3d_toolbar.VIEW3D_PT_tools_grease_pencil_v3_brush_gap_closure
238781
+
238753
238782
  VIEW3D_PT_tools_grease_pencil_v3_brush_mix_palette: bl_ui.space_view3d_toolbar.VIEW3D_PT_tools_grease_pencil_v3_brush_mix_palette
238754
238783
 
238755
238784
  VIEW3D_PT_tools_grease_pencil_v3_brush_mixcolor: bl_ui.space_view3d_toolbar.VIEW3D_PT_tools_grease_pencil_v3_brush_mixcolor
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: fake-bpy-module
3
- Version: 20240712
3
+ Version: 20240714
4
4
  Summary: Collection of the fake Blender Python API module for the code completion.
5
5
  Author: nutti
6
6
  Author-email: nutti.metro@gmail.com
@@ -148,7 +148,7 @@ bl_ui/properties_workspace/__init__.pyi,sha256=pbRxipmRc0RX60BJjKCkAcr-Vk7kVjFSY
148
148
  bl_ui/properties_world/__init__.pyi,sha256=hUbmFDBymbmFoYyK1ENMNRUi2mYMj2CKhygxA0oqE7Q,58832
149
149
  bl_ui/space_clip/__init__.pyi,sha256=yGOdBtaS8ZrnxkEtr8hykva7W_d--mzTnnXBbdhhnjY,464679
150
150
  bl_ui/space_console/__init__.pyi,sha256=-BqwjFOPXOAOtdaJP8EVAqkWPyYhMHkEX7JBalEqLOA,43280
151
- bl_ui/space_dopesheet/__init__.pyi,sha256=X90-GWQlFMP7-G5mxD6babQcuN0zt-okWO-hK_08Llg,200638
151
+ bl_ui/space_dopesheet/__init__.pyi,sha256=Agt2EP01_9P2DcUlacUbXnZjekW__8QBMFh18hoZvB8,206375
152
152
  bl_ui/space_filebrowser/__init__.pyi,sha256=A1gGe7sz1vN2LKnhPpa1SanZes6HXii9zlQ-_uCo9p0,192488
153
153
  bl_ui/space_graph/__init__.pyi,sha256=S1v7sqasgG2RFCUfEw2ZTMNFVVzncvNZcAl84YFp4Ew,143057
154
154
  bl_ui/space_image/__init__.pyi,sha256=Un6pSq6wlE3gxgTHnLZJTacN8WZqVqW7Wcqp5Peoxbg,458822
@@ -163,11 +163,11 @@ bl_ui/space_statusbar/__init__.pyi,sha256=BdvZwbepdJKwHiVWoRtV_YQ6b83zYjdoGjsMRd
163
163
  bl_ui/space_text/__init__.pyi,sha256=VS-z-QrDnZ9XKiNZDEFVvgYzIzABFW2_0TNLy-zO5ZQ,112599
164
164
  bl_ui/space_time/__init__.pyi,sha256=bBuvY6KvGfk-A82BzqXnln9nLrjH8itI_HV2weYl_Ps,48064
165
165
  bl_ui/space_toolsystem_common/__init__.pyi,sha256=MISgny8q_cJJ17sYmnt8P6BwvTjxUPLNtZuc598Ju3w,5572
166
- bl_ui/space_toolsystem_toolbar/__init__.pyi,sha256=NwDWt5M3-10qFlOxwz9VQcMEbWymS69eWmJS5RKw9GQ,21072
166
+ bl_ui/space_toolsystem_toolbar/__init__.pyi,sha256=vWEllNttZC7MDHZJ3MgiyG9YeACAVGgtWYzWGWwwPOk,21161
167
167
  bl_ui/space_topbar/__init__.pyi,sha256=BMlIpAVh8I0W2XcLWmg9Dhahqmq7WqM1wk5atGWjd9Y,183273
168
168
  bl_ui/space_userpref/__init__.pyi,sha256=7dDrPZb9FfRWFdtCE6Uxb_vDn1yeP2a6p3khI6VOViU,558270
169
169
  bl_ui/space_view3d/__init__.pyi,sha256=ctUQaL9xZ6FGlH27vloD_dthRSQmlptVAMR71ZzI-dA,1955695
170
- bl_ui/space_view3d_toolbar/__init__.pyi,sha256=rTeqVgdXFLza_ik4-EdCzEDOi4HRPoabDo_JaZ7lVWU,641553
170
+ bl_ui/space_view3d_toolbar/__init__.pyi,sha256=mMzu7niL1_xLyN_TBX7vPbKwV0O_8QO8e0p9K6CX10E,647391
171
171
  bl_ui/temp_anim_layers/__init__.pyi,sha256=_VqyiBeCSIgTnihjhvq6b-SCasORK3mISP1UcpdZ7Zo,5955
172
172
  bl_ui/utils/__init__.pyi,sha256=JZnrxshoC0QSFQKE8EVbz70XIxplPBHjZ6yjRW7nG_8,2027
173
173
  bl_ui_utils/__init__.pyi,sha256=vgXVU4nsCF3zhnHE_SDR6uStqs5xYYCgdthPIk1KigI,205
@@ -182,7 +182,7 @@ bmesh/__init__.pyi,sha256=Vl3kfms133C_44cIoc_yK6U3dRQV102LIhkJlyWarzE,1583
182
182
  bmesh/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
183
183
  bmesh/geometry/__init__.pyi,sha256=UJWjDzaBqiHR7NE_t6JEKNLzJQc5I36b_8GHcn5Ywlc,758
184
184
  bmesh/ops/__init__.pyi,sha256=io89iKVZsvScZ9XRMDqhvcyiZSpO2Z5nkYQ43j-xBGw,72742
185
- bmesh/types/__init__.pyi,sha256=uzRDluVHVhNoPPGUoXvidvnhl8C1EGybkUmqVS9Hj-0,41408
185
+ bmesh/types/__init__.pyi,sha256=QGQ8xqTYWewoJ0PAA5XbM0RIc3izIzgTWnyzhpnm3-I,41268
186
186
  bmesh/utils/__init__.pyi,sha256=bWksp9MtwGJgMwLreGFvkjipCe9n64fWa9hHNSFpT9Q,6136
187
187
  bpy/__init__.pyi,sha256=UNHjZG8rO0s6czpA3abLXpCy_-0Uq3ZyWeH6gufZUMw,497
188
188
  bpy/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -218,11 +218,11 @@ bpy/ops/extensions/__init__.pyi,sha256=cHR6ZSa5YolBW18jx8PZEezo5RaKOi6-gM8aJf2Be
218
218
  bpy/ops/file/__init__.pyi,sha256=CANYFThUN7CT2P9M_1bljnFNKEVuQFEMUDmpe9j-abc,24756
219
219
  bpy/ops/fluid/__init__.pyi,sha256=7yful-0ZVHyVm8K23VxBCF_AcBGzGoihchUf0OjHuQ4,5735
220
220
  bpy/ops/font/__init__.pyi,sha256=2SMGavGjrviwdjUgT0HVq2NNGmDn4Gr58IV80B9pl2A,17541
221
- bpy/ops/geometry/__init__.pyi,sha256=6OkA_aAhtsccaPlg7u98sP-ruWTFb1Z5rxkwafMSEDg,6993
221
+ bpy/ops/geometry/__init__.pyi,sha256=k_UzjNCq3OZzWFfOg2Q6qgSw78HELzW4IHH4Vu6RiAw,8547
222
222
  bpy/ops/gizmogroup/__init__.pyi,sha256=_h2xG2u0gb4KPmAn3DnBC9ERO2NJqiAXeeH4kGyi3Ms,1706
223
223
  bpy/ops/gpencil/__init__.pyi,sha256=WQ_kmpacqzoGdpPqZds_43nNz8koeIjUy0CDn7m68es,107438
224
224
  bpy/ops/graph/__init__.pyi,sha256=Yzrm-K3D0g2FehtRtf9TevKQIUvbXUpyvYtItgWGmXw,49912
225
- bpy/ops/grease_pencil/__init__.pyi,sha256=-WAs5GfxyUwB9ZFi46pFnvJRf0O3lZTvdqsIidrW1Is,45952
225
+ bpy/ops/grease_pencil/__init__.pyi,sha256=IDKZGsfdH1TZxJWRgwnKF-NrryKkz9cyHPYgQblsm28,47450
226
226
  bpy/ops/image/__init__.pyi,sha256=vkJOzXGo4k_CC9s4-FiMw3wiUv70WStABm-w8RkoQKk,58838
227
227
  bpy/ops/import_anim/__init__.pyi,sha256=sc5jYBSzFy-LM8137hRPNlOPeVGrjXCxIe80ZUpP_r8,2922
228
228
  bpy/ops/import_curve/__init__.pyi,sha256=iE5haqhq6lCoqK39ir0DO88JQChanDbRw9EDcmVvB94,753
@@ -238,7 +238,7 @@ bpy/ops/nla/__init__.pyi,sha256=tRAb4z2awBq5Zbe-Nm3c4_DOKNMZfOfX3osIAtlcHKc,2406
238
238
  bpy/ops/node/__init__.pyi,sha256=5rAljkJHQx-oALinHacb0mxd0QdNW6O9rD28Blf_0h8,63907
239
239
  bpy/ops/object/__init__.pyi,sha256=IIzG_5h9TVnxndLxJJafb5xlMxp8bZOqdkPqmyHkn6A,201798
240
240
  bpy/ops/outliner/__init__.pyi,sha256=05Rl3y_B-dWJrtf6WpoKgYydZ5Ncz_29Kf73kJjFpUQ,37584
241
- bpy/ops/paint/__init__.pyi,sha256=CbSeVDrEZVX3q4Zl034AIUDEqGdXjt9i0Y-qy2fZYdQ,43019
241
+ bpy/ops/paint/__init__.pyi,sha256=KecOHHoehb0JohBsUuMVvYkvDtqmtIS3ld_seCqG5LY,43244
242
242
  bpy/ops/paintcurve/__init__.pyi,sha256=WGulkER5BkkKRJePXu0H_aa1kgNCs-h2MT904EW804k,4426
243
243
  bpy/ops/palette/__init__.pyi,sha256=fALZU8d4jkJHzBbrksLu5_YwHGBvwHC7m0qXJpye-sc,3227
244
244
  bpy/ops/particle/__init__.pyi,sha256=GRfNTZLR_8XhTpClMfuIQEfV7yCuQQlT0WMIhhqDBLo,19030
@@ -251,9 +251,9 @@ bpy/ops/rigidbody/__init__.pyi,sha256=GrpE0p_pEowNIvMjCmE94zY9_rmzlOiewf1mDZxMtb
251
251
  bpy/ops/scene/__init__.pyi,sha256=kZ25rtq3p1Zo24JwKyep_fuBmygPLil_ESFYqQq-Lg0,19024
252
252
  bpy/ops/screen/__init__.pyi,sha256=aWm86gn-_I6ZfAZW2e-yNP5RdGYJAt2B7KE8kCCTW6A,25611
253
253
  bpy/ops/script/__init__.pyi,sha256=XRvMY2-mQ9tiatiG0A4spX3Y9D-RPExmFOvi2Y3MH34,1580
254
- bpy/ops/sculpt/__init__.pyi,sha256=-aY-5YAbNMEuXqWOscCj27SjR3-vDvskIjtGdBOhsVc,46841
255
- bpy/ops/sculpt_curves/__init__.pyi,sha256=RgYNFoIqT4YRbHO-sd_dtNCcR9qDfYywz1WjuF-SJrc,3267
256
- bpy/ops/sequencer/__init__.pyi,sha256=7h13F1fVRH_Ml6aaSKI1KiPo8H12NBLVzwd9QlP4b_E,81972
254
+ bpy/ops/sculpt/__init__.pyi,sha256=KQtr7Hg4s0Z39x4bXN8mOUPHIVnJH28bV1htcdPqtck,46916
255
+ bpy/ops/sculpt_curves/__init__.pyi,sha256=5l8WcoMJiFscK5RQvUfE-2y2mwhLJ4h3ZjtCBp3N8MY,3342
256
+ bpy/ops/sequencer/__init__.pyi,sha256=vhxbQMzCvmWcXiSQ9XtObLAEDL10pPoU_Goj7Y3aeTg,81978
257
257
  bpy/ops/sound/__init__.pyi,sha256=pjqqeSdYxCGXNI-VNpFx-_X7EM9KBY5KYLddtP85LzI,16218
258
258
  bpy/ops/spreadsheet/__init__.pyi,sha256=1LQaWmT8fVpJG3HibE1cfNJehn4-wJqhVfPU0yUOEwI,2132
259
259
  bpy/ops/surface/__init__.pyi,sha256=-rnYWQwhKcd6DhyU7FlR-h6yNYHBF4YrqPF2DkJFLUY,10953
@@ -271,7 +271,7 @@ bpy/ops/workspace/__init__.pyi,sha256=OSELKT_HUs2W6cOk2wOigZgkbieGezMVWTi45f4x-I
271
271
  bpy/ops/world/__init__.pyi,sha256=_z3cX9CYV0nTmSiSQcC82nRiXYriWMcHomfxmSl2GxM,1057
272
272
  bpy/path/__init__.pyi,sha256=w4F-HliHscWo8VKeZB8wjMZs4fOVDS3Q_7at0m0zcQE,11558
273
273
  bpy/props/__init__.pyi,sha256=Ve1JEXbDvR1jPFE21dZEQQaBz15sdZ0IG-N3CVxtV40,29575
274
- bpy/types/__init__.pyi,sha256=-xIyCW7THiRMi3LK78a6d1Ypl7pduKNGnJdm0UQXmgM,5264383
274
+ bpy/types/__init__.pyi,sha256=LvS_Y6UgwaZd8x6MJyU6X7oxHPjVBymX5zml3e-yHeM,5265388
275
275
  bpy/utils/__init__.pyi,sha256=baraMlq0am07BaVjR2nj8bKezVHCHdBqTesRtP2-enk,19222
276
276
  bpy/utils/previews/__init__.pyi,sha256=yNPv0blwMO3GrieizVXqeFQjVM68njALxZGJOdC3QHE,4280
277
277
  bpy/utils/units/__init__.pyi,sha256=2OtqF54xi6peGyNeSGkuaLpytf2EESF753zqooe8bwc,2719
@@ -355,7 +355,7 @@ rna_xml/__init__.pyi,sha256=aUk0kaxu1bMT5z1b2S_CnI0r-p7119GGYDjeV65sx6w,670
355
355
  rna_xml/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
356
356
  sys_info/__init__.pyi,sha256=-GCmGVtiditgEnxiqi7hwH2wbEMmrtUNGvMEbxVezU4,189
357
357
  sys_info/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
358
- fake_bpy_module-20240712.dist-info/METADATA,sha256=pVkMPeZ-u3yroG4hIwDP_p--avY8Q7mgZYvYQvJlRsM,7188
359
- fake_bpy_module-20240712.dist-info/WHEEL,sha256=Z4pYXqR_rTB7OWNDYFOm1qRk0RX6GFP2o8LgvP453Hk,91
360
- fake_bpy_module-20240712.dist-info/top_level.txt,sha256=laOLfHIg0_6N4ntsGrWh85yODawYeLVGI-wex_FGLUI,509
361
- fake_bpy_module-20240712.dist-info/RECORD,,
358
+ fake_bpy_module-20240714.dist-info/METADATA,sha256=ARW9_jZVyA41tiAPc4xnwaMwX2VJFMu6R13ZaJtooD0,7188
359
+ fake_bpy_module-20240714.dist-info/WHEEL,sha256=Z4pYXqR_rTB7OWNDYFOm1qRk0RX6GFP2o8LgvP453Hk,91
360
+ fake_bpy_module-20240714.dist-info/top_level.txt,sha256=laOLfHIg0_6N4ntsGrWh85yODawYeLVGI-wex_FGLUI,509
361
+ fake_bpy_module-20240714.dist-info/RECORD,,