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

@@ -8441,6 +8441,278 @@ class NODE_MT_geometry_node_GEO_INPUT_CONSTANT(bpy_types._GenericUI):
8441
8441
  """
8442
8442
  ...
8443
8443
 
8444
+ class NODE_MT_geometry_node_GEO_INPUT_GIZMO(bpy_types._GenericUI):
8445
+ bl_idname: typing.Any
8446
+ bl_label: typing.Any
8447
+ bl_rna: typing.Any
8448
+ id_data: typing.Any
8449
+
8450
+ def append(self, draw_func):
8451
+ """Append a draw function to this menu,
8452
+ takes the same arguments as the menus draw function
8453
+
8454
+ :param draw_func:
8455
+ """
8456
+ ...
8457
+
8458
+ def as_pointer(self) -> int:
8459
+ """Returns the memory address which holds a pointer to Blender's internal data
8460
+
8461
+ :return: int (memory address).
8462
+ :rtype: int
8463
+ """
8464
+ ...
8465
+
8466
+ def bl_rna_get_subclass(self) -> bpy.types.Struct:
8467
+ """
8468
+
8469
+ :return: The RNA type or default when not found.
8470
+ :rtype: bpy.types.Struct
8471
+ """
8472
+ ...
8473
+
8474
+ def bl_rna_get_subclass_py(self) -> typing.Any:
8475
+ """
8476
+
8477
+ :return: The class or default when not found.
8478
+ :rtype: typing.Any
8479
+ """
8480
+ ...
8481
+
8482
+ def draw(self, context):
8483
+ """
8484
+
8485
+ :param context:
8486
+ """
8487
+ ...
8488
+
8489
+ def draw_collapsible(self, context, layout):
8490
+ """
8491
+
8492
+ :param context:
8493
+ :param layout:
8494
+ """
8495
+ ...
8496
+
8497
+ def draw_preset(self, _context):
8498
+ """Define these on the subclass:
8499
+ - preset_operator (string)
8500
+ - preset_subdir (string)Optionally:
8501
+ - preset_add_operator (string)
8502
+ - preset_extensions (set of strings)
8503
+ - preset_operator_defaults (dict of keyword args)
8504
+
8505
+ :param _context:
8506
+ """
8507
+ ...
8508
+
8509
+ def driver_add(self) -> bpy.types.FCurve:
8510
+ """Adds driver(s) to the given property
8511
+
8512
+ :return: The driver(s) added.
8513
+ :rtype: bpy.types.FCurve
8514
+ """
8515
+ ...
8516
+
8517
+ def driver_remove(self) -> bool:
8518
+ """Remove driver(s) from the given property
8519
+
8520
+ :return: Success of driver removal.
8521
+ :rtype: bool
8522
+ """
8523
+ ...
8524
+
8525
+ def get(self):
8526
+ """Returns the value of the custom property assigned to key or default
8527
+ when not found (matches Python's dictionary function of the same name).
8528
+
8529
+ """
8530
+ ...
8531
+
8532
+ def id_properties_clear(self):
8533
+ """
8534
+
8535
+ :return: Remove the parent group for an RNA struct's custom IDProperties.
8536
+ """
8537
+ ...
8538
+
8539
+ def id_properties_ensure(self):
8540
+ """
8541
+
8542
+ :return: the parent group for an RNA struct's custom IDProperties.
8543
+ """
8544
+ ...
8545
+
8546
+ def id_properties_ui(self):
8547
+ """
8548
+
8549
+ :return: Return an object used to manage an IDProperty's UI data.
8550
+ """
8551
+ ...
8552
+
8553
+ def is_extended(self): ...
8554
+ def is_property_hidden(self) -> bool:
8555
+ """Check if a property is hidden.
8556
+
8557
+ :return: True when the property is hidden.
8558
+ :rtype: bool
8559
+ """
8560
+ ...
8561
+
8562
+ def is_property_overridable_library(self) -> bool:
8563
+ """Check if a property is overridable.
8564
+
8565
+ :return: True when the property is overridable.
8566
+ :rtype: bool
8567
+ """
8568
+ ...
8569
+
8570
+ def is_property_readonly(self) -> bool:
8571
+ """Check if a property is readonly.
8572
+
8573
+ :return: True when the property is readonly (not writable).
8574
+ :rtype: bool
8575
+ """
8576
+ ...
8577
+
8578
+ def is_property_set(self) -> bool:
8579
+ """Check if a property is set, use for testing operator properties.
8580
+
8581
+ :return: True when the property has been set.
8582
+ :rtype: bool
8583
+ """
8584
+ ...
8585
+
8586
+ def items(self):
8587
+ """Returns the items of this objects custom properties (matches Python's
8588
+ dictionary function of the same name).
8589
+
8590
+ :return: custom property key, value pairs.
8591
+ """
8592
+ ...
8593
+
8594
+ def keyframe_delete(self) -> bool:
8595
+ """Remove a keyframe from this properties fcurve.
8596
+
8597
+ :return: Success of keyframe deletion.
8598
+ :rtype: bool
8599
+ """
8600
+ ...
8601
+
8602
+ def keyframe_insert(self) -> bool:
8603
+ """Insert a keyframe on the property given, adding fcurves and animation data when necessary.
8604
+
8605
+ :return: Success of keyframe insertion.
8606
+ :rtype: bool
8607
+ """
8608
+ ...
8609
+
8610
+ def keys(self):
8611
+ """Returns the keys of this objects custom properties (matches Python's
8612
+ dictionary function of the same name).
8613
+
8614
+ :return: custom property keys.
8615
+ """
8616
+ ...
8617
+
8618
+ def path_from_id(self) -> str:
8619
+ """Returns the data path from the ID to this object (string).
8620
+
8621
+ :return: The path from `bpy.types.bpy_struct.id_data`
8622
+ to this struct and property (when given).
8623
+ :rtype: str
8624
+ """
8625
+ ...
8626
+
8627
+ def path_menu(
8628
+ self,
8629
+ searchpaths: list[str],
8630
+ operator: str,
8631
+ *,
8632
+ props_default: dict = None,
8633
+ prop_filepath: str | None = "filepath",
8634
+ filter_ext: collections.abc.Callable | None = None,
8635
+ filter_path=None,
8636
+ display_name: collections.abc.Callable | None = None,
8637
+ add_operator=None,
8638
+ add_operator_props=None,
8639
+ ):
8640
+ """Populate a menu from a list of paths.
8641
+
8642
+ :param searchpaths: Paths to scan.
8643
+ :type searchpaths: list[str]
8644
+ :param operator: The operator id to use with each file.
8645
+ :type operator: str
8646
+ :param props_default: Properties to assign to each operator.
8647
+ :type props_default: dict
8648
+ :param prop_filepath: Optional operator filepath property (defaults to "filepath").
8649
+ :type prop_filepath: str | None
8650
+ :param filter_ext: Optional callback that takes the file extensions.
8651
+
8652
+ Returning false excludes the file from the list.
8653
+ :type filter_ext: collections.abc.Callable | None
8654
+ :param filter_path:
8655
+ :param display_name: Optional callback that takes the full path, returns the name to display.
8656
+ :type display_name: collections.abc.Callable | None
8657
+ :param add_operator:
8658
+ :param add_operator_props:
8659
+ """
8660
+ ...
8661
+
8662
+ def path_resolve(self):
8663
+ """Returns the property from the path, raise an exception when not found."""
8664
+ ...
8665
+
8666
+ def pop(self):
8667
+ """Remove and return the value of the custom property assigned to key or default
8668
+ when not found (matches Python's dictionary function of the same name).
8669
+
8670
+ """
8671
+ ...
8672
+
8673
+ def prepend(self, draw_func):
8674
+ """Prepend a draw function to this menu, takes the same arguments as
8675
+ the menus draw function
8676
+
8677
+ :param draw_func:
8678
+ """
8679
+ ...
8680
+
8681
+ def property_overridable_library_set(self) -> bool:
8682
+ """Define a property as overridable or not (only for custom properties!).
8683
+
8684
+ :return: True when the overridable status of the property was successfully set.
8685
+ :rtype: bool
8686
+ """
8687
+ ...
8688
+
8689
+ def property_unset(self):
8690
+ """Unset a property, will use default value afterward."""
8691
+ ...
8692
+
8693
+ def remove(self, draw_func):
8694
+ """Remove a draw function that has been added to this menu
8695
+
8696
+ :param draw_func:
8697
+ """
8698
+ ...
8699
+
8700
+ def type_recast(self):
8701
+ """Return a new instance, this is needed because types
8702
+ such as textures can be changed at runtime.
8703
+
8704
+ :return: a new instance of this object with the type initialized again.
8705
+ """
8706
+ ...
8707
+
8708
+ def values(self):
8709
+ """Returns the values of this objects custom properties (matches Python's
8710
+ dictionary function of the same name).
8711
+
8712
+ :return: custom property values.
8713
+ """
8714
+ ...
8715
+
8444
8716
  class NODE_MT_geometry_node_GEO_INPUT_GROUP(bpy_types._GenericUI):
8445
8717
  bl_idname: typing.Any
8446
8718
  bl_label: typing.Any
@@ -734,7 +734,6 @@ class _defs_grease_pencil_paint:
734
734
  cutter: typing.Any
735
735
  line: typing.Any
736
736
  polyline: typing.Any
737
- tint: typing.Any
738
737
 
739
738
  def generate_from_brushes(self, context):
740
739
  """
@@ -419,7 +419,7 @@ def repo_enable_from_drop(
419
419
 
420
420
  ...
421
421
 
422
- def repo_lock(
422
+ def repo_lock_all(
423
423
  override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
424
424
  execution_context: int | str | None = None,
425
425
  undo: bool | None = None,
@@ -490,6 +490,20 @@ def repo_unlock(
490
490
  override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
491
491
  execution_context: int | str | None = None,
492
492
  undo: bool | None = None,
493
+ ):
494
+ """Remove the repository file-system lock
495
+
496
+ :type override_context: bpy.types.Context | dict[str, typing.Any] | None
497
+ :type execution_context: int | str | None
498
+ :type undo: bool | None
499
+ """
500
+
501
+ ...
502
+
503
+ def repo_unlock_all(
504
+ override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
505
+ execution_context: int | str | None = None,
506
+ undo: bool | None = None,
493
507
  ):
494
508
  """Unlock repositories - to test unlocking
495
509