fake-bpy-module 20240926__py3-none-any.whl → 20240928__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_dopesheet/__init__.pyi +25 -0
- bl_ui/space_view3d/__init__.pyi +36 -0
- bpy/ops/anim/__init__.pyi +24 -0
- bpy/ops/grease_pencil/__init__.pyi +20 -0
- bpy/ops/ui/__init__.pyi +12 -0
- bpy/types/__init__.pyi +260 -13
- bpy/typing/__init__.pyi +2 -1
- {fake_bpy_module-20240926.dist-info → fake_bpy_module-20240928.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240926.dist-info → fake_bpy_module-20240928.dist-info}/RECORD +11 -11
- {fake_bpy_module-20240926.dist-info → fake_bpy_module-20240928.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240926.dist-info → fake_bpy_module-20240928.dist-info}/top_level.txt +0 -0
|
@@ -40,6 +40,31 @@ class DOPESHEET_HT_header(bpy.types.Header):
|
|
|
40
40
|
:param context:
|
|
41
41
|
"""
|
|
42
42
|
|
|
43
|
+
class DOPESHEET_MT_action(bpy.types.Menu):
|
|
44
|
+
bl_label: typing.Any
|
|
45
|
+
bl_rna: typing.Any
|
|
46
|
+
id_data: typing.Any
|
|
47
|
+
|
|
48
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
49
|
+
"""
|
|
50
|
+
|
|
51
|
+
:return: The RNA type or default when not found.
|
|
52
|
+
:rtype: bpy.types.Struct
|
|
53
|
+
"""
|
|
54
|
+
|
|
55
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
56
|
+
"""
|
|
57
|
+
|
|
58
|
+
:return: The class or default when not found.
|
|
59
|
+
:rtype: typing.Any
|
|
60
|
+
"""
|
|
61
|
+
|
|
62
|
+
def draw(self, context):
|
|
63
|
+
"""
|
|
64
|
+
|
|
65
|
+
:param context:
|
|
66
|
+
"""
|
|
67
|
+
|
|
43
68
|
class DOPESHEET_MT_channel(bpy.types.Menu):
|
|
44
69
|
bl_label: typing.Any
|
|
45
70
|
bl_rna: typing.Any
|
bl_ui/space_view3d/__init__.pyi
CHANGED
|
@@ -6508,6 +6508,42 @@ class VIEW3D_PT_overlay_gpencil_options(bpy.types.Panel):
|
|
|
6508
6508
|
:param context:
|
|
6509
6509
|
"""
|
|
6510
6510
|
|
|
6511
|
+
class VIEW3D_PT_overlay_grease_pencil_canvas_options(bpy.types.Panel):
|
|
6512
|
+
bl_label: typing.Any
|
|
6513
|
+
bl_parent_id: typing.Any
|
|
6514
|
+
bl_region_type: typing.Any
|
|
6515
|
+
bl_rna: typing.Any
|
|
6516
|
+
bl_space_type: typing.Any
|
|
6517
|
+
bl_ui_units_x: typing.Any
|
|
6518
|
+
id_data: typing.Any
|
|
6519
|
+
|
|
6520
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
6521
|
+
"""
|
|
6522
|
+
|
|
6523
|
+
:return: The RNA type or default when not found.
|
|
6524
|
+
:rtype: bpy.types.Struct
|
|
6525
|
+
"""
|
|
6526
|
+
|
|
6527
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
6528
|
+
"""
|
|
6529
|
+
|
|
6530
|
+
:return: The class or default when not found.
|
|
6531
|
+
:rtype: typing.Any
|
|
6532
|
+
"""
|
|
6533
|
+
|
|
6534
|
+
def draw(self, context):
|
|
6535
|
+
"""
|
|
6536
|
+
|
|
6537
|
+
:param context:
|
|
6538
|
+
"""
|
|
6539
|
+
|
|
6540
|
+
@classmethod
|
|
6541
|
+
def poll(cls, context):
|
|
6542
|
+
"""
|
|
6543
|
+
|
|
6544
|
+
:param context:
|
|
6545
|
+
"""
|
|
6546
|
+
|
|
6511
6547
|
class VIEW3D_PT_overlay_grease_pencil_options(bpy.types.Panel):
|
|
6512
6548
|
bl_label: typing.Any
|
|
6513
6549
|
bl_region_type: typing.Any
|
bpy/ops/anim/__init__.pyi
CHANGED
|
@@ -857,6 +857,30 @@ def scene_range_frame(
|
|
|
857
857
|
:type undo: bool | None
|
|
858
858
|
"""
|
|
859
859
|
|
|
860
|
+
def separate_slots(
|
|
861
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
862
|
+
execution_context: int | str | None = None,
|
|
863
|
+
undo: bool | None = None,
|
|
864
|
+
):
|
|
865
|
+
"""Move all slots of the action on the active object into newly created, separate actions. All users of those slots will be reassigned to the new actions. The current action won't be deleted but will be empty and might end up having zero users
|
|
866
|
+
|
|
867
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
868
|
+
:type execution_context: int | str | None
|
|
869
|
+
:type undo: bool | None
|
|
870
|
+
"""
|
|
871
|
+
|
|
872
|
+
def slot_channels_move_to_new_action(
|
|
873
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
874
|
+
execution_context: int | str | None = None,
|
|
875
|
+
undo: bool | None = None,
|
|
876
|
+
):
|
|
877
|
+
"""Move the selected slots into a newly created action
|
|
878
|
+
|
|
879
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
880
|
+
:type execution_context: int | str | None
|
|
881
|
+
:type undo: bool | None
|
|
882
|
+
"""
|
|
883
|
+
|
|
860
884
|
def slot_new_for_id(
|
|
861
885
|
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
862
886
|
execution_context: int | str | None = None,
|
|
@@ -1267,6 +1267,26 @@ def select_random(
|
|
|
1267
1267
|
:type action: typing.Literal['SELECT','DESELECT'] | None
|
|
1268
1268
|
"""
|
|
1269
1269
|
|
|
1270
|
+
def select_similar(
|
|
1271
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1272
|
+
execution_context: int | str | None = None,
|
|
1273
|
+
undo: bool | None = None,
|
|
1274
|
+
*,
|
|
1275
|
+
mode: typing.Literal["LAYER", "MATERIAL", "VERTEX_COLOR", "RADIUS", "OPACITY"]
|
|
1276
|
+
| None = "LAYER",
|
|
1277
|
+
threshold: float | None = 0.1,
|
|
1278
|
+
):
|
|
1279
|
+
"""Select all strokes with similar characteristics
|
|
1280
|
+
|
|
1281
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1282
|
+
:type execution_context: int | str | None
|
|
1283
|
+
:type undo: bool | None
|
|
1284
|
+
:param mode: Mode
|
|
1285
|
+
:type mode: typing.Literal['LAYER','MATERIAL','VERTEX_COLOR','RADIUS','OPACITY'] | None
|
|
1286
|
+
:param threshold: Threshold
|
|
1287
|
+
:type threshold: float | None
|
|
1288
|
+
"""
|
|
1289
|
+
|
|
1270
1290
|
def separate(
|
|
1271
1291
|
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1272
1292
|
execution_context: int | str | None = None,
|
bpy/ops/ui/__init__.pyi
CHANGED
|
@@ -179,6 +179,18 @@ def editsource(
|
|
|
179
179
|
:type undo: bool | None
|
|
180
180
|
"""
|
|
181
181
|
|
|
182
|
+
def eyedropper_bone(
|
|
183
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
184
|
+
execution_context: int | str | None = None,
|
|
185
|
+
undo: bool | None = None,
|
|
186
|
+
):
|
|
187
|
+
"""Sample a bone from the 3D View or the Outliner to store in a property
|
|
188
|
+
|
|
189
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
190
|
+
:type execution_context: int | str | None
|
|
191
|
+
:type undo: bool | None
|
|
192
|
+
"""
|
|
193
|
+
|
|
182
194
|
def eyedropper_color(
|
|
183
195
|
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
184
196
|
execution_context: int | str | None = None,
|
bpy/types/__init__.pyi
CHANGED
|
@@ -30645,6 +30645,8 @@ of the scene and only show nodes of the renderer they are designed for.
|
|
|
30645
30645
|
* GeometryNodeMenuSwitch.output_template
|
|
30646
30646
|
* GeometryNodeMergeByDistance.input_template
|
|
30647
30647
|
* GeometryNodeMergeByDistance.output_template
|
|
30648
|
+
* GeometryNodeMergeLayers.input_template
|
|
30649
|
+
* GeometryNodeMergeLayers.output_template
|
|
30648
30650
|
* GeometryNodeMeshBoolean.input_template
|
|
30649
30651
|
* GeometryNodeMeshBoolean.output_template
|
|
30650
30652
|
* GeometryNodeMeshCircle.input_template
|
|
@@ -61417,6 +61419,99 @@ print(positions_data)
|
|
|
61417
61419
|
:columns: 2
|
|
61418
61420
|
|
|
61419
61421
|
|
|
61422
|
+
--------------------
|
|
61423
|
+
|
|
61424
|
+
* bpy_struct.id_data
|
|
61425
|
+
* Node.type
|
|
61426
|
+
* Node.location
|
|
61427
|
+
* Node.width
|
|
61428
|
+
* Node.height
|
|
61429
|
+
* Node.dimensions
|
|
61430
|
+
* Node.name
|
|
61431
|
+
* Node.label
|
|
61432
|
+
* Node.inputs
|
|
61433
|
+
* Node.outputs
|
|
61434
|
+
* Node.internal_links
|
|
61435
|
+
* Node.parent
|
|
61436
|
+
* Node.warning_propagation
|
|
61437
|
+
* Node.use_custom_color
|
|
61438
|
+
* Node.color
|
|
61439
|
+
* Node.select
|
|
61440
|
+
* Node.show_options
|
|
61441
|
+
* Node.show_preview
|
|
61442
|
+
* Node.hide
|
|
61443
|
+
* Node.mute
|
|
61444
|
+
* Node.show_texture
|
|
61445
|
+
* Node.bl_idname
|
|
61446
|
+
* Node.bl_label
|
|
61447
|
+
* Node.bl_description
|
|
61448
|
+
* Node.bl_icon
|
|
61449
|
+
* Node.bl_static_type
|
|
61450
|
+
* Node.bl_width_default
|
|
61451
|
+
* Node.bl_width_min
|
|
61452
|
+
* Node.bl_width_max
|
|
61453
|
+
* Node.bl_height_default
|
|
61454
|
+
* Node.bl_height_min
|
|
61455
|
+
* Node.bl_height_max
|
|
61456
|
+
|
|
61457
|
+
:columns: 2
|
|
61458
|
+
|
|
61459
|
+
|
|
61460
|
+
--------------------
|
|
61461
|
+
|
|
61462
|
+
* bpy_struct.as_pointer
|
|
61463
|
+
* bpy_struct.driver_add
|
|
61464
|
+
* bpy_struct.driver_remove
|
|
61465
|
+
* bpy_struct.get
|
|
61466
|
+
* bpy_struct.id_properties_clear
|
|
61467
|
+
* bpy_struct.id_properties_ensure
|
|
61468
|
+
* bpy_struct.id_properties_ui
|
|
61469
|
+
* bpy_struct.is_property_hidden
|
|
61470
|
+
* bpy_struct.is_property_overridable_library
|
|
61471
|
+
* bpy_struct.is_property_readonly
|
|
61472
|
+
* bpy_struct.is_property_set
|
|
61473
|
+
* bpy_struct.items
|
|
61474
|
+
* bpy_struct.keyframe_delete
|
|
61475
|
+
* bpy_struct.keyframe_insert
|
|
61476
|
+
* bpy_struct.keys
|
|
61477
|
+
* bpy_struct.path_from_id
|
|
61478
|
+
* bpy_struct.path_resolve
|
|
61479
|
+
* bpy_struct.pop
|
|
61480
|
+
* bpy_struct.property_overridable_library_set
|
|
61481
|
+
* bpy_struct.property_unset
|
|
61482
|
+
* bpy_struct.type_recast
|
|
61483
|
+
* bpy_struct.values
|
|
61484
|
+
* Node.socket_value_update
|
|
61485
|
+
* Node.is_registered_node_type
|
|
61486
|
+
* Node.poll
|
|
61487
|
+
* Node.poll_instance
|
|
61488
|
+
* Node.update
|
|
61489
|
+
* Node.insert_link
|
|
61490
|
+
* Node.init
|
|
61491
|
+
* Node.copy
|
|
61492
|
+
* Node.free
|
|
61493
|
+
* Node.draw_buttons
|
|
61494
|
+
* Node.draw_buttons_ext
|
|
61495
|
+
* Node.draw_label
|
|
61496
|
+
* Node.debug_zone_body_lazy_function_graph
|
|
61497
|
+
* Node.debug_zone_lazy_function_graph
|
|
61498
|
+
* Node.poll
|
|
61499
|
+
* Node.bl_rna_get_subclass
|
|
61500
|
+
* Node.bl_rna_get_subclass_py
|
|
61501
|
+
* NodeInternal.poll
|
|
61502
|
+
* NodeInternal.poll_instance
|
|
61503
|
+
* NodeInternal.update
|
|
61504
|
+
* NodeInternal.draw_buttons
|
|
61505
|
+
* NodeInternal.draw_buttons_ext
|
|
61506
|
+
* NodeInternal.bl_rna_get_subclass
|
|
61507
|
+
* NodeInternal.bl_rna_get_subclass_py
|
|
61508
|
+
* GeometryNode.poll
|
|
61509
|
+
* GeometryNode.bl_rna_get_subclass
|
|
61510
|
+
* GeometryNode.bl_rna_get_subclass_py
|
|
61511
|
+
|
|
61512
|
+
:columns: 2
|
|
61513
|
+
|
|
61514
|
+
|
|
61420
61515
|
--------------------
|
|
61421
61516
|
|
|
61422
61517
|
* bpy_struct.id_data
|
|
@@ -102963,7 +103058,7 @@ class AttributeGroupCurves(bpy_prop_collection[Attribute], bpy_struct):
|
|
|
102963
103058
|
"""
|
|
102964
103059
|
|
|
102965
103060
|
active_index: int | None
|
|
102966
|
-
""" Active attribute index
|
|
103061
|
+
""" Active attribute index or -1 when none are active
|
|
102967
103062
|
|
|
102968
103063
|
:type: int | None
|
|
102969
103064
|
"""
|
|
@@ -103034,7 +103129,7 @@ class AttributeGroupGreasePencil(bpy_prop_collection[Attribute], bpy_struct):
|
|
|
103034
103129
|
"""
|
|
103035
103130
|
|
|
103036
103131
|
active_index: int | None
|
|
103037
|
-
""" Active attribute index
|
|
103132
|
+
""" Active attribute index or -1 when none are active
|
|
103038
103133
|
|
|
103039
103134
|
:type: int | None
|
|
103040
103135
|
"""
|
|
@@ -103105,7 +103200,7 @@ class AttributeGroupGreasePencilDrawing(bpy_prop_collection[Attribute], bpy_stru
|
|
|
103105
103200
|
"""
|
|
103106
103201
|
|
|
103107
103202
|
active_index: int | None
|
|
103108
|
-
""" Active attribute index
|
|
103203
|
+
""" Active attribute index or -1 when none are active
|
|
103109
103204
|
|
|
103110
103205
|
:type: int | None
|
|
103111
103206
|
"""
|
|
@@ -103194,7 +103289,7 @@ class AttributeGroupMesh(bpy_prop_collection[Attribute], bpy_struct):
|
|
|
103194
103289
|
"""
|
|
103195
103290
|
|
|
103196
103291
|
active_index: int | None
|
|
103197
|
-
""" Active attribute index
|
|
103292
|
+
""" Active attribute index or -1 when none are active
|
|
103198
103293
|
|
|
103199
103294
|
:type: int | None
|
|
103200
103295
|
"""
|
|
@@ -103277,7 +103372,7 @@ class AttributeGroupPointCloud(bpy_prop_collection[Attribute], bpy_struct):
|
|
|
103277
103372
|
"""
|
|
103278
103373
|
|
|
103279
103374
|
active_index: int | None
|
|
103280
|
-
""" Active attribute index
|
|
103375
|
+
""" Active attribute index or -1 when none are active
|
|
103281
103376
|
|
|
103282
103377
|
:type: int | None
|
|
103283
103378
|
"""
|
|
@@ -112510,20 +112605,67 @@ class ActionSlot(bpy_struct):
|
|
|
112510
112605
|
:type: int
|
|
112511
112606
|
"""
|
|
112512
112607
|
|
|
112513
|
-
|
|
112608
|
+
id_root: typing.Literal[
|
|
112609
|
+
"ACTION",
|
|
112610
|
+
"ARMATURE",
|
|
112611
|
+
"BRUSH",
|
|
112612
|
+
"CACHEFILE",
|
|
112613
|
+
"CAMERA",
|
|
112614
|
+
"COLLECTION",
|
|
112615
|
+
"CURVE",
|
|
112616
|
+
"CURVES",
|
|
112617
|
+
"FONT",
|
|
112618
|
+
"GREASEPENCIL",
|
|
112619
|
+
"GREASEPENCIL_V3",
|
|
112620
|
+
"IMAGE",
|
|
112621
|
+
"KEY",
|
|
112622
|
+
"LATTICE",
|
|
112623
|
+
"LIBRARY",
|
|
112624
|
+
"LIGHT",
|
|
112625
|
+
"LIGHT_PROBE",
|
|
112626
|
+
"LINESTYLE",
|
|
112627
|
+
"MASK",
|
|
112628
|
+
"MATERIAL",
|
|
112629
|
+
"MESH",
|
|
112630
|
+
"META",
|
|
112631
|
+
"MOVIECLIP",
|
|
112632
|
+
"NODETREE",
|
|
112633
|
+
"OBJECT",
|
|
112634
|
+
"PAINTCURVE",
|
|
112635
|
+
"PALETTE",
|
|
112636
|
+
"PARTICLE",
|
|
112637
|
+
"POINTCLOUD",
|
|
112638
|
+
"SCENE",
|
|
112639
|
+
"SCREEN",
|
|
112640
|
+
"SOUND",
|
|
112641
|
+
"SPEAKER",
|
|
112642
|
+
"TEXT",
|
|
112643
|
+
"TEXTURE",
|
|
112644
|
+
"VOLUME",
|
|
112645
|
+
"WINDOWMANAGER",
|
|
112646
|
+
"WORKSPACE",
|
|
112647
|
+
"WORLD",
|
|
112648
|
+
"UNSPECIFIED",
|
|
112649
|
+
]
|
|
112650
|
+
""" Type of data-block that can be animated by this slot
|
|
112651
|
+
|
|
112652
|
+
:type: typing.Literal['ACTION','ARMATURE','BRUSH','CACHEFILE','CAMERA','COLLECTION','CURVE','CURVES','FONT','GREASEPENCIL','GREASEPENCIL_V3','IMAGE','KEY','LATTICE','LIBRARY','LIGHT','LIGHT_PROBE','LINESTYLE','MASK','MATERIAL','MESH','META','MOVIECLIP','NODETREE','OBJECT','PAINTCURVE','PALETTE','PARTICLE','POINTCLOUD','SCENE','SCREEN','SOUND','SPEAKER','TEXT','TEXTURE','VOLUME','WINDOWMANAGER','WORKSPACE','WORLD','UNSPECIFIED']
|
|
112653
|
+
"""
|
|
112654
|
+
|
|
112655
|
+
id_root_icon: int
|
|
112514
112656
|
"""
|
|
112515
112657
|
|
|
112516
112658
|
:type: int
|
|
112517
112659
|
"""
|
|
112518
112660
|
|
|
112519
112661
|
name: str
|
|
112520
|
-
""" Used when connecting an Action to a data-block, to find the correct slot handle
|
|
112662
|
+
""" Used when connecting an Action to a data-block, to find the correct slot handle. This is the display name, prefixed by two characters determined by the slot's ID type
|
|
112521
112663
|
|
|
112522
112664
|
:type: str
|
|
112523
112665
|
"""
|
|
112524
112666
|
|
|
112525
112667
|
name_display: str
|
|
112526
|
-
""" Name of the slot for
|
|
112668
|
+
""" Name of the slot, for display in the user interface. This name combined with the slot's data-block type is unique within its Action
|
|
112527
112669
|
|
|
112528
112670
|
:type: str
|
|
112529
112671
|
"""
|
|
@@ -118700,7 +118842,7 @@ class BrushGpencilSettings(bpy_struct):
|
|
|
118700
118842
|
"""
|
|
118701
118843
|
|
|
118702
118844
|
use_settings_outline: bool
|
|
118703
|
-
""" Convert stroke to
|
|
118845
|
+
""" Convert stroke to outline
|
|
118704
118846
|
|
|
118705
118847
|
:type: bool
|
|
118706
118848
|
"""
|
|
@@ -145545,10 +145687,10 @@ class GeometryNodeDualMesh(GeometryNode, NodeInternal, Node, bpy_struct):
|
|
|
145545
145687
|
class GeometryNodeDuplicateElements(GeometryNode, NodeInternal, Node, bpy_struct):
|
|
145546
145688
|
"""Generate an arbitrary number copies of each selected input element"""
|
|
145547
145689
|
|
|
145548
|
-
domain: typing.Literal["POINT", "EDGE", "FACE", "SPLINE", "INSTANCE"]
|
|
145690
|
+
domain: typing.Literal["POINT", "EDGE", "FACE", "SPLINE", "LAYER", "INSTANCE"]
|
|
145549
145691
|
""" Which domain to duplicate
|
|
145550
145692
|
|
|
145551
|
-
:type: typing.Literal['POINT','EDGE','FACE','SPLINE','INSTANCE']
|
|
145693
|
+
:type: typing.Literal['POINT','EDGE','FACE','SPLINE','LAYER','INSTANCE']
|
|
145552
145694
|
"""
|
|
145553
145695
|
|
|
145554
145696
|
@classmethod
|
|
@@ -149478,6 +149620,65 @@ class GeometryNodeMergeByDistance(GeometryNode, NodeInternal, Node, bpy_struct):
|
|
|
149478
149620
|
:rtype: typing.Any
|
|
149479
149621
|
"""
|
|
149480
149622
|
|
|
149623
|
+
class GeometryNodeMergeLayers(GeometryNode, NodeInternal, Node, bpy_struct):
|
|
149624
|
+
"""Join groups of grease pencil layers into one"""
|
|
149625
|
+
|
|
149626
|
+
mode: typing.Literal["MERGE_BY_NAME", "MERGE_BY_ID"]
|
|
149627
|
+
""" Determines how to choose which layers are merged
|
|
149628
|
+
|
|
149629
|
+
:type: typing.Literal['MERGE_BY_NAME','MERGE_BY_ID']
|
|
149630
|
+
"""
|
|
149631
|
+
|
|
149632
|
+
@classmethod
|
|
149633
|
+
def is_registered_node_type(cls) -> bool:
|
|
149634
|
+
"""True if a registered node type
|
|
149635
|
+
|
|
149636
|
+
:return: Result
|
|
149637
|
+
:rtype: bool
|
|
149638
|
+
"""
|
|
149639
|
+
|
|
149640
|
+
@classmethod
|
|
149641
|
+
def input_template(cls, index: int | None) -> NodeInternalSocketTemplate:
|
|
149642
|
+
"""Input socket template
|
|
149643
|
+
|
|
149644
|
+
:param index: Index
|
|
149645
|
+
:type index: int | None
|
|
149646
|
+
:return: result
|
|
149647
|
+
:rtype: NodeInternalSocketTemplate
|
|
149648
|
+
"""
|
|
149649
|
+
|
|
149650
|
+
@classmethod
|
|
149651
|
+
def output_template(cls, index: int | None) -> NodeInternalSocketTemplate:
|
|
149652
|
+
"""Output socket template
|
|
149653
|
+
|
|
149654
|
+
:param index: Index
|
|
149655
|
+
:type index: int | None
|
|
149656
|
+
:return: result
|
|
149657
|
+
:rtype: NodeInternalSocketTemplate
|
|
149658
|
+
"""
|
|
149659
|
+
|
|
149660
|
+
@classmethod
|
|
149661
|
+
def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
|
|
149662
|
+
"""
|
|
149663
|
+
|
|
149664
|
+
:param id: The RNA type identifier.
|
|
149665
|
+
:type id: str | None
|
|
149666
|
+
:param default:
|
|
149667
|
+
:return: The RNA type or default when not found.
|
|
149668
|
+
:rtype: Struct
|
|
149669
|
+
"""
|
|
149670
|
+
|
|
149671
|
+
@classmethod
|
|
149672
|
+
def bl_rna_get_subclass_py(cls, id: str | None, default=None) -> typing.Any:
|
|
149673
|
+
"""
|
|
149674
|
+
|
|
149675
|
+
:param id: The RNA type identifier.
|
|
149676
|
+
:type id: str | None
|
|
149677
|
+
:param default:
|
|
149678
|
+
:return: The class or default when not found.
|
|
149679
|
+
:rtype: typing.Any
|
|
149680
|
+
"""
|
|
149681
|
+
|
|
149481
149682
|
class GeometryNodeMeshBoolean(GeometryNode, NodeInternal, Node, bpy_struct):
|
|
149482
149683
|
"""Cut, subtract, or join multiple mesh inputs"""
|
|
149483
149684
|
|
|
@@ -154203,6 +154404,12 @@ class GeometryNodeToolSetSelection(GeometryNode, NodeInternal, Node, bpy_struct)
|
|
|
154203
154404
|
:type: bpy.typing.AttributeDomainPointEdgeFaceCurveItems
|
|
154204
154405
|
"""
|
|
154205
154406
|
|
|
154407
|
+
selection_type: typing.Literal["BOOLEAN", "FLOAT"]
|
|
154408
|
+
"""
|
|
154409
|
+
|
|
154410
|
+
:type: typing.Literal['BOOLEAN','FLOAT']
|
|
154411
|
+
"""
|
|
154412
|
+
|
|
154206
154413
|
@classmethod
|
|
154207
154414
|
def is_registered_node_type(cls) -> bool:
|
|
154208
154415
|
"""True if a registered node type
|
|
@@ -217708,12 +217915,24 @@ class ThemeUserInterface(bpy_struct):
|
|
|
217708
217915
|
:type: mathutils.Color
|
|
217709
217916
|
"""
|
|
217710
217917
|
|
|
217711
|
-
|
|
217712
|
-
""" Color of the
|
|
217918
|
+
editor_border: mathutils.Color
|
|
217919
|
+
""" Color of the border between editors
|
|
217713
217920
|
|
|
217714
217921
|
:type: mathutils.Color
|
|
217715
217922
|
"""
|
|
217716
217923
|
|
|
217924
|
+
editor_outline: bpy_prop_array[float]
|
|
217925
|
+
""" Color of the outline of each editor, except the active one
|
|
217926
|
+
|
|
217927
|
+
:type: bpy_prop_array[float]
|
|
217928
|
+
"""
|
|
217929
|
+
|
|
217930
|
+
editor_outline_active: bpy_prop_array[float]
|
|
217931
|
+
""" Color of the outline of the active editor
|
|
217932
|
+
|
|
217933
|
+
:type: bpy_prop_array[float]
|
|
217934
|
+
"""
|
|
217935
|
+
|
|
217717
217936
|
gizmo_a: mathutils.Color
|
|
217718
217937
|
"""
|
|
217719
217938
|
|
|
@@ -224701,12 +224920,36 @@ class View3DOverlay(bpy_struct):
|
|
|
224701
224920
|
:type: float
|
|
224702
224921
|
"""
|
|
224703
224922
|
|
|
224923
|
+
gpencil_grid_color: mathutils.Color
|
|
224924
|
+
""" Canvas grid color
|
|
224925
|
+
|
|
224926
|
+
:type: mathutils.Color
|
|
224927
|
+
"""
|
|
224928
|
+
|
|
224929
|
+
gpencil_grid_offset: bpy_prop_array[float]
|
|
224930
|
+
""" Canvas grid offset
|
|
224931
|
+
|
|
224932
|
+
:type: bpy_prop_array[float]
|
|
224933
|
+
"""
|
|
224934
|
+
|
|
224704
224935
|
gpencil_grid_opacity: float
|
|
224705
224936
|
""" Canvas grid opacity
|
|
224706
224937
|
|
|
224707
224938
|
:type: float
|
|
224708
224939
|
"""
|
|
224709
224940
|
|
|
224941
|
+
gpencil_grid_scale: mathutils.Vector
|
|
224942
|
+
""" Canvas grid scale
|
|
224943
|
+
|
|
224944
|
+
:type: mathutils.Vector
|
|
224945
|
+
"""
|
|
224946
|
+
|
|
224947
|
+
gpencil_grid_subdivisions: int
|
|
224948
|
+
""" Canvas grid subdivisions
|
|
224949
|
+
|
|
224950
|
+
:type: int
|
|
224951
|
+
"""
|
|
224952
|
+
|
|
224710
224953
|
gpencil_vertex_paint_opacity: float
|
|
224711
224954
|
""" Vertex Paint mix factor
|
|
224712
224955
|
|
|
@@ -230219,6 +230462,8 @@ DATA_UL_bone_collections: bl_ui.properties_data_armature.DATA_UL_bone_collection
|
|
|
230219
230462
|
|
|
230220
230463
|
DOPESHEET_HT_header: bl_ui.space_dopesheet.DOPESHEET_HT_header
|
|
230221
230464
|
|
|
230465
|
+
DOPESHEET_MT_action: bl_ui.space_dopesheet.DOPESHEET_MT_action
|
|
230466
|
+
|
|
230222
230467
|
DOPESHEET_MT_channel: bl_ui.space_dopesheet.DOPESHEET_MT_channel
|
|
230223
230468
|
|
|
230224
230469
|
DOPESHEET_MT_channel_context_menu: bl_ui.space_dopesheet.DOPESHEET_MT_channel_context_menu
|
|
@@ -232769,6 +233014,8 @@ VIEW3D_PT_overlay_geometry: bl_ui.space_view3d.VIEW3D_PT_overlay_geometry
|
|
|
232769
233014
|
|
|
232770
233015
|
VIEW3D_PT_overlay_gpencil_options: bl_ui.space_view3d.VIEW3D_PT_overlay_gpencil_options
|
|
232771
233016
|
|
|
233017
|
+
VIEW3D_PT_overlay_grease_pencil_canvas_options: bl_ui.space_view3d.VIEW3D_PT_overlay_grease_pencil_canvas_options
|
|
233018
|
+
|
|
232772
233019
|
VIEW3D_PT_overlay_grease_pencil_options: bl_ui.space_view3d.VIEW3D_PT_overlay_grease_pencil_options
|
|
232773
233020
|
|
|
232774
233021
|
VIEW3D_PT_overlay_guides: bl_ui.space_view3d.VIEW3D_PT_overlay_guides
|
bpy/typing/__init__.pyi
CHANGED
|
@@ -982,6 +982,7 @@ type IconItems = typing.Literal[
|
|
|
982
982
|
"FCURVE", # FCURVE.
|
|
983
983
|
"FILE", # FILE.
|
|
984
984
|
"GREASEPENCIL", # GREASEPENCIL.
|
|
985
|
+
"GREASEPENCIL_LAYER_GROUP", # GREASEPENCIL_LAYER_GROUP.
|
|
985
986
|
"GROUP_BONE", # GROUP_BONE.
|
|
986
987
|
"GROUP_UVS", # GROUP_UVS.
|
|
987
988
|
"GROUP_VCOL", # GROUP_VCOL.
|
|
@@ -2314,7 +2315,7 @@ type ObjectModifierTypeItems = typing.Literal[
|
|
|
2314
2315
|
"GREASE_PENCIL_SIMPLIFY", # Simplify.Simplify stroke reducing number of points.
|
|
2315
2316
|
"GREASE_PENCIL_SUBDIV", # Subdivide.Grease Pencil subdivide modifier.
|
|
2316
2317
|
"GREASE_PENCIL_ENVELOPE", # Envelope.Create an envelope shape.
|
|
2317
|
-
"GREASE_PENCIL_OUTLINE", # Outline.Convert stroke to
|
|
2318
|
+
"GREASE_PENCIL_OUTLINE", # Outline.Convert stroke to outline.
|
|
2318
2319
|
"ARMATURE", # Armature.Deform the shape using an armature object.
|
|
2319
2320
|
"CAST", # Cast.Shift the shape towards a predefined primitive.
|
|
2320
2321
|
"CURVE", # Curve.Bend the mesh using a curve object.
|
|
@@ -155,7 +155,7 @@ bl_ui/properties_workspace/__init__.pyi,sha256=H9ixaD-_K6YbmzvvzDqE8Ca1_jvGeOJ0S
|
|
|
155
155
|
bl_ui/properties_world/__init__.pyi,sha256=2BvXUUUI6BdaA61DKNR3xNGGLSiK5kfeHW25x-s4p7w,9145
|
|
156
156
|
bl_ui/space_clip/__init__.pyi,sha256=I9bHrnPSZnkPYGxKw3tlUqch3FnyL4fpyjIzG-rqpKk,45001
|
|
157
157
|
bl_ui/space_console/__init__.pyi,sha256=GyduCGIGDMNbjis1BbBnfdz1Y9eCrasCPHAACb3MlXI,3315
|
|
158
|
-
bl_ui/space_dopesheet/__init__.pyi,sha256=
|
|
158
|
+
bl_ui/space_dopesheet/__init__.pyi,sha256=CtJCi733jLxgZTIV_NuxoD-fxwzWxTZJ2jv764Hdpnc,21400
|
|
159
159
|
bl_ui/space_filebrowser/__init__.pyi,sha256=mFlZd3CLqrkdD-_nftH3A8f1hVHwHeGUvWBFEpIIoaM,19466
|
|
160
160
|
bl_ui/space_graph/__init__.pyi,sha256=7XFWtjx8rwzqzsIpnXcZbVgHHp1Xa6gr-GSxy5f7MhI,10909
|
|
161
161
|
bl_ui/space_image/__init__.pyi,sha256=Q6rgGQ3vJ0QZTcekgTJRVVIuxBeMvvkque8wBSBgV2g,44704
|
|
@@ -173,7 +173,7 @@ bl_ui/space_toolsystem_common/__init__.pyi,sha256=IFq4tTh_oM6-dQWMZbuRo6HhYinOLB
|
|
|
173
173
|
bl_ui/space_toolsystem_toolbar/__init__.pyi,sha256=brRxVRQ4mqp4TxREtfNsXBLfgFC3Y30MY-WppfJOwNg,10177
|
|
174
174
|
bl_ui/space_topbar/__init__.pyi,sha256=nBXvsE4g5M25m_fVVXWAYRPGpJFq3p95K8W-hue91z4,16175
|
|
175
175
|
bl_ui/space_userpref/__init__.pyi,sha256=EGCdnPQ4iTmERhhzHcb3l-QZBQpZGoGjHMGeTlcyryY,79706
|
|
176
|
-
bl_ui/space_view3d/__init__.pyi,sha256=
|
|
176
|
+
bl_ui/space_view3d/__init__.pyi,sha256=lbPA9fJIuYHrtd3fZC-bJa0hk6FhTDyIlJYGUZkhn-Y,168464
|
|
177
177
|
bl_ui/space_view3d_toolbar/__init__.pyi,sha256=U4P88SaA-UbGd9LlU_7bWuApb2N2h0bb9a_H-VFzS_g,76673
|
|
178
178
|
bl_ui/utils/__init__.pyi,sha256=qkgl-AlZI3QD4UUITGIvN9PbifOI4BPkZBpu7WyxMBw,483
|
|
179
179
|
bl_ui_utils/__init__.pyi,sha256=ZOo9_bgn1c9NiCNalhTplCD2IChG67rU_V3BeG0k4pE,93
|
|
@@ -199,7 +199,7 @@ bpy/app/translations/__init__.pyi,sha256=9iWErXQPvd96E9x0WJdCNSuzBwreKolCPk-kuHA
|
|
|
199
199
|
bpy/msgbus/__init__.pyi,sha256=RFEpCgXiUbFwIZZq3sSyg7fQy90-c_ilZYW5z_7abRc,2597
|
|
200
200
|
bpy/ops/__init__.pyi,sha256=JptIpKHRAy3jrKGANEBzrwmfNuZx8JLP9ofvWLCaLBU,5396
|
|
201
201
|
bpy/ops/action/__init__.pyi,sha256=VrxQ_0mc9NDobAExZzZqel7ZiY0dQ0KsoGZDgE4SQlk,23948
|
|
202
|
-
bpy/ops/anim/__init__.pyi,sha256=
|
|
202
|
+
bpy/ops/anim/__init__.pyi,sha256=8ybOhNeVQOaiADmib2lvKfb5C4U5Fu3BF4hLGwtCgnA,33981
|
|
203
203
|
bpy/ops/armature/__init__.pyi,sha256=dY4VCg58NSAHb2vSnR8MH2eQ9ptpb6bVstghBy3kCL8,27670
|
|
204
204
|
bpy/ops/asset/__init__.pyi,sha256=dpL0w3FjWEESKJoB-ATpoPGMn33IJ5U_kBwZls-RhDM,11055
|
|
205
205
|
bpy/ops/boid/__init__.pyi,sha256=DIiUV9shVwyav4mJHUUTq7QfEOLanI0TTDJGTDvDUfA,3141
|
|
@@ -227,7 +227,7 @@ bpy/ops/geometry/__init__.pyi,sha256=RMnHNy_D5DBSfXa-aNyvLelG1xqubdQHiS7uq_ZHHUM
|
|
|
227
227
|
bpy/ops/gizmogroup/__init__.pyi,sha256=vs2bKbSKaDwhK4FXrk9qeGoHN6QfR4MystoE4fSTBik,1567
|
|
228
228
|
bpy/ops/gpencil/__init__.pyi,sha256=Icy9pT-fvQ-l8e8gFFeU3qJ6YJNQRT8MGFYyUzvF1B0,106013
|
|
229
229
|
bpy/ops/graph/__init__.pyi,sha256=PXni5g0PxsMVmVzbrz52ImgYYq3DhLmeOfoJaxBY2IQ,50633
|
|
230
|
-
bpy/ops/grease_pencil/__init__.pyi,sha256=
|
|
230
|
+
bpy/ops/grease_pencil/__init__.pyi,sha256=AoIU-_K20xrnaKCOU4XvHdF4eEPucnrWjaxvRV_ScLA,69115
|
|
231
231
|
bpy/ops/image/__init__.pyi,sha256=8Lrhjo_b4BtWlTg2gNa9VPvGmXlOy9gi-ktyNR6cIaU,59152
|
|
232
232
|
bpy/ops/import_anim/__init__.pyi,sha256=1Hh_sMxH3prQ__SZY6Ftqufzg7hE85v3z9YtxcP_hos,3202
|
|
233
233
|
bpy/ops/import_curve/__init__.pyi,sha256=Q7CqkQh-NAl-cPeS7W54iBooE1wxgWOZMQo9pbzU36c,637
|
|
@@ -266,7 +266,7 @@ bpy/ops/text/__init__.pyi,sha256=xgNPzOtwwfsqars7bS3BCjbUVxChtJN4ijtFlM5-TAA,271
|
|
|
266
266
|
bpy/ops/text_editor/__init__.pyi,sha256=X6OO2EJlcXLI2V0wUpY0CYN3wWbmex9UyzbAjkKFQFA,787
|
|
267
267
|
bpy/ops/texture/__init__.pyi,sha256=ciao77HW4AR82KnWyCTGia2cvrt6tofSGvO-q-h6IoA,1654
|
|
268
268
|
bpy/ops/transform/__init__.pyi,sha256=xWPwqPz6ezRWj2ojVFl0NY_HgWf4GbHfAQYSafW3FiY,61028
|
|
269
|
-
bpy/ops/ui/__init__.pyi,sha256=
|
|
269
|
+
bpy/ops/ui/__init__.pyi,sha256=Ryul8H-SjXhABn5aOYmbHXsMQ3jgwA7hoA6WIji_eY8,17497
|
|
270
270
|
bpy/ops/uilist/__init__.pyi,sha256=1j1BOk3jU2UMPG118gnlNAWvG0mny4q6niyUcDmX1HI,2044
|
|
271
271
|
bpy/ops/uv/__init__.pyi,sha256=x9IoLW6Axs_mucbfMq0TrMtTmoQcad7gUir0XcIVHSE,52020
|
|
272
272
|
bpy/ops/view2d/__init__.pyi,sha256=9y-7TbxjffVQRn9mYm3M-M2FtytOnsAFLTqTPoWJHMw,8941
|
|
@@ -276,8 +276,8 @@ bpy/ops/workspace/__init__.pyi,sha256=49b-pV7pbv_RQgq0i7WMkXE3p-qiHB79I8JLbG1W6h
|
|
|
276
276
|
bpy/ops/world/__init__.pyi,sha256=btAfDpAw4qQBryoGByhcX-FUkNvh26J45diTP1w-3-s,918
|
|
277
277
|
bpy/path/__init__.pyi,sha256=lXSqQ4p4zukM_-6TaN4v7lNWFVY0xbYGMkOVLpkbpsI,5444
|
|
278
278
|
bpy/props/__init__.pyi,sha256=jUUCk6C-K0f8Qt8-ln9GB_IH0NteN6meCPjr2spyhq4,29439
|
|
279
|
-
bpy/types/__init__.pyi,sha256=
|
|
280
|
-
bpy/typing/__init__.pyi,sha256=
|
|
279
|
+
bpy/types/__init__.pyi,sha256=8KktUUbuDi7XXc67TwwIACKLJsdw77XNYHsLPuqEdcE,5353389
|
|
280
|
+
bpy/typing/__init__.pyi,sha256=7jjNtrLEpp8FCObTBb-IvF1rzAzDIXa1vaDvS58s9yg,137984
|
|
281
281
|
bpy/utils/__init__.pyi,sha256=AEb3oVPPh_gqLyKORj6rsxDPWvXIHjqp_eME3z98GcM,13117
|
|
282
282
|
bpy/utils/previews/__init__.pyi,sha256=AsbDN4vRLbSTZ7_S_4LqmI1sJmV_8NnqDt1QfBdH94Y,2280
|
|
283
283
|
bpy/utils/units/__init__.pyi,sha256=r9G6UXferw_5pDijn-FmpyhYSnEng3_y-5apdkPAKl0,2631
|
|
@@ -359,7 +359,7 @@ rna_prop_ui/__init__.pyi,sha256=lShhkbbeJ_ANi2dy4J4HIkyp1HZrMqCfhcf8QpAQsj0,1281
|
|
|
359
359
|
rna_prop_ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
360
360
|
rna_xml/__init__.pyi,sha256=idYsAZj-_egBKMA2pQl2P9IoNhZxXIkBSALFuq-ylO8,577
|
|
361
361
|
rna_xml/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
362
|
-
fake_bpy_module-
|
|
363
|
-
fake_bpy_module-
|
|
364
|
-
fake_bpy_module-
|
|
365
|
-
fake_bpy_module-
|
|
362
|
+
fake_bpy_module-20240928.dist-info/METADATA,sha256=AqRyom-ohZzKR9NibDLSabRCSC9F4tCpmQsUJ1ekMG8,7289
|
|
363
|
+
fake_bpy_module-20240928.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
|
|
364
|
+
fake_bpy_module-20240928.dist-info/top_level.txt,sha256=SZm3DVRKif7dFSjYKiIIg3_7uqjIwRAwOnCIcT4hRNM,500
|
|
365
|
+
fake_bpy_module-20240928.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|