fake-bpy-module 20240808__py3-none-any.whl → 20240809__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.
- bl_ui/space_node/__init__.pyi +41 -0
- bl_ui/space_view3d/__init__.pyi +59 -0
- bpy/ops/uv/__init__.pyi +3 -0
- bpy/types/__init__.pyi +31 -13
- {fake_bpy_module-20240808.dist-info → fake_bpy_module-20240809.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240808.dist-info → fake_bpy_module-20240809.dist-info}/RECORD +8 -8
- {fake_bpy_module-20240808.dist-info → fake_bpy_module-20240809.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240808.dist-info → fake_bpy_module-20240809.dist-info}/top_level.txt +0 -0
bl_ui/space_node/__init__.pyi
CHANGED
|
@@ -589,6 +589,47 @@ class NODE_PT_backdrop(bpy.types.Panel):
|
|
|
589
589
|
"""
|
|
590
590
|
...
|
|
591
591
|
|
|
592
|
+
class NODE_PT_compositor_debug(bpy.types.Panel):
|
|
593
|
+
bl_category: typing.Any
|
|
594
|
+
bl_label: typing.Any
|
|
595
|
+
bl_options: typing.Any
|
|
596
|
+
bl_parent_id: typing.Any
|
|
597
|
+
bl_region_type: typing.Any
|
|
598
|
+
bl_rna: typing.Any
|
|
599
|
+
bl_space_type: typing.Any
|
|
600
|
+
id_data: typing.Any
|
|
601
|
+
|
|
602
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
603
|
+
"""
|
|
604
|
+
|
|
605
|
+
:return: The RNA type or default when not found.
|
|
606
|
+
:rtype: bpy.types.Struct
|
|
607
|
+
"""
|
|
608
|
+
...
|
|
609
|
+
|
|
610
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
611
|
+
"""
|
|
612
|
+
|
|
613
|
+
:return: The class or default when not found.
|
|
614
|
+
:rtype: typing.Any
|
|
615
|
+
"""
|
|
616
|
+
...
|
|
617
|
+
|
|
618
|
+
def draw(self, context):
|
|
619
|
+
"""
|
|
620
|
+
|
|
621
|
+
:param context:
|
|
622
|
+
"""
|
|
623
|
+
...
|
|
624
|
+
|
|
625
|
+
@classmethod
|
|
626
|
+
def poll(cls, context):
|
|
627
|
+
"""
|
|
628
|
+
|
|
629
|
+
:param context:
|
|
630
|
+
"""
|
|
631
|
+
...
|
|
632
|
+
|
|
592
633
|
class NODE_PT_geometry_node_tool_mode(bpy.types.Panel):
|
|
593
634
|
bl_label: typing.Any
|
|
594
635
|
bl_region_type: typing.Any
|
bl_ui/space_view3d/__init__.pyi
CHANGED
|
@@ -17,6 +17,34 @@ class BoneOptions:
|
|
|
17
17
|
"""
|
|
18
18
|
...
|
|
19
19
|
|
|
20
|
+
class GREASE_PENCIL_MT_Layers(bpy.types.Menu):
|
|
21
|
+
bl_label: typing.Any
|
|
22
|
+
bl_rna: typing.Any
|
|
23
|
+
id_data: typing.Any
|
|
24
|
+
|
|
25
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
26
|
+
"""
|
|
27
|
+
|
|
28
|
+
:return: The RNA type or default when not found.
|
|
29
|
+
:rtype: bpy.types.Struct
|
|
30
|
+
"""
|
|
31
|
+
...
|
|
32
|
+
|
|
33
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
34
|
+
"""
|
|
35
|
+
|
|
36
|
+
:return: The class or default when not found.
|
|
37
|
+
:rtype: typing.Any
|
|
38
|
+
"""
|
|
39
|
+
...
|
|
40
|
+
|
|
41
|
+
def draw(self, context):
|
|
42
|
+
"""
|
|
43
|
+
|
|
44
|
+
:param context:
|
|
45
|
+
"""
|
|
46
|
+
...
|
|
47
|
+
|
|
20
48
|
class ShowHideMenu:
|
|
21
49
|
bl_label: typing.Any
|
|
22
50
|
|
|
@@ -6631,6 +6659,37 @@ class VIEW3D_PT_grease_pencil_multi_frame(bpy.types.Panel):
|
|
|
6631
6659
|
"""
|
|
6632
6660
|
...
|
|
6633
6661
|
|
|
6662
|
+
class VIEW3D_PT_greasepencil_draw_context_menu(bpy.types.Panel):
|
|
6663
|
+
bl_label: typing.Any
|
|
6664
|
+
bl_region_type: typing.Any
|
|
6665
|
+
bl_rna: typing.Any
|
|
6666
|
+
bl_space_type: typing.Any
|
|
6667
|
+
bl_ui_units_x: typing.Any
|
|
6668
|
+
id_data: typing.Any
|
|
6669
|
+
|
|
6670
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
6671
|
+
"""
|
|
6672
|
+
|
|
6673
|
+
:return: The RNA type or default when not found.
|
|
6674
|
+
:rtype: bpy.types.Struct
|
|
6675
|
+
"""
|
|
6676
|
+
...
|
|
6677
|
+
|
|
6678
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
6679
|
+
"""
|
|
6680
|
+
|
|
6681
|
+
:return: The class or default when not found.
|
|
6682
|
+
:rtype: typing.Any
|
|
6683
|
+
"""
|
|
6684
|
+
...
|
|
6685
|
+
|
|
6686
|
+
def draw(self, context):
|
|
6687
|
+
"""
|
|
6688
|
+
|
|
6689
|
+
:param context:
|
|
6690
|
+
"""
|
|
6691
|
+
...
|
|
6692
|
+
|
|
6634
6693
|
class VIEW3D_PT_object_type_visibility(bpy.types.Panel):
|
|
6635
6694
|
bl_label: typing.Any
|
|
6636
6695
|
bl_region_type: typing.Any
|
bpy/ops/uv/__init__.pyi
CHANGED
|
@@ -625,6 +625,7 @@ def remove_doubles(
|
|
|
625
625
|
*,
|
|
626
626
|
threshold: float | None = 0.02,
|
|
627
627
|
use_unselected: bool | None = False,
|
|
628
|
+
use_shared_vertex: bool | None = False,
|
|
628
629
|
):
|
|
629
630
|
"""Selected UV vertices that are within a radius of each other are welded together
|
|
630
631
|
|
|
@@ -635,6 +636,8 @@ def remove_doubles(
|
|
|
635
636
|
:type threshold: float | None
|
|
636
637
|
:param use_unselected: Unselected, Merge selected to other unselected vertices
|
|
637
638
|
:type use_unselected: bool | None
|
|
639
|
+
:param use_shared_vertex: Shared Vertex, Weld UVs based on shared vertices
|
|
640
|
+
:type use_shared_vertex: bool | None
|
|
638
641
|
"""
|
|
639
642
|
|
|
640
643
|
...
|
bpy/types/__init__.pyi
CHANGED
|
@@ -67975,6 +67975,7 @@ FileHandler
|
|
|
67975
67975
|
* bpy.context.grease_pencil
|
|
67976
67976
|
* BlendData.grease_pencils_v3
|
|
67977
67977
|
* BlendDataGreasePencilsV3.new
|
|
67978
|
+
* BlendDataGreasePencilsV3.remove
|
|
67978
67979
|
|
|
67979
67980
|
:columns: 2
|
|
67980
67981
|
|
|
@@ -84377,7 +84378,6 @@ Menu.poll function.
|
|
|
84377
84378
|
* BlendData.grease_pencils
|
|
84378
84379
|
* BlendDataGreasePencils.new
|
|
84379
84380
|
* BlendDataGreasePencils.remove
|
|
84380
|
-
* BlendDataGreasePencilsV3.remove
|
|
84381
84381
|
* MovieClip.grease_pencil
|
|
84382
84382
|
* MovieTrackingTrack.grease_pencil
|
|
84383
84383
|
* NodeTree.grease_pencil
|
|
@@ -101353,7 +101353,7 @@ class BlendDataGreasePencilsV3(bpy_prop_collection[GreasePencilv3], bpy_struct):
|
|
|
101353
101353
|
|
|
101354
101354
|
def remove(
|
|
101355
101355
|
self,
|
|
101356
|
-
grease_pencil:
|
|
101356
|
+
grease_pencil: GreasePencilv3,
|
|
101357
101357
|
do_unlink: bool | None = True,
|
|
101358
101358
|
do_id_user: bool | None = True,
|
|
101359
101359
|
do_ui_user: bool | None = True,
|
|
@@ -101361,7 +101361,7 @@ class BlendDataGreasePencilsV3(bpy_prop_collection[GreasePencilv3], bpy_struct):
|
|
|
101361
101361
|
"""Remove a grease pencil instance from the current blendfile
|
|
101362
101362
|
|
|
101363
101363
|
:param grease_pencil: Grease Pencil to remove
|
|
101364
|
-
:type grease_pencil:
|
|
101364
|
+
:type grease_pencil: GreasePencilv3
|
|
101365
101365
|
:param do_unlink: Unlink all usages of this grease pencil before deleting it
|
|
101366
101366
|
:type do_unlink: bool | None
|
|
101367
101367
|
:param do_id_user: Decrement user counter of all datablocks used by this grease pencil
|
|
@@ -159774,32 +159774,32 @@ class GreasePencilDrawing(bpy_struct):
|
|
|
159774
159774
|
:type: int
|
|
159775
159775
|
"""
|
|
159776
159776
|
|
|
159777
|
-
def
|
|
159778
|
-
"""Add new
|
|
159777
|
+
def add_strokes(self, sizes: collections.abc.Iterable[int] | None):
|
|
159778
|
+
"""Add new strokes with provided sizes at the end
|
|
159779
159779
|
|
|
159780
|
-
:param sizes: Sizes, The number of points in each
|
|
159780
|
+
:param sizes: Sizes, The number of points in each stroke
|
|
159781
159781
|
:type sizes: collections.abc.Iterable[int] | None
|
|
159782
159782
|
"""
|
|
159783
159783
|
...
|
|
159784
159784
|
|
|
159785
|
-
def
|
|
159786
|
-
"""Remove all
|
|
159785
|
+
def remove_strokes(self, indices: collections.abc.Iterable[int] | None = (0)):
|
|
159786
|
+
"""Remove all strokes. If indices are provided, remove only the strokes with the given indices.
|
|
159787
159787
|
|
|
159788
|
-
:param indices: Indices, The indices of the
|
|
159788
|
+
:param indices: Indices, The indices of the strokes to remove
|
|
159789
159789
|
:type indices: collections.abc.Iterable[int] | None
|
|
159790
159790
|
"""
|
|
159791
159791
|
...
|
|
159792
159792
|
|
|
159793
|
-
def
|
|
159793
|
+
def resize_strokes(
|
|
159794
159794
|
self,
|
|
159795
159795
|
sizes: collections.abc.Iterable[int] | None,
|
|
159796
159796
|
indices: collections.abc.Iterable[int] | None = (0),
|
|
159797
159797
|
):
|
|
159798
|
-
"""Resize all existing
|
|
159798
|
+
"""Resize all existing strkoes. If indices are provided, resize only the strokes with the given indices. If the new size for a stroke is smaller, the stroke is trimmed. If the new size for a stroke is larger, the new end values are default initialized.
|
|
159799
159799
|
|
|
159800
|
-
:param sizes: Sizes, The number of points in each
|
|
159800
|
+
:param sizes: Sizes, The number of points in each stroke
|
|
159801
159801
|
:type sizes: collections.abc.Iterable[int] | None
|
|
159802
|
-
:param indices: Indices, The indices of the
|
|
159802
|
+
:param indices: Indices, The indices of the stroke to resize
|
|
159803
159803
|
:type indices: collections.abc.Iterable[int] | None
|
|
159804
159804
|
"""
|
|
159805
159805
|
...
|
|
@@ -196685,6 +196685,12 @@ class PreferencesEdit(bpy_struct):
|
|
|
196685
196685
|
class PreferencesExperimental(bpy_struct):
|
|
196686
196686
|
"""Experimental features"""
|
|
196687
196687
|
|
|
196688
|
+
enable_new_cpu_compositor: bool
|
|
196689
|
+
""" Enable the new CPU compositor
|
|
196690
|
+
|
|
196691
|
+
:type: bool
|
|
196692
|
+
"""
|
|
196693
|
+
|
|
196688
196694
|
enable_overlay_next: bool
|
|
196689
196695
|
""" Enable the new Overlay codebase, requires restart
|
|
196690
196696
|
|
|
@@ -201610,6 +201616,12 @@ class RenderSettings(bpy_struct):
|
|
|
201610
201616
|
:type: bool
|
|
201611
201617
|
"""
|
|
201612
201618
|
|
|
201619
|
+
use_new_cpu_compositor: bool
|
|
201620
|
+
""" Use the new CPU compositor implementation
|
|
201621
|
+
|
|
201622
|
+
:type: bool
|
|
201623
|
+
"""
|
|
201624
|
+
|
|
201613
201625
|
use_overwrite: bool
|
|
201614
201626
|
""" Overwrite existing files while rendering
|
|
201615
201627
|
|
|
@@ -256415,6 +256427,8 @@ GRAPH_PT_proportional_edit: bl_ui.space_graph.GRAPH_PT_proportional_edit
|
|
|
256415
256427
|
|
|
256416
256428
|
GRAPH_PT_snapping: bl_ui.space_graph.GRAPH_PT_snapping
|
|
256417
256429
|
|
|
256430
|
+
GREASE_PENCIL_MT_Layers: bl_ui.space_view3d.GREASE_PENCIL_MT_Layers
|
|
256431
|
+
|
|
256418
256432
|
GREASE_PENCIL_MT_grease_pencil_add_layer_extra: bl_ui.properties_data_grease_pencil.GREASE_PENCIL_MT_grease_pencil_add_layer_extra
|
|
256419
256433
|
|
|
256420
256434
|
GREASE_PENCIL_MT_group_context_menu: bl_ui.properties_data_grease_pencil.GREASE_PENCIL_MT_group_context_menu
|
|
@@ -256921,6 +256935,8 @@ NODE_PT_annotation: bl_ui.space_node.NODE_PT_annotation
|
|
|
256921
256935
|
|
|
256922
256936
|
NODE_PT_backdrop: bl_ui.space_node.NODE_PT_backdrop
|
|
256923
256937
|
|
|
256938
|
+
NODE_PT_compositor_debug: bl_ui.space_node.NODE_PT_compositor_debug
|
|
256939
|
+
|
|
256924
256940
|
NODE_PT_geometry_node_tool_mode: bl_ui.space_node.NODE_PT_geometry_node_tool_mode
|
|
256925
256941
|
|
|
256926
256942
|
NODE_PT_geometry_node_tool_object_types: bl_ui.space_node.NODE_PT_geometry_node_tool_object_types
|
|
@@ -258709,6 +258725,8 @@ VIEW3D_PT_grease_pencil: bl_ui.space_view3d.VIEW3D_PT_grease_pencil
|
|
|
258709
258725
|
|
|
258710
258726
|
VIEW3D_PT_grease_pencil_multi_frame: bl_ui.space_view3d.VIEW3D_PT_grease_pencil_multi_frame
|
|
258711
258727
|
|
|
258728
|
+
VIEW3D_PT_greasepencil_draw_context_menu: bl_ui.space_view3d.VIEW3D_PT_greasepencil_draw_context_menu
|
|
258729
|
+
|
|
258712
258730
|
VIEW3D_PT_mask: bl_ui.space_view3d_toolbar.VIEW3D_PT_mask
|
|
258713
258731
|
|
|
258714
258732
|
VIEW3D_PT_object_type_visibility: bl_ui.space_view3d.VIEW3D_PT_object_type_visibility
|
|
@@ -155,7 +155,7 @@ bl_ui/space_graph/__init__.pyi,sha256=Jv0T0jurR8ad3QV5VTQxMeacROOw1lsM3YLSxFsOdl
|
|
|
155
155
|
bl_ui/space_image/__init__.pyi,sha256=hTzquhCkw-yLNWvAW-4ADTMqb6gmB8LYqmHEJIycn-M,47163
|
|
156
156
|
bl_ui/space_info/__init__.pyi,sha256=OA_SjJnHNfv4TBu647shQbZtSryhtfPW849ZDU1uXf0,3594
|
|
157
157
|
bl_ui/space_nla/__init__.pyi,sha256=iwfoNM2ZyZfeb4jJR4BNg9ys_RRjo4BKOO-l9bXCzCE,10252
|
|
158
|
-
bl_ui/space_node/__init__.pyi,sha256=
|
|
158
|
+
bl_ui/space_node/__init__.pyi,sha256=AjLKbr3plUzPai2ziAuurU4LoAlek9hYpzeBaiqAdP0,20067
|
|
159
159
|
bl_ui/space_outliner/__init__.pyi,sha256=T8KGIFcvlhXpLegq4i2k0cXNy_B4CnLUnijP-9jyDj0,8735
|
|
160
160
|
bl_ui/space_properties/__init__.pyi,sha256=qWOFhhl1pqvi234S9Pi5kcKVgpcXYZ-bSAsbnbtn2tk,2075
|
|
161
161
|
bl_ui/space_sequencer/__init__.pyi,sha256=xcmLEQucjljFbbo1E_F1RwRwytdAOmZXSQM3dxmVnXw,55456
|
|
@@ -167,7 +167,7 @@ bl_ui/space_toolsystem_common/__init__.pyi,sha256=rQ5gwLEW3BUASONIAYcsV-8iY_-nzY
|
|
|
167
167
|
bl_ui/space_toolsystem_toolbar/__init__.pyi,sha256=x9Lwpmg38TNsUvFURZRbioBYmqyAxLuPPo15GuXir6o,11661
|
|
168
168
|
bl_ui/space_topbar/__init__.pyi,sha256=JeTpm65HjAyvi6cGk4DlhlrErnmaMi4Ko5u0RyeV0lU,16553
|
|
169
169
|
bl_ui/space_userpref/__init__.pyi,sha256=VBDZ-UTou5eq3zvpDaqa3BGm-NlUgqZh-SaaXiQurqU,82505
|
|
170
|
-
bl_ui/space_view3d/__init__.pyi,sha256=
|
|
170
|
+
bl_ui/space_view3d/__init__.pyi,sha256=wQ-KStYlrBWIkZBpa3kAHIP_pxm33cg0iWSm3qWuRcs,174819
|
|
171
171
|
bl_ui/space_view3d_toolbar/__init__.pyi,sha256=mEIN12EkfZcTZD2APV05s6BABxi6gOzqXUzahxzJNm8,80870
|
|
172
172
|
bl_ui/temp_anim_layers/__init__.pyi,sha256=cPcRrl12m0HeCrRJd3YncBwj3IkHoJX01OfEi3GSS-k,937
|
|
173
173
|
bl_ui/utils/__init__.pyi,sha256=OrumGsAE1S8zBxb80PtYlulQjeAcKneShcJLU-giz5o,612
|
|
@@ -264,7 +264,7 @@ bpy/ops/texture/__init__.pyi,sha256=JvXHincSWbQNfsGW3Jr0wA31kQbNEi_xvIi3hSpLj-Y,
|
|
|
264
264
|
bpy/ops/transform/__init__.pyi,sha256=dsRyYvw41zthwUhRv1MUK0hYd1FTEG8s969FyGiX6rs,68932
|
|
265
265
|
bpy/ops/ui/__init__.pyi,sha256=Rd08TLnmG9d4jAvIdxcxB1KsTPrFT4OPfM21rM0tVXQ,17133
|
|
266
266
|
bpy/ops/uilist/__init__.pyi,sha256=hEP5QTspoN44U5VjMpx8J_8CUp36dXSpgUUQquvvDOw,2206
|
|
267
|
-
bpy/ops/uv/__init__.pyi,sha256=
|
|
267
|
+
bpy/ops/uv/__init__.pyi,sha256=l2UpfrLjzRqd8ev0KCe3v86z6mBdeHWx0JpqhMiwO4Y,52281
|
|
268
268
|
bpy/ops/view2d/__init__.pyi,sha256=gXNF0dBhiPqX3rOb40Ev8J1sX2TDbve35FAQSfcF1XQ,9356
|
|
269
269
|
bpy/ops/view3d/__init__.pyi,sha256=ChTvd_Tu6AhhVC6Yh-XGL23vPJ3zyn1SlPDvbTdaeKY,41924
|
|
270
270
|
bpy/ops/wm/__init__.pyi,sha256=5NS8drhyZxfLU3hdbaPOoXLTFTZLJrpWiTFMxsB-F4g,229805
|
|
@@ -272,7 +272,7 @@ bpy/ops/workspace/__init__.pyi,sha256=OSELKT_HUs2W6cOk2wOigZgkbieGezMVWTi45f4x-I
|
|
|
272
272
|
bpy/ops/world/__init__.pyi,sha256=_z3cX9CYV0nTmSiSQcC82nRiXYriWMcHomfxmSl2GxM,1057
|
|
273
273
|
bpy/path/__init__.pyi,sha256=J_4vrRw_TTuMW4KHqSHZqYIKfDoCgG6Wv1PIFZx7__4,5612
|
|
274
274
|
bpy/props/__init__.pyi,sha256=5dF03F-bYYW-j5P9eDOgSJ07JYRVwMvjmMjBYjCrjS8,29631
|
|
275
|
-
bpy/types/__init__.pyi,sha256=
|
|
275
|
+
bpy/types/__init__.pyi,sha256=dCP-QFQpnMwxBL1HnTmWCY1rmBZqVLimW11cq5UlaGg,6305519
|
|
276
276
|
bpy/utils/__init__.pyi,sha256=fuZc6nInRbbso-qzaeNWGfipuB37ySvxZVrJcEJ-RxM,13280
|
|
277
277
|
bpy/utils/previews/__init__.pyi,sha256=0mvcirUV7D4ByWzEUIBVEEJ1VTFhBjBcstllI7L6MRc,2439
|
|
278
278
|
bpy/utils/units/__init__.pyi,sha256=2OtqF54xi6peGyNeSGkuaLpytf2EESF753zqooe8bwc,2719
|
|
@@ -356,7 +356,7 @@ rna_xml/__init__.pyi,sha256=aUk0kaxu1bMT5z1b2S_CnI0r-p7119GGYDjeV65sx6w,670
|
|
|
356
356
|
rna_xml/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
357
357
|
sys_info/__init__.pyi,sha256=-GCmGVtiditgEnxiqi7hwH2wbEMmrtUNGvMEbxVezU4,189
|
|
358
358
|
sys_info/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
359
|
-
fake_bpy_module-
|
|
360
|
-
fake_bpy_module-
|
|
361
|
-
fake_bpy_module-
|
|
362
|
-
fake_bpy_module-
|
|
359
|
+
fake_bpy_module-20240809.dist-info/METADATA,sha256=Cfu9Q1cV21l4X_nMktsS-5m4KpcmBQYtlwRegQZNh-M,7289
|
|
360
|
+
fake_bpy_module-20240809.dist-info/WHEEL,sha256=R0nc6qTxuoLk7ShA2_Y-UWkN8ZdfDBG2B6Eqpz2WXbs,91
|
|
361
|
+
fake_bpy_module-20240809.dist-info/top_level.txt,sha256=laOLfHIg0_6N4ntsGrWh85yODawYeLVGI-wex_FGLUI,509
|
|
362
|
+
fake_bpy_module-20240809.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|