fake-bpy-module 20240706__py3-none-any.whl → 20240707__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 (62) hide show
  1. bl_operators/assets/__init__.pyi +8 -8
  2. bl_operators/image_as_planes/__init__.pyi +43 -43
  3. bl_operators/node/__init__.pyi +234 -234
  4. bl_operators/object_quick_effects/__init__.pyi +21 -21
  5. bl_operators/presets/__init__.pyi +388 -388
  6. bl_ui/properties_collection/__init__.pyi +12 -12
  7. bl_ui/properties_constraint/__init__.pyi +954 -954
  8. bl_ui/properties_data_armature/__init__.pyi +85 -85
  9. bl_ui/properties_data_bone/__init__.pyi +12 -12
  10. bl_ui/properties_data_curve/__init__.pyi +92 -92
  11. bl_ui/properties_data_curves/__init__.pyi +12 -12
  12. bl_ui/properties_data_empty/__init__.pyi +12 -12
  13. bl_ui/properties_data_gpencil/__init__.pyi +265 -265
  14. bl_ui/properties_data_grease_pencil/__init__.pyi +312 -312
  15. bl_ui/properties_data_lattice/__init__.pyi +12 -12
  16. bl_ui/properties_data_light/__init__.pyi +12 -12
  17. bl_ui/properties_data_lightprobe/__init__.pyi +12 -12
  18. bl_ui/properties_data_mesh/__init__.pyi +527 -527
  19. bl_ui/properties_data_metaball/__init__.pyi +12 -12
  20. bl_ui/properties_data_modifier/__init__.pyi +19 -19
  21. bl_ui/properties_data_pointcloud/__init__.pyi +140 -140
  22. bl_ui/properties_data_shaderfx/__init__.pyi +5 -5
  23. bl_ui/properties_data_speaker/__init__.pyi +12 -12
  24. bl_ui/properties_data_volume/__init__.pyi +65 -65
  25. bl_ui/properties_freestyle/__init__.pyi +248 -248
  26. bl_ui/properties_material/__init__.pyi +145 -145
  27. bl_ui/properties_material_gpencil/__init__.pyi +86 -86
  28. bl_ui/properties_object/__init__.pyi +75 -75
  29. bl_ui/properties_output/__init__.pyi +201 -201
  30. bl_ui/properties_particle/__init__.pyi +220 -220
  31. bl_ui/properties_physics_cloth/__init__.pyi +12 -12
  32. bl_ui/properties_physics_common/__init__.pyi +12 -12
  33. bl_ui/properties_physics_dynamicpaint/__init__.pyi +187 -187
  34. bl_ui/properties_physics_field/__init__.pyi +19 -19
  35. bl_ui/properties_physics_fluid/__init__.pyi +61 -61
  36. bl_ui/properties_physics_rigidbody/__init__.pyi +5 -5
  37. bl_ui/properties_physics_rigidbody_constraint/__init__.pyi +5 -5
  38. bl_ui/properties_physics_softbody/__init__.pyi +12 -12
  39. bl_ui/properties_render/__init__.pyi +217 -217
  40. bl_ui/properties_scene/__init__.pyi +143 -143
  41. bl_ui/properties_texture/__init__.pyi +156 -156
  42. bl_ui/properties_view_layer/__init__.pyi +78 -78
  43. bl_ui/properties_workspace/__init__.pyi +64 -64
  44. bl_ui/properties_world/__init__.pyi +12 -12
  45. bl_ui/space_clip/__init__.pyi +366 -366
  46. bl_ui/space_dopesheet/__init__.pyi +176 -176
  47. bl_ui/space_filebrowser/__init__.pyi +735 -735
  48. bl_ui/space_image/__init__.pyi +646 -646
  49. bl_ui/space_sequencer/__init__.pyi +841 -389
  50. bl_ui/space_time/__init__.pyi +11 -11
  51. bl_ui/space_userpref/__init__.pyi +684 -684
  52. bl_ui/space_view3d/__init__.pyi +1152 -1152
  53. bl_ui/space_view3d_toolbar/__init__.pyi +2831 -2831
  54. bpy/types/__init__.pyi +69750 -69696
  55. {fake_bpy_module-20240706.dist-info → fake_bpy_module-20240707.dist-info}/METADATA +1 -1
  56. {fake_bpy_module-20240706.dist-info → fake_bpy_module-20240707.dist-info}/RECORD +62 -62
  57. freestyle/utils/__init__.pyi +1 -1
  58. keyingsets_builtins/__init__.pyi +87 -87
  59. mathutils/__init__.pyi +156 -6
  60. nodeitems_builtins/__init__.pyi +7 -7
  61. {fake_bpy_module-20240706.dist-info → fake_bpy_module-20240707.dist-info}/WHEEL +0 -0
  62. {fake_bpy_module-20240706.dist-info → fake_bpy_module-20240707.dist-info}/top_level.txt +0 -0
