fake-bpy-module 20240808__py3-none-any.whl → 20240810__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 +221 -34
- {fake_bpy_module-20240808.dist-info → fake_bpy_module-20240810.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240808.dist-info → fake_bpy_module-20240810.dist-info}/RECORD +9 -9
- freestyle/utils/__init__.pyi +1 -1
- {fake_bpy_module-20240808.dist-info → fake_bpy_module-20240810.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240808.dist-info → fake_bpy_module-20240810.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
|
@@ -55347,6 +55347,48 @@ The USDHookExample
|
|
|
55347
55347
|
:columns: 2
|
|
55348
55348
|
|
|
55349
55349
|
|
|
55350
|
+
--------------------
|
|
55351
|
+
|
|
55352
|
+
* bpy_struct.id_data
|
|
55353
|
+
|
|
55354
|
+
:columns: 2
|
|
55355
|
+
|
|
55356
|
+
|
|
55357
|
+
--------------------
|
|
55358
|
+
|
|
55359
|
+
* bpy_struct.as_pointer
|
|
55360
|
+
* bpy_struct.driver_add
|
|
55361
|
+
* bpy_struct.driver_remove
|
|
55362
|
+
* bpy_struct.get
|
|
55363
|
+
* bpy_struct.id_properties_clear
|
|
55364
|
+
* bpy_struct.id_properties_ensure
|
|
55365
|
+
* bpy_struct.id_properties_ui
|
|
55366
|
+
* bpy_struct.is_property_hidden
|
|
55367
|
+
* bpy_struct.is_property_overridable_library
|
|
55368
|
+
* bpy_struct.is_property_readonly
|
|
55369
|
+
* bpy_struct.is_property_set
|
|
55370
|
+
* bpy_struct.items
|
|
55371
|
+
* bpy_struct.keyframe_delete
|
|
55372
|
+
* bpy_struct.keyframe_insert
|
|
55373
|
+
* bpy_struct.keys
|
|
55374
|
+
* bpy_struct.path_from_id
|
|
55375
|
+
* bpy_struct.path_resolve
|
|
55376
|
+
* bpy_struct.pop
|
|
55377
|
+
* bpy_struct.property_overridable_library_set
|
|
55378
|
+
* bpy_struct.property_unset
|
|
55379
|
+
* bpy_struct.type_recast
|
|
55380
|
+
* bpy_struct.values
|
|
55381
|
+
|
|
55382
|
+
:columns: 2
|
|
55383
|
+
|
|
55384
|
+
|
|
55385
|
+
--------------------
|
|
55386
|
+
|
|
55387
|
+
* GPencilLayer.frames
|
|
55388
|
+
|
|
55389
|
+
:columns: 2
|
|
55390
|
+
|
|
55391
|
+
|
|
55350
55392
|
--------------------
|
|
55351
55393
|
|
|
55352
55394
|
* bpy_struct.id_data
|
|
@@ -67975,6 +68017,7 @@ FileHandler
|
|
|
67975
68017
|
* bpy.context.grease_pencil
|
|
67976
68018
|
* BlendData.grease_pencils_v3
|
|
67977
68019
|
* BlendDataGreasePencilsV3.new
|
|
68020
|
+
* BlendDataGreasePencilsV3.remove
|
|
67978
68021
|
|
|
67979
68022
|
:columns: 2
|
|
67980
68023
|
|
|
@@ -77087,6 +77130,8 @@ Executing the operator will then print all values.
|
|
|
77087
77130
|
* bpy.context.editable_gpencil_layers
|
|
77088
77131
|
* bpy.context.visible_gpencil_layers
|
|
77089
77132
|
* GreasePencil.layers
|
|
77133
|
+
* GreasePencilLayers.new
|
|
77134
|
+
* GreasePencilLayers.remove
|
|
77090
77135
|
|
|
77091
77136
|
:columns: 2
|
|
77092
77137
|
|
|
@@ -84377,7 +84422,6 @@ Menu.poll function.
|
|
|
84377
84422
|
* BlendData.grease_pencils
|
|
84378
84423
|
* BlendDataGreasePencils.new
|
|
84379
84424
|
* BlendDataGreasePencils.remove
|
|
84380
|
-
* BlendDataGreasePencilsV3.remove
|
|
84381
84425
|
* MovieClip.grease_pencil
|
|
84382
84426
|
* MovieTrackingTrack.grease_pencil
|
|
84383
84427
|
* NodeTree.grease_pencil
|
|
@@ -91292,6 +91336,10 @@ Base class for integrating USD Hydra based renderers.
|
|
|
91292
91336
|
|
|
91293
91337
|
--------------------
|
|
91294
91338
|
|
|
91339
|
+
* GPencilFrames.copy
|
|
91340
|
+
* GPencilFrames.copy
|
|
91341
|
+
* GPencilFrames.new
|
|
91342
|
+
* GPencilFrames.remove
|
|
91295
91343
|
* GPencilLayer.active_frame
|
|
91296
91344
|
* GPencilLayer.frames
|
|
91297
91345
|
|
|
@@ -101353,7 +101401,7 @@ class BlendDataGreasePencilsV3(bpy_prop_collection[GreasePencilv3], bpy_struct):
|
|
|
101353
101401
|
|
|
101354
101402
|
def remove(
|
|
101355
101403
|
self,
|
|
101356
|
-
grease_pencil:
|
|
101404
|
+
grease_pencil: GreasePencilv3,
|
|
101357
101405
|
do_unlink: bool | None = True,
|
|
101358
101406
|
do_id_user: bool | None = True,
|
|
101359
101407
|
do_ui_user: bool | None = True,
|
|
@@ -101361,7 +101409,7 @@ class BlendDataGreasePencilsV3(bpy_prop_collection[GreasePencilv3], bpy_struct):
|
|
|
101361
101409
|
"""Remove a grease pencil instance from the current blendfile
|
|
101362
101410
|
|
|
101363
101411
|
:param grease_pencil: Grease Pencil to remove
|
|
101364
|
-
:type grease_pencil:
|
|
101412
|
+
:type grease_pencil: GreasePencilv3
|
|
101365
101413
|
:param do_unlink: Unlink all usages of this grease pencil before deleting it
|
|
101366
101414
|
:type do_unlink: bool | None
|
|
101367
101415
|
:param do_id_user: Decrement user counter of all datablocks used by this grease pencil
|
|
@@ -104147,6 +104195,65 @@ class FreestyleModules(bpy_prop_collection[FreestyleModuleSettings], bpy_struct)
|
|
|
104147
104195
|
"""
|
|
104148
104196
|
...
|
|
104149
104197
|
|
|
104198
|
+
class GPencilFrames(bpy_prop_collection[GPencilFrame], bpy_struct):
|
|
104199
|
+
"""Collection of annotation frames"""
|
|
104200
|
+
|
|
104201
|
+
def new(
|
|
104202
|
+
self, frame_number: int | None, active: bool | None = False
|
|
104203
|
+
) -> GPencilFrame:
|
|
104204
|
+
"""Add a new annotation frame
|
|
104205
|
+
|
|
104206
|
+
:param frame_number: Frame Number, The frame on which this sketch appears
|
|
104207
|
+
:type frame_number: int | None
|
|
104208
|
+
:param active: Active
|
|
104209
|
+
:type active: bool | None
|
|
104210
|
+
:return: The newly created frame
|
|
104211
|
+
:rtype: GPencilFrame
|
|
104212
|
+
"""
|
|
104213
|
+
...
|
|
104214
|
+
|
|
104215
|
+
def remove(self, frame: GPencilFrame):
|
|
104216
|
+
"""Remove an annotation frame
|
|
104217
|
+
|
|
104218
|
+
:param frame: Frame, The frame to remove
|
|
104219
|
+
:type frame: GPencilFrame
|
|
104220
|
+
"""
|
|
104221
|
+
...
|
|
104222
|
+
|
|
104223
|
+
def copy(self, source: GPencilFrame) -> GPencilFrame:
|
|
104224
|
+
"""Copy an annotation frame
|
|
104225
|
+
|
|
104226
|
+
:param source: Source, The source frame
|
|
104227
|
+
:type source: GPencilFrame
|
|
104228
|
+
:return: The newly copied frame
|
|
104229
|
+
:rtype: GPencilFrame
|
|
104230
|
+
"""
|
|
104231
|
+
...
|
|
104232
|
+
|
|
104233
|
+
@classmethod
|
|
104234
|
+
def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
|
|
104235
|
+
"""
|
|
104236
|
+
|
|
104237
|
+
:param id: The RNA type identifier.
|
|
104238
|
+
:type id: str | None
|
|
104239
|
+
:param default:
|
|
104240
|
+
:return: The RNA type or default when not found.
|
|
104241
|
+
:rtype: Struct
|
|
104242
|
+
"""
|
|
104243
|
+
...
|
|
104244
|
+
|
|
104245
|
+
@classmethod
|
|
104246
|
+
def bl_rna_get_subclass_py(cls, id: str | None, default=None) -> typing.Any:
|
|
104247
|
+
"""
|
|
104248
|
+
|
|
104249
|
+
:param id: The RNA type identifier.
|
|
104250
|
+
:type id: str | None
|
|
104251
|
+
:param default:
|
|
104252
|
+
:return: The class or default when not found.
|
|
104253
|
+
:rtype: typing.Any
|
|
104254
|
+
"""
|
|
104255
|
+
...
|
|
104256
|
+
|
|
104150
104257
|
class Gizmos(bpy_prop_collection[Gizmo], bpy_struct):
|
|
104151
104258
|
"""Collection of gizmos"""
|
|
104152
104259
|
|
|
@@ -104308,6 +104415,26 @@ class GreasePencilLayers(bpy_prop_collection[GPencilLayer], bpy_struct):
|
|
|
104308
104415
|
:type: str | None
|
|
104309
104416
|
"""
|
|
104310
104417
|
|
|
104418
|
+
def new(self, name: str, set_active: bool | None = True) -> GPencilLayer:
|
|
104419
|
+
"""Add a new annotation layer
|
|
104420
|
+
|
|
104421
|
+
:param name: Name, Name of the layer
|
|
104422
|
+
:type name: str
|
|
104423
|
+
:param set_active: Set Active, Set the newly created layer to the active layer
|
|
104424
|
+
:type set_active: bool | None
|
|
104425
|
+
:return: The newly created layer
|
|
104426
|
+
:rtype: GPencilLayer
|
|
104427
|
+
"""
|
|
104428
|
+
...
|
|
104429
|
+
|
|
104430
|
+
def remove(self, layer: GPencilLayer):
|
|
104431
|
+
"""Remove a annotation layer
|
|
104432
|
+
|
|
104433
|
+
:param layer: The layer to remove
|
|
104434
|
+
:type layer: GPencilLayer
|
|
104435
|
+
"""
|
|
104436
|
+
...
|
|
104437
|
+
|
|
104311
104438
|
@classmethod
|
|
104312
104439
|
def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
|
|
104313
104440
|
"""
|
|
@@ -144923,10 +145050,10 @@ class GPencilLayer(bpy_struct):
|
|
|
144923
145050
|
:type: mathutils.Color
|
|
144924
145051
|
"""
|
|
144925
145052
|
|
|
144926
|
-
frames:
|
|
145053
|
+
frames: GPencilFrames
|
|
144927
145054
|
""" Sketches for this layer on different frames
|
|
144928
145055
|
|
|
144929
|
-
:type:
|
|
145056
|
+
:type: GPencilFrames
|
|
144930
145057
|
"""
|
|
144931
145058
|
|
|
144932
145059
|
info: str
|
|
@@ -159774,32 +159901,32 @@ class GreasePencilDrawing(bpy_struct):
|
|
|
159774
159901
|
:type: int
|
|
159775
159902
|
"""
|
|
159776
159903
|
|
|
159777
|
-
def
|
|
159778
|
-
"""Add new
|
|
159904
|
+
def add_strokes(self, sizes: collections.abc.Iterable[int] | None):
|
|
159905
|
+
"""Add new strokes with provided sizes at the end
|
|
159779
159906
|
|
|
159780
|
-
:param sizes: Sizes, The number of points in each
|
|
159907
|
+
:param sizes: Sizes, The number of points in each stroke
|
|
159781
159908
|
:type sizes: collections.abc.Iterable[int] | None
|
|
159782
159909
|
"""
|
|
159783
159910
|
...
|
|
159784
159911
|
|
|
159785
|
-
def
|
|
159786
|
-
"""Remove all
|
|
159912
|
+
def remove_strokes(self, indices: collections.abc.Iterable[int] | None = (0)):
|
|
159913
|
+
"""Remove all strokes. If indices are provided, remove only the strokes with the given indices.
|
|
159787
159914
|
|
|
159788
|
-
:param indices: Indices, The indices of the
|
|
159915
|
+
:param indices: Indices, The indices of the strokes to remove
|
|
159789
159916
|
:type indices: collections.abc.Iterable[int] | None
|
|
159790
159917
|
"""
|
|
159791
159918
|
...
|
|
159792
159919
|
|
|
159793
|
-
def
|
|
159920
|
+
def resize_strokes(
|
|
159794
159921
|
self,
|
|
159795
159922
|
sizes: collections.abc.Iterable[int] | None,
|
|
159796
159923
|
indices: collections.abc.Iterable[int] | None = (0),
|
|
159797
159924
|
):
|
|
159798
|
-
"""Resize all existing
|
|
159925
|
+
"""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
159926
|
|
|
159800
|
-
:param sizes: Sizes, The number of points in each
|
|
159927
|
+
:param sizes: Sizes, The number of points in each stroke
|
|
159801
159928
|
:type sizes: collections.abc.Iterable[int] | None
|
|
159802
|
-
:param indices: Indices, The indices of the
|
|
159929
|
+
:param indices: Indices, The indices of the stroke to resize
|
|
159803
159930
|
:type indices: collections.abc.Iterable[int] | None
|
|
159804
159931
|
"""
|
|
159805
159932
|
...
|
|
@@ -196685,6 +196812,12 @@ class PreferencesEdit(bpy_struct):
|
|
|
196685
196812
|
class PreferencesExperimental(bpy_struct):
|
|
196686
196813
|
"""Experimental features"""
|
|
196687
196814
|
|
|
196815
|
+
enable_new_cpu_compositor: bool
|
|
196816
|
+
""" Enable the new CPU compositor
|
|
196817
|
+
|
|
196818
|
+
:type: bool
|
|
196819
|
+
"""
|
|
196820
|
+
|
|
196688
196821
|
enable_overlay_next: bool
|
|
196689
196822
|
""" Enable the new Overlay codebase, requires restart
|
|
196690
196823
|
|
|
@@ -201610,6 +201743,12 @@ class RenderSettings(bpy_struct):
|
|
|
201610
201743
|
:type: bool
|
|
201611
201744
|
"""
|
|
201612
201745
|
|
|
201746
|
+
use_new_cpu_compositor: bool
|
|
201747
|
+
""" Use the new CPU compositor implementation
|
|
201748
|
+
|
|
201749
|
+
:type: bool
|
|
201750
|
+
"""
|
|
201751
|
+
|
|
201613
201752
|
use_overwrite: bool
|
|
201614
201753
|
""" Overwrite existing files while rendering
|
|
201615
201754
|
|
|
@@ -230508,6 +230647,7 @@ class UILayout(bpy_struct):
|
|
|
230508
230647
|
|
|
230509
230648
|
def row(
|
|
230510
230649
|
self,
|
|
230650
|
+
*,
|
|
230511
230651
|
align: bool | None = False,
|
|
230512
230652
|
heading: str = "",
|
|
230513
230653
|
heading_ctxt: str = "",
|
|
@@ -230530,6 +230670,7 @@ class UILayout(bpy_struct):
|
|
|
230530
230670
|
|
|
230531
230671
|
def column(
|
|
230532
230672
|
self,
|
|
230673
|
+
*,
|
|
230533
230674
|
align: bool | None = False,
|
|
230534
230675
|
heading: str = "",
|
|
230535
230676
|
heading_ctxt: str = "",
|
|
@@ -230550,7 +230691,7 @@ class UILayout(bpy_struct):
|
|
|
230550
230691
|
"""
|
|
230551
230692
|
...
|
|
230552
230693
|
|
|
230553
|
-
def panel(self, idname: str, default_closed: bool | None = False):
|
|
230694
|
+
def panel(self, idname: str, *, default_closed: bool | None = False):
|
|
230554
230695
|
"""Creates a collapsable panel. Whether it is open or closed is stored in the region using the given idname. This can only be used when the panel has the full width of the panel region available to it. So it can't be used in e.g. in a box or columns.
|
|
230555
230696
|
|
|
230556
230697
|
:param idname: Identifier of the panel
|
|
@@ -230577,7 +230718,7 @@ class UILayout(bpy_struct):
|
|
|
230577
230718
|
...
|
|
230578
230719
|
|
|
230579
230720
|
def column_flow(
|
|
230580
|
-
self, columns: int | None = 0, align: bool | None = False
|
|
230721
|
+
self, *, columns: int | None = 0, align: bool | None = False
|
|
230581
230722
|
) -> typing_extensions.Self:
|
|
230582
230723
|
"""column_flow
|
|
230583
230724
|
|
|
@@ -230592,6 +230733,7 @@ class UILayout(bpy_struct):
|
|
|
230592
230733
|
|
|
230593
230734
|
def grid_flow(
|
|
230594
230735
|
self,
|
|
230736
|
+
*,
|
|
230595
230737
|
row_major: bool | None = False,
|
|
230596
230738
|
columns: int | None = 0,
|
|
230597
230739
|
even_columns: bool | None = False,
|
|
@@ -230624,7 +230766,7 @@ class UILayout(bpy_struct):
|
|
|
230624
230766
|
...
|
|
230625
230767
|
|
|
230626
230768
|
def split(
|
|
230627
|
-
self, factor: float | None = 0.0, align: bool | None = False
|
|
230769
|
+
self, *, factor: float | None = 0.0, align: bool | None = False
|
|
230628
230770
|
) -> typing_extensions.Self:
|
|
230629
230771
|
"""split
|
|
230630
230772
|
|
|
@@ -230707,6 +230849,7 @@ class UILayout(bpy_struct):
|
|
|
230707
230849
|
self,
|
|
230708
230850
|
data: typing.Any,
|
|
230709
230851
|
property: str,
|
|
230852
|
+
*,
|
|
230710
230853
|
text: str | None = "",
|
|
230711
230854
|
text_ctxt: str | None = "",
|
|
230712
230855
|
translate: bool | None = True,
|
|
@@ -231731,6 +231874,7 @@ class UILayout(bpy_struct):
|
|
|
231731
231874
|
self,
|
|
231732
231875
|
data: typing.Any,
|
|
231733
231876
|
property: str,
|
|
231877
|
+
*,
|
|
231734
231878
|
text: str | None = "",
|
|
231735
231879
|
text_ctxt: str | None = "",
|
|
231736
231880
|
translate: bool | None = True,
|
|
@@ -232712,6 +232856,7 @@ class UILayout(bpy_struct):
|
|
|
232712
232856
|
self,
|
|
232713
232857
|
data: typing.Any,
|
|
232714
232858
|
property: str,
|
|
232859
|
+
*,
|
|
232715
232860
|
text: str | None = "",
|
|
232716
232861
|
text_ctxt: str | None = "",
|
|
232717
232862
|
translate: bool | None = True,
|
|
@@ -233699,6 +233844,7 @@ class UILayout(bpy_struct):
|
|
|
233699
233844
|
self,
|
|
233700
233845
|
data: typing.Any,
|
|
233701
233846
|
property: str,
|
|
233847
|
+
*,
|
|
233702
233848
|
text: str | None = "",
|
|
233703
233849
|
text_ctxt: str | None = "",
|
|
233704
233850
|
translate: bool | None = True,
|
|
@@ -234686,6 +234832,7 @@ class UILayout(bpy_struct):
|
|
|
234686
234832
|
self,
|
|
234687
234833
|
data: typing.Any,
|
|
234688
234834
|
property: str,
|
|
234835
|
+
*,
|
|
234689
234836
|
data_highlight: typing.Any = None,
|
|
234690
234837
|
property_highlight: str = "",
|
|
234691
234838
|
icon_only: bool | None = False,
|
|
@@ -234710,6 +234857,7 @@ class UILayout(bpy_struct):
|
|
|
234710
234857
|
data: typing.Any,
|
|
234711
234858
|
property: str,
|
|
234712
234859
|
value: str,
|
|
234860
|
+
*,
|
|
234713
234861
|
text: str | None = "",
|
|
234714
234862
|
text_ctxt: str | None = "",
|
|
234715
234863
|
translate: bool | None = True,
|
|
@@ -235695,6 +235843,7 @@ class UILayout(bpy_struct):
|
|
|
235695
235843
|
property: str,
|
|
235696
235844
|
search_data: typing.Any,
|
|
235697
235845
|
search_property: str,
|
|
235846
|
+
*,
|
|
235698
235847
|
text: str | None = "",
|
|
235699
235848
|
text_ctxt: str | None = "",
|
|
235700
235849
|
translate: bool | None = True,
|
|
@@ -236679,7 +236828,9 @@ class UILayout(bpy_struct):
|
|
|
236679
236828
|
"""
|
|
236680
236829
|
...
|
|
236681
236830
|
|
|
236682
|
-
def prop_decorator(
|
|
236831
|
+
def prop_decorator(
|
|
236832
|
+
self, data: typing.Any, property: str, *, index: int | None = -1
|
|
236833
|
+
):
|
|
236683
236834
|
"""prop_decorator
|
|
236684
236835
|
|
|
236685
236836
|
:param data: Data from which to take property
|
|
@@ -236694,6 +236845,7 @@ class UILayout(bpy_struct):
|
|
|
236694
236845
|
def operator(
|
|
236695
236846
|
self,
|
|
236696
236847
|
operator: str,
|
|
236848
|
+
*,
|
|
236697
236849
|
text: str | None = "",
|
|
236698
236850
|
text_ctxt: str | None = "",
|
|
236699
236851
|
translate: bool | None = True,
|
|
@@ -237686,6 +237838,7 @@ class UILayout(bpy_struct):
|
|
|
237686
237838
|
def operator_menu_hold(
|
|
237687
237839
|
self,
|
|
237688
237840
|
operator: str,
|
|
237841
|
+
*,
|
|
237689
237842
|
text: str | None = "",
|
|
237690
237843
|
text_ctxt: str | None = "",
|
|
237691
237844
|
translate: bool | None = True,
|
|
@@ -238676,7 +238829,7 @@ class UILayout(bpy_struct):
|
|
|
238676
238829
|
...
|
|
238677
238830
|
|
|
238678
238831
|
def operator_enum(
|
|
238679
|
-
self, operator: str, property: str, icon_only: bool | None = False
|
|
238832
|
+
self, operator: str, property: str, *, icon_only: bool | None = False
|
|
238680
238833
|
):
|
|
238681
238834
|
"""operator_enum
|
|
238682
238835
|
|
|
@@ -238693,6 +238846,7 @@ class UILayout(bpy_struct):
|
|
|
238693
238846
|
self,
|
|
238694
238847
|
operator: str,
|
|
238695
238848
|
property: str,
|
|
238849
|
+
*,
|
|
238696
238850
|
text: str | None = "",
|
|
238697
238851
|
text_ctxt: str | None = "",
|
|
238698
238852
|
translate: bool | None = True,
|
|
@@ -239674,6 +239828,7 @@ class UILayout(bpy_struct):
|
|
|
239674
239828
|
|
|
239675
239829
|
def label(
|
|
239676
239830
|
self,
|
|
239831
|
+
*,
|
|
239677
239832
|
text: str | None = "",
|
|
239678
239833
|
text_ctxt: str | None = "",
|
|
239679
239834
|
translate: bool | None = True,
|
|
@@ -240653,6 +240808,7 @@ class UILayout(bpy_struct):
|
|
|
240653
240808
|
def menu(
|
|
240654
240809
|
self,
|
|
240655
240810
|
menu: str,
|
|
240811
|
+
*,
|
|
240656
240812
|
text: str | None = "",
|
|
240657
240813
|
text_ctxt: str | None = "",
|
|
240658
240814
|
translate: bool | None = True,
|
|
@@ -241642,6 +241798,7 @@ class UILayout(bpy_struct):
|
|
|
241642
241798
|
def popover(
|
|
241643
241799
|
self,
|
|
241644
241800
|
panel: str,
|
|
241801
|
+
*,
|
|
241645
241802
|
text: str | None = "",
|
|
241646
241803
|
text_ctxt: str | None = "",
|
|
241647
241804
|
translate: bool | None = True,
|
|
@@ -242681,6 +242838,7 @@ class UILayout(bpy_struct):
|
|
|
242681
242838
|
|
|
242682
242839
|
def separator(
|
|
242683
242840
|
self,
|
|
242841
|
+
*,
|
|
242684
242842
|
factor: float | None = 1.0,
|
|
242685
242843
|
type: typing.Literal["AUTO", "SPACE", "LINE"] | None = "AUTO",
|
|
242686
242844
|
):
|
|
@@ -242708,6 +242866,7 @@ class UILayout(bpy_struct):
|
|
|
242708
242866
|
|
|
242709
242867
|
def progress(
|
|
242710
242868
|
self,
|
|
242869
|
+
*,
|
|
242711
242870
|
text: str | None = "",
|
|
242712
242871
|
text_ctxt: str | None = "",
|
|
242713
242872
|
translate: bool | None = True,
|
|
@@ -242757,6 +242916,7 @@ class UILayout(bpy_struct):
|
|
|
242757
242916
|
self,
|
|
242758
242917
|
data: typing.Any,
|
|
242759
242918
|
property: str,
|
|
242919
|
+
*,
|
|
242760
242920
|
new: str = "",
|
|
242761
242921
|
open: str = "",
|
|
242762
242922
|
unlink: str = "",
|
|
@@ -242795,6 +242955,7 @@ class UILayout(bpy_struct):
|
|
|
242795
242955
|
self,
|
|
242796
242956
|
data: typing.Any,
|
|
242797
242957
|
property: str,
|
|
242958
|
+
*,
|
|
242798
242959
|
new: str = "",
|
|
242799
242960
|
open: str = "",
|
|
242800
242961
|
unlink: str = "",
|
|
@@ -242831,6 +242992,7 @@ class UILayout(bpy_struct):
|
|
|
242831
242992
|
data: typing.Any,
|
|
242832
242993
|
property: str,
|
|
242833
242994
|
type_property: str,
|
|
242995
|
+
*,
|
|
242834
242996
|
text: str | None = "",
|
|
242835
242997
|
text_ctxt: str | None = "",
|
|
242836
242998
|
translate: bool | None = True,
|
|
@@ -242856,6 +243018,7 @@ class UILayout(bpy_struct):
|
|
|
242856
243018
|
self,
|
|
242857
243019
|
data: typing.Any,
|
|
242858
243020
|
property: str,
|
|
243021
|
+
*,
|
|
242859
243022
|
new: str = "",
|
|
242860
243023
|
menu: str = "",
|
|
242861
243024
|
filter: typing.Literal["ALL", "AVAILABLE"] | None = "ALL",
|
|
@@ -242881,6 +243044,7 @@ class UILayout(bpy_struct):
|
|
|
242881
243044
|
property: str,
|
|
242882
243045
|
search_data: typing.Any,
|
|
242883
243046
|
search_property: str,
|
|
243047
|
+
*,
|
|
242884
243048
|
new: str = "",
|
|
242885
243049
|
unlink: str = "",
|
|
242886
243050
|
):
|
|
@@ -242907,6 +243071,7 @@ class UILayout(bpy_struct):
|
|
|
242907
243071
|
property: str,
|
|
242908
243072
|
search_data: typing.Any,
|
|
242909
243073
|
search_property: str,
|
|
243074
|
+
*,
|
|
242910
243075
|
new: str = "",
|
|
242911
243076
|
unlink: str = "",
|
|
242912
243077
|
rows: int | None = 0,
|
|
@@ -242938,6 +243103,7 @@ class UILayout(bpy_struct):
|
|
|
242938
243103
|
data: typing.Any,
|
|
242939
243104
|
property: str,
|
|
242940
243105
|
root: ID | None,
|
|
243106
|
+
*,
|
|
242941
243107
|
text: str | None = "",
|
|
242942
243108
|
text_ctxt: str | None = "",
|
|
242943
243109
|
translate: bool | None = True,
|
|
@@ -242967,7 +243133,7 @@ class UILayout(bpy_struct):
|
|
|
242967
243133
|
"""Generates the UI layout for collection exporters"""
|
|
242968
243134
|
...
|
|
242969
243135
|
|
|
242970
|
-
def template_constraints(self, use_bone_constraints: bool | None = True):
|
|
243136
|
+
def template_constraints(self, *, use_bone_constraints: bool | None = True):
|
|
242971
243137
|
"""Generates the panels for the constraint stack
|
|
242972
243138
|
|
|
242973
243139
|
:param use_bone_constraints: Add panels for bone constraints instead of object constraints
|
|
@@ -242983,6 +243149,7 @@ class UILayout(bpy_struct):
|
|
|
242983
243149
|
self,
|
|
242984
243150
|
data: typing.Any,
|
|
242985
243151
|
property: str,
|
|
243152
|
+
*,
|
|
242986
243153
|
rows: int | None = 0,
|
|
242987
243154
|
cols: int | None = 0,
|
|
242988
243155
|
scale: float | None = 1.0,
|
|
@@ -243016,6 +243183,7 @@ class UILayout(bpy_struct):
|
|
|
243016
243183
|
def template_preview(
|
|
243017
243184
|
self,
|
|
243018
243185
|
id: ID | None,
|
|
243186
|
+
*,
|
|
243019
243187
|
show_buttons: bool | None = True,
|
|
243020
243188
|
parent: ID | None = None,
|
|
243021
243189
|
slot: TextureSlot | None = None,
|
|
@@ -243040,6 +243208,7 @@ class UILayout(bpy_struct):
|
|
|
243040
243208
|
self,
|
|
243041
243209
|
data: typing.Any,
|
|
243042
243210
|
property: str,
|
|
243211
|
+
*,
|
|
243043
243212
|
type: typing.Literal["NONE", "VECTOR", "COLOR", "HUE"] | None = "NONE",
|
|
243044
243213
|
levels: bool | None = False,
|
|
243045
243214
|
brush: bool | None = False,
|
|
@@ -243076,7 +243245,7 @@ class UILayout(bpy_struct):
|
|
|
243076
243245
|
...
|
|
243077
243246
|
|
|
243078
243247
|
def template_color_ramp(
|
|
243079
|
-
self, data: typing.Any, property: str, expand: bool | None = False
|
|
243248
|
+
self, data: typing.Any, property: str, *, expand: bool | None = False
|
|
243080
243249
|
):
|
|
243081
243250
|
"""Item. A color ramp widget.
|
|
243082
243251
|
|
|
@@ -243089,7 +243258,7 @@ class UILayout(bpy_struct):
|
|
|
243089
243258
|
"""
|
|
243090
243259
|
...
|
|
243091
243260
|
|
|
243092
|
-
def template_icon(self, icon_value: int | None, scale: float | None = 1.0):
|
|
243261
|
+
def template_icon(self, icon_value: int | None, *, scale: float | None = 1.0):
|
|
243093
243262
|
"""Display a large icon
|
|
243094
243263
|
|
|
243095
243264
|
:param icon_value: Icon to display
|
|
@@ -243103,6 +243272,7 @@ class UILayout(bpy_struct):
|
|
|
243103
243272
|
self,
|
|
243104
243273
|
data: typing.Any,
|
|
243105
243274
|
property: str,
|
|
243275
|
+
*,
|
|
243106
243276
|
show_labels: bool | None = False,
|
|
243107
243277
|
scale: float | None = 6.0,
|
|
243108
243278
|
scale_popup: float | None = 5.0,
|
|
@@ -243179,6 +243349,7 @@ class UILayout(bpy_struct):
|
|
|
243179
243349
|
self,
|
|
243180
243350
|
data: typing.Any,
|
|
243181
243351
|
property: str,
|
|
243352
|
+
*,
|
|
243182
243353
|
value_slider: bool | None = False,
|
|
243183
243354
|
lock: bool | None = False,
|
|
243184
243355
|
lock_luminosity: bool | None = False,
|
|
@@ -243202,7 +243373,7 @@ class UILayout(bpy_struct):
|
|
|
243202
243373
|
...
|
|
243203
243374
|
|
|
243204
243375
|
def template_palette(
|
|
243205
|
-
self, data: typing.Any, property: str, color: bool | None = False
|
|
243376
|
+
self, data: typing.Any, property: str, *, color: bool | None = False
|
|
243206
243377
|
):
|
|
243207
243378
|
"""Item. A palette used to pick colors.
|
|
243208
243379
|
|
|
@@ -243230,6 +243401,7 @@ class UILayout(bpy_struct):
|
|
|
243230
243401
|
data: typing.Any,
|
|
243231
243402
|
property: str,
|
|
243232
243403
|
image_user: ImageUser,
|
|
243404
|
+
*,
|
|
243233
243405
|
compact: bool | None = False,
|
|
243234
243406
|
multiview: bool | None = False,
|
|
243235
243407
|
):
|
|
@@ -243249,7 +243421,10 @@ class UILayout(bpy_struct):
|
|
|
243249
243421
|
...
|
|
243250
243422
|
|
|
243251
243423
|
def template_image_settings(
|
|
243252
|
-
self,
|
|
243424
|
+
self,
|
|
243425
|
+
image_settings: ImageFormatSettings,
|
|
243426
|
+
*,
|
|
243427
|
+
color_management: bool | None = False,
|
|
243253
243428
|
):
|
|
243254
243429
|
"""User interface for setting image format options
|
|
243255
243430
|
|
|
@@ -243277,7 +243452,7 @@ class UILayout(bpy_struct):
|
|
|
243277
243452
|
...
|
|
243278
243453
|
|
|
243279
243454
|
def template_movieclip(
|
|
243280
|
-
self, data: typing.Any, property: str, compact: bool | None = False
|
|
243455
|
+
self, data: typing.Any, property: str, *, compact: bool | None = False
|
|
243281
243456
|
):
|
|
243282
243457
|
"""Item(s). User interface for selecting movie clips and their source paths.
|
|
243283
243458
|
|
|
@@ -243306,6 +243481,7 @@ class UILayout(bpy_struct):
|
|
|
243306
243481
|
property: str,
|
|
243307
243482
|
clip_user: MovieClipUser,
|
|
243308
243483
|
track: MovieTrackingTrack,
|
|
243484
|
+
*,
|
|
243309
243485
|
compact: bool | None = False,
|
|
243310
243486
|
):
|
|
243311
243487
|
"""Item. A widget to control single marker settings.
|
|
@@ -243345,6 +243521,7 @@ class UILayout(bpy_struct):
|
|
|
243345
243521
|
propname: str,
|
|
243346
243522
|
active_dataptr: typing.Any,
|
|
243347
243523
|
active_propname: str,
|
|
243524
|
+
*,
|
|
243348
243525
|
item_dyntip_propname: str = "",
|
|
243349
243526
|
rows: int | None = 5,
|
|
243350
243527
|
maxrows: int | None = 5,
|
|
@@ -243441,7 +243618,7 @@ class UILayout(bpy_struct):
|
|
|
243441
243618
|
"""
|
|
243442
243619
|
...
|
|
243443
243620
|
|
|
243444
|
-
def template_node_asset_menu_items(self, catalog_path: str = ""):
|
|
243621
|
+
def template_node_asset_menu_items(self, *, catalog_path: str = ""):
|
|
243445
243622
|
"""template_node_asset_menu_items
|
|
243446
243623
|
|
|
243447
243624
|
:param catalog_path:
|
|
@@ -243449,7 +243626,7 @@ class UILayout(bpy_struct):
|
|
|
243449
243626
|
"""
|
|
243450
243627
|
...
|
|
243451
243628
|
|
|
243452
|
-
def template_modifier_asset_menu_items(self, catalog_path: str = ""):
|
|
243629
|
+
def template_modifier_asset_menu_items(self, *, catalog_path: str = ""):
|
|
243453
243630
|
"""template_modifier_asset_menu_items
|
|
243454
243631
|
|
|
243455
243632
|
:param catalog_path:
|
|
@@ -243457,7 +243634,7 @@ class UILayout(bpy_struct):
|
|
|
243457
243634
|
"""
|
|
243458
243635
|
...
|
|
243459
243636
|
|
|
243460
|
-
def template_node_operator_asset_menu_items(self, catalog_path: str = ""):
|
|
243637
|
+
def template_node_operator_asset_menu_items(self, *, catalog_path: str = ""):
|
|
243461
243638
|
"""template_node_operator_asset_menu_items
|
|
243462
243639
|
|
|
243463
243640
|
:param catalog_path:
|
|
@@ -243482,7 +243659,7 @@ class UILayout(bpy_struct):
|
|
|
243482
243659
|
...
|
|
243483
243660
|
|
|
243484
243661
|
def template_component_menu(
|
|
243485
|
-
self, data: typing.Any | None, property: str, name: str = ""
|
|
243662
|
+
self, data: typing.Any | None, property: str, *, name: str = ""
|
|
243486
243663
|
):
|
|
243487
243664
|
"""Item. Display expanded property in a popup menu
|
|
243488
243665
|
|
|
@@ -243516,7 +243693,7 @@ class UILayout(bpy_struct):
|
|
|
243516
243693
|
...
|
|
243517
243694
|
|
|
243518
243695
|
def template_node_socket(
|
|
243519
|
-
self, color: collections.abc.Iterable[float] | None = (0.0, 0.0, 0.0, 1.0)
|
|
243696
|
+
self, *, color: collections.abc.Iterable[float] | None = (0.0, 0.0, 0.0, 1.0)
|
|
243520
243697
|
):
|
|
243521
243698
|
"""Node Socket Icon
|
|
243522
243699
|
|
|
@@ -243575,7 +243752,7 @@ class UILayout(bpy_struct):
|
|
|
243575
243752
|
"""
|
|
243576
243753
|
...
|
|
243577
243754
|
|
|
243578
|
-
def template_recent_files(self, rows: int | None = 5) -> int:
|
|
243755
|
+
def template_recent_files(self, *, rows: int | None = 5) -> int:
|
|
243579
243756
|
"""Show list of recently saved .blend files
|
|
243580
243757
|
|
|
243581
243758
|
:param rows: Maximum number of items to show
|
|
@@ -243596,6 +243773,7 @@ class UILayout(bpy_struct):
|
|
|
243596
243773
|
def template_event_from_keymap_item(
|
|
243597
243774
|
self,
|
|
243598
243775
|
item: KeyMapItem,
|
|
243776
|
+
*,
|
|
243599
243777
|
text: str | None = "",
|
|
243600
243778
|
text_ctxt: str | None = "",
|
|
243601
243779
|
translate: bool | None = True,
|
|
@@ -243622,6 +243800,7 @@ class UILayout(bpy_struct):
|
|
|
243622
243800
|
assets_propname: str,
|
|
243623
243801
|
active_dataptr: typing.Any,
|
|
243624
243802
|
active_propname: str,
|
|
243803
|
+
*,
|
|
243625
243804
|
filter_id_types: set[str] | None = {},
|
|
243626
243805
|
display_options: set[typing.Literal["NO_NAMES", "NO_FILTER", "NO_LIBRARY"]]
|
|
243627
243806
|
| None = {},
|
|
@@ -243708,6 +243887,7 @@ class UILayout(bpy_struct):
|
|
|
243708
243887
|
def template_asset_shelf_popover(
|
|
243709
243888
|
self,
|
|
243710
243889
|
asset_shelf: str,
|
|
243890
|
+
*,
|
|
243711
243891
|
name: str | None = "",
|
|
243712
243892
|
icon: typing.Literal[
|
|
243713
243893
|
"NONE",
|
|
@@ -244683,6 +244863,7 @@ class UILayout(bpy_struct):
|
|
|
244683
244863
|
def template_popup_confirm(
|
|
244684
244864
|
self,
|
|
244685
244865
|
operator: str,
|
|
244866
|
+
*,
|
|
244686
244867
|
text: str | None = "",
|
|
244687
244868
|
text_ctxt: str | None = "",
|
|
244688
244869
|
translate: bool | None = True,
|
|
@@ -245667,7 +245848,7 @@ class UILayout(bpy_struct):
|
|
|
245667
245848
|
...
|
|
245668
245849
|
|
|
245669
245850
|
@classmethod
|
|
245670
|
-
def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
|
|
245851
|
+
def bl_rna_get_subclass(cls, id: str | None, *, default=None) -> Struct:
|
|
245671
245852
|
"""
|
|
245672
245853
|
|
|
245673
245854
|
:param id: The RNA type identifier.
|
|
@@ -245679,7 +245860,7 @@ class UILayout(bpy_struct):
|
|
|
245679
245860
|
...
|
|
245680
245861
|
|
|
245681
245862
|
@classmethod
|
|
245682
|
-
def bl_rna_get_subclass_py(cls, id: str | None, default=None) -> typing.Any:
|
|
245863
|
+
def bl_rna_get_subclass_py(cls, id: str | None, *, default=None) -> typing.Any:
|
|
245683
245864
|
"""
|
|
245684
245865
|
|
|
245685
245866
|
:param id: The RNA type identifier.
|
|
@@ -256415,6 +256596,8 @@ GRAPH_PT_proportional_edit: bl_ui.space_graph.GRAPH_PT_proportional_edit
|
|
|
256415
256596
|
|
|
256416
256597
|
GRAPH_PT_snapping: bl_ui.space_graph.GRAPH_PT_snapping
|
|
256417
256598
|
|
|
256599
|
+
GREASE_PENCIL_MT_Layers: bl_ui.space_view3d.GREASE_PENCIL_MT_Layers
|
|
256600
|
+
|
|
256418
256601
|
GREASE_PENCIL_MT_grease_pencil_add_layer_extra: bl_ui.properties_data_grease_pencil.GREASE_PENCIL_MT_grease_pencil_add_layer_extra
|
|
256419
256602
|
|
|
256420
256603
|
GREASE_PENCIL_MT_group_context_menu: bl_ui.properties_data_grease_pencil.GREASE_PENCIL_MT_group_context_menu
|
|
@@ -256921,6 +257104,8 @@ NODE_PT_annotation: bl_ui.space_node.NODE_PT_annotation
|
|
|
256921
257104
|
|
|
256922
257105
|
NODE_PT_backdrop: bl_ui.space_node.NODE_PT_backdrop
|
|
256923
257106
|
|
|
257107
|
+
NODE_PT_compositor_debug: bl_ui.space_node.NODE_PT_compositor_debug
|
|
257108
|
+
|
|
256924
257109
|
NODE_PT_geometry_node_tool_mode: bl_ui.space_node.NODE_PT_geometry_node_tool_mode
|
|
256925
257110
|
|
|
256926
257111
|
NODE_PT_geometry_node_tool_object_types: bl_ui.space_node.NODE_PT_geometry_node_tool_object_types
|
|
@@ -258709,6 +258894,8 @@ VIEW3D_PT_grease_pencil: bl_ui.space_view3d.VIEW3D_PT_grease_pencil
|
|
|
258709
258894
|
|
|
258710
258895
|
VIEW3D_PT_grease_pencil_multi_frame: bl_ui.space_view3d.VIEW3D_PT_grease_pencil_multi_frame
|
|
258711
258896
|
|
|
258897
|
+
VIEW3D_PT_greasepencil_draw_context_menu: bl_ui.space_view3d.VIEW3D_PT_greasepencil_draw_context_menu
|
|
258898
|
+
|
|
258712
258899
|
VIEW3D_PT_mask: bl_ui.space_view3d_toolbar.VIEW3D_PT_mask
|
|
258713
258900
|
|
|
258714
258901
|
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=Y-xQVA46PGs4_Ey1s_H75_tYBOm0As_kEbN-XtMAN7U,6309090
|
|
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
|
|
@@ -307,7 +307,7 @@ freestyle/functions/__init__.pyi,sha256=d7SyUcF7r3MQV3OARbT6cCbENGSmDKT--mkUp5Js
|
|
|
307
307
|
freestyle/predicates/__init__.pyi,sha256=J1vOBMRPvlHuqiErZabCtSgPUz2kzi8Oh_cc_OIMlD8,13860
|
|
308
308
|
freestyle/shaders/__init__.pyi,sha256=_yBIN2vWTq70X_8_MfUe4TqiL1Iri4OYjvIkXRQxG5M,24828
|
|
309
309
|
freestyle/types/__init__.pyi,sha256=i_9VM68H7dzZCYbra4KASlfepVE0_m2Uy2R4vdVNtvY,101225
|
|
310
|
-
freestyle/utils/__init__.pyi,sha256=
|
|
310
|
+
freestyle/utils/__init__.pyi,sha256=dVRmwht78x5Rg53oFqlZgIWB5GpqVs7-JKoZuPkYwV0,5415
|
|
311
311
|
freestyle/utils/ContextFunctions/__init__.pyi,sha256=3zOixayiQsbvJ5xTNYLsaDGUka_q_u5-YQ68KywJWMg,3579
|
|
312
312
|
gpu/__init__.pyi,sha256=Sk-6v4PijACLtDfQx_DD7wTM7KUVZd_5xz1i6IqyiyM,7981
|
|
313
313
|
gpu/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -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-20240810.dist-info/METADATA,sha256=nsyvfPErEx3K2kCEB0ic9GPWem4hK3qv-GWmR3_bZKw,7289
|
|
360
|
+
fake_bpy_module-20240810.dist-info/WHEEL,sha256=R0nc6qTxuoLk7ShA2_Y-UWkN8ZdfDBG2B6Eqpz2WXbs,91
|
|
361
|
+
fake_bpy_module-20240810.dist-info/top_level.txt,sha256=laOLfHIg0_6N4ntsGrWh85yODawYeLVGI-wex_FGLUI,509
|
|
362
|
+
fake_bpy_module-20240810.dist-info/RECORD,,
|
freestyle/utils/__init__.pyi
CHANGED
|
@@ -161,7 +161,7 @@ def material_from_fedge(fe):
|
|
|
161
161
|
...
|
|
162
162
|
|
|
163
163
|
def normal_at_I0D(it): ...
|
|
164
|
-
def pairwise(iterable, types={
|
|
164
|
+
def pairwise(iterable, types={StrokeVertexIterator, Stroke}):
|
|
165
165
|
"""Yields a tuple containing the previous and current object"""
|
|
166
166
|
|
|
167
167
|
...
|
|
File without changes
|
|
File without changes
|