@@ -242,14 +242,6 @@ class ASSET_OT_open_containing_blend_file:
242
242
  """
243
243
  ...
244
244
 
245
- class AssetBrowserMetadataOperator:
246
- def poll(self, context):
247
- """
248
-
249
- :param context:
250
- """
251
- ...
252
-
253
245
  class ASSET_OT_tag_add(AssetBrowserMetadataOperator):
254
246
  """Add a new keyword tag to the active asset"""
255
247
 
@@ -677,3 +669,11 @@ class ASSET_OT_tag_remove(AssetBrowserMetadataOperator):
677
669
  :return: custom property values.
678
670
  """
679
671
  ...
672
+
673
+ class AssetBrowserMetadataOperator:
674
+ def poll(self, context):
675
+ """
676
+
677
+ :param context:
678
+ """
679
+ ...
@@ -8,49 +8,6 @@ import bpy_extras.object_utils
8
8
  GenericType1 = typing.TypeVar("GenericType1")
9
9
  GenericType2 = typing.TypeVar("GenericType2")
10
10
 
11
- class TextureProperties_MixIn:
12
- t: typing.Any
13
-
14
- def draw_texture_config(self, context):
15
- """
16
-
17
- :param context:
18
- """
19
- ...
20
-
21
- class MaterialProperties_MixIn:
22
- def draw_material_config(self, context):
23
- """
24
-
25
- :param context:
26
- """
27
- ...
28
-
29
- class ImageSpec:
30
- """ImageSpec(image, size, frame_start, frame_offset, frame_duration)"""
31
-
32
- frame_duration: typing.Any
33
- frame_offset: typing.Any
34
- frame_start: typing.Any
35
- image: typing.Any
36
- size: typing.Any
37
-
38
- def count(self, value):
39
- """Return number of occurrences of value.
40
-
41
- :param value:
42
- """
43
- ...
44
-
45
- def index(self, value, start=0, stop=9223372036854775807):
46
- """Return first index of value.Raises ValueError if the value is not present.
47
-
48
- :param value:
49
- :param start:
50
- :param stop:
51
- """
52
- ...
53
-
54
11
  class IMAGE_OT_convert_to_mesh_plane(TextureProperties_MixIn, MaterialProperties_MixIn):
55
12
  """Convert selected reference images to textured mesh plane"""
56
13
 
@@ -644,6 +601,49 @@ class IMAGE_OT_import_as_mesh_planes(
644
601
  """
645
602
  ...
646
603
 
604
+ class ImageSpec:
605
+ """ImageSpec(image, size, frame_start, frame_offset, frame_duration)"""
606
+
607
+ frame_duration: typing.Any
608
+ frame_offset: typing.Any
609
+ frame_start: typing.Any
610
+ image: typing.Any
611
+ size: typing.Any
612
+
613
+ def count(self, value):
614
+ """Return number of occurrences of value.
615
+
616
+ :param value:
617
+ """
618
+ ...
619
+
620
+ def index(self, value, start=0, stop=9223372036854775807):
621
+ """Return first index of value.Raises ValueError if the value is not present.
622
+
623
+ :param value:
624
+ :param start:
625
+ :param stop:
626
+ """
627
+ ...
628
+
629
+ class MaterialProperties_MixIn:
630
+ def draw_material_config(self, context):
631
+ """
632
+
633
+ :param context:
634
+ """
635
+ ...
636
+
637
+ class TextureProperties_MixIn:
638
+ t: typing.Any
639
+
640
+ def draw_texture_config(self, context):
641
+ """
642
+
643
+ :param context:
644
+ """
645
+ ...
646
+
647
647
  def apply_texture_options(texture, img_spec): ...
648
648
  def auto_align_nodes(node_tree):
649
649
  """Given a shader node tree, arrange nodes neatly relative to the output node."""