fake-bpy-module-latest 20260129__py3-none-any.whl → 20260131__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.
- bl_operators/node/__init__.pyi +14 -0
- bl_ui/generic_ui_list/__init__.pyi +1 -1
- bl_ui/node_add_menu/__init__.pyi +3 -2
- bpy/ops/sequencer/__init__.pyi +0 -2
- bpy/stub_internal/rna_enums/__init__.pyi +2 -0
- bpy/types/__init__.pyi +422 -19
- {fake_bpy_module_latest-20260129.dist-info → fake_bpy_module_latest-20260131.dist-info}/METADATA +1 -1
- {fake_bpy_module_latest-20260129.dist-info → fake_bpy_module_latest-20260131.dist-info}/RECORD +11 -11
- mathutils/bvhtree/__init__.pyi +2 -1
- {fake_bpy_module_latest-20260129.dist-info → fake_bpy_module_latest-20260131.dist-info}/WHEEL +0 -0
- {fake_bpy_module_latest-20260129.dist-info → fake_bpy_module_latest-20260131.dist-info}/top_level.txt +0 -0
bl_operators/node/__init__.pyi
CHANGED
|
@@ -530,6 +530,13 @@ class NODE_OT_swap_node(NodeSwapOperator, _bpy_types.Operator):
|
|
|
530
530
|
:param context:
|
|
531
531
|
"""
|
|
532
532
|
|
|
533
|
+
@staticmethod
|
|
534
|
+
def get_node_sockets(node) -> None:
|
|
535
|
+
"""
|
|
536
|
+
|
|
537
|
+
:param node:
|
|
538
|
+
"""
|
|
539
|
+
|
|
533
540
|
@staticmethod
|
|
534
541
|
def get_zone_pair(tree, node) -> None:
|
|
535
542
|
"""
|
|
@@ -538,6 +545,13 @@ class NODE_OT_swap_node(NodeSwapOperator, _bpy_types.Operator):
|
|
|
538
545
|
:param node:
|
|
539
546
|
"""
|
|
540
547
|
|
|
548
|
+
def transfer_node_sockets(self, old_node, new_node) -> None:
|
|
549
|
+
"""
|
|
550
|
+
|
|
551
|
+
:param old_node:
|
|
552
|
+
:param new_node:
|
|
553
|
+
"""
|
|
554
|
+
|
|
541
555
|
class NODE_OT_swap_zone(NodeSwapOperator, ZoneOperator, _bpy_types.Operator):
|
|
542
556
|
bl_idname: typing.Any
|
|
543
557
|
bl_label: typing.Any
|
|
@@ -114,7 +114,7 @@ class UILIST_OT_entry_remove(GenericUIListOperator, _bpy_types.Operator):
|
|
|
114
114
|
|
|
115
115
|
def draw_ui_list(
|
|
116
116
|
layout: bpy.types.UILayout,
|
|
117
|
-
context:
|
|
117
|
+
context: _bpy_types.Context,
|
|
118
118
|
class_name: str = "UI_UL_list",
|
|
119
119
|
*,
|
|
120
120
|
unique_id: str,
|
bl_ui/node_add_menu/__init__.pyi
CHANGED
|
@@ -32,11 +32,12 @@ class NodeMenu(_bpy_types.Menu):
|
|
|
32
32
|
"""
|
|
33
33
|
|
|
34
34
|
@classmethod
|
|
35
|
-
def color_mix_node(cls, context, layout) -> None:
|
|
35
|
+
def color_mix_node(cls, context, layout, search_weight=0.0) -> None:
|
|
36
36
|
"""The Mix Color node, with its different blend modes available while in search.
|
|
37
37
|
|
|
38
38
|
:param context:
|
|
39
39
|
:param layout:
|
|
40
|
+
:param search_weight:
|
|
40
41
|
"""
|
|
41
42
|
|
|
42
43
|
@classmethod
|
|
@@ -283,7 +284,7 @@ class SwapNodeMenu(NodeMenu):
|
|
|
283
284
|
"""
|
|
284
285
|
|
|
285
286
|
def add_closure_zone(layout, label) -> None: ...
|
|
286
|
-
def add_color_mix_node(context, layout) -> None: ...
|
|
287
|
+
def add_color_mix_node(context, layout, search_weight=0.0) -> None: ...
|
|
287
288
|
def add_empty_group(layout) -> None: ...
|
|
288
289
|
def add_foreach_geometry_element_zone(layout, label) -> None: ...
|
|
289
290
|
def add_node_type(
|
bpy/ops/sequencer/__init__.pyi
CHANGED
|
@@ -1135,12 +1135,10 @@ def retiming_segment_speed_set(
|
|
|
1135
1135
|
/,
|
|
1136
1136
|
*,
|
|
1137
1137
|
speed: float | None = 100.0,
|
|
1138
|
-
keep_retiming: bool | None = True,
|
|
1139
1138
|
) -> None:
|
|
1140
1139
|
"""Set speed of retimed segment
|
|
1141
1140
|
|
|
1142
1141
|
:param speed: Speed, New speed of retimed segment
|
|
1143
|
-
:param keep_retiming: Preserve Current Retiming, Keep speed of other segments unchanged, change strip length instead
|
|
1144
1142
|
"""
|
|
1145
1143
|
|
|
1146
1144
|
def retiming_show(
|
|
@@ -771,6 +771,7 @@ type FmodifierTypeItems = typing.Literal[
|
|
|
771
771
|
"NOISE", # Noise.Add pseudo-random noise on top of F-Curves.
|
|
772
772
|
"LIMITS", # Limits.Restrict maximum and minimum values of F-Curve.
|
|
773
773
|
"STEPPED", # Stepped Interpolation.Snap values to nearest grid step, e.g. for a stop-motion look.
|
|
774
|
+
"SMOOTH", # Gaussian Smoothing.Smooth curve using Gaussian smoothing.
|
|
774
775
|
]
|
|
775
776
|
type GeometryComponentTypeItems = typing.Literal[
|
|
776
777
|
"MESH", # Mesh.Mesh component containing point, corner, edge and face data.
|
|
@@ -2304,6 +2305,7 @@ type NodeVecMathItems = typing.Literal[
|
|
|
2304
2305
|
"SIGN", # Sign.Entry-wise sign.
|
|
2305
2306
|
"MINIMUM", # Minimum.Entry-wise minimum.
|
|
2306
2307
|
"MAXIMUM", # Maximum.Entry-wise maximum.
|
|
2308
|
+
"ROUND", # Round.Entry-wise round to the nearest integer. Round upward if the fraction part is 0.5.
|
|
2307
2309
|
"FLOOR", # Floor.Entry-wise floor.
|
|
2308
2310
|
"CEIL", # Ceil.Entry-wise ceil.
|
|
2309
2311
|
"FRACTION", # Fraction.The fraction part of A entry-wise.
|
bpy/types/__init__.pyi
CHANGED
|
@@ -33776,6 +33776,10 @@ It demonstrates:
|
|
|
33776
33776
|
* GeometryNodeGridInfo.output_template
|
|
33777
33777
|
* GeometryNodeGridLaplacian.input_template
|
|
33778
33778
|
* GeometryNodeGridLaplacian.output_template
|
|
33779
|
+
* GeometryNodeGridMean.input_template
|
|
33780
|
+
* GeometryNodeGridMean.output_template
|
|
33781
|
+
* GeometryNodeGridMedian.input_template
|
|
33782
|
+
* GeometryNodeGridMedian.output_template
|
|
33779
33783
|
* GeometryNodeGridPrune.input_template
|
|
33780
33784
|
* GeometryNodeGridPrune.output_template
|
|
33781
33785
|
* GeometryNodeGridToMesh.input_template
|
|
@@ -40246,6 +40250,104 @@ an existing modal keymap such as "Knife Tool Modal Map".
|
|
|
40246
40250
|
:columns: 2
|
|
40247
40251
|
|
|
40248
40252
|
|
|
40253
|
+
--------------------
|
|
40254
|
+
|
|
40255
|
+
* bpy_struct.id_data
|
|
40256
|
+
* Node.type
|
|
40257
|
+
* Node.location
|
|
40258
|
+
* Node.location_absolute
|
|
40259
|
+
* Node.width
|
|
40260
|
+
* Node.height
|
|
40261
|
+
* Node.dimensions
|
|
40262
|
+
* Node.name
|
|
40263
|
+
* Node.label
|
|
40264
|
+
* Node.inputs
|
|
40265
|
+
* Node.outputs
|
|
40266
|
+
* Node.internal_links
|
|
40267
|
+
* Node.parent
|
|
40268
|
+
* Node.warning_propagation
|
|
40269
|
+
* Node.use_custom_color
|
|
40270
|
+
* Node.color
|
|
40271
|
+
* Node.color_tag
|
|
40272
|
+
* Node.select
|
|
40273
|
+
* Node.show_options
|
|
40274
|
+
* Node.show_preview
|
|
40275
|
+
* Node.hide
|
|
40276
|
+
* Node.mute
|
|
40277
|
+
* Node.show_texture
|
|
40278
|
+
* Node.bl_idname
|
|
40279
|
+
* Node.bl_label
|
|
40280
|
+
* Node.bl_description
|
|
40281
|
+
* Node.bl_icon
|
|
40282
|
+
* Node.bl_static_type
|
|
40283
|
+
* Node.bl_width_default
|
|
40284
|
+
* Node.bl_width_min
|
|
40285
|
+
* Node.bl_width_max
|
|
40286
|
+
* Node.bl_height_default
|
|
40287
|
+
* Node.bl_height_min
|
|
40288
|
+
* Node.bl_height_max
|
|
40289
|
+
|
|
40290
|
+
:columns: 2
|
|
40291
|
+
|
|
40292
|
+
|
|
40293
|
+
--------------------
|
|
40294
|
+
|
|
40295
|
+
* bpy_struct.as_pointer
|
|
40296
|
+
* bpy_struct.driver_add
|
|
40297
|
+
* bpy_struct.driver_remove
|
|
40298
|
+
* bpy_struct.get
|
|
40299
|
+
* bpy_struct.id_properties_clear
|
|
40300
|
+
* bpy_struct.id_properties_ensure
|
|
40301
|
+
* bpy_struct.id_properties_ui
|
|
40302
|
+
* bpy_struct.is_property_hidden
|
|
40303
|
+
* bpy_struct.is_property_overridable_library
|
|
40304
|
+
* bpy_struct.is_property_readonly
|
|
40305
|
+
* bpy_struct.is_property_set
|
|
40306
|
+
* bpy_struct.items
|
|
40307
|
+
* bpy_struct.keyframe_delete
|
|
40308
|
+
* bpy_struct.keyframe_insert
|
|
40309
|
+
* bpy_struct.keys
|
|
40310
|
+
* bpy_struct.path_from_id
|
|
40311
|
+
* bpy_struct.path_from_module
|
|
40312
|
+
* bpy_struct.path_resolve
|
|
40313
|
+
* bpy_struct.pop
|
|
40314
|
+
* bpy_struct.property_overridable_library_set
|
|
40315
|
+
* bpy_struct.property_unset
|
|
40316
|
+
* bpy_struct.rna_ancestors
|
|
40317
|
+
* bpy_struct.type_recast
|
|
40318
|
+
* bpy_struct.values
|
|
40319
|
+
* Node.bl_system_properties_get
|
|
40320
|
+
* Node.socket_value_update
|
|
40321
|
+
* Node.is_registered_node_type
|
|
40322
|
+
* Node.poll
|
|
40323
|
+
* Node.poll_instance
|
|
40324
|
+
* Node.update
|
|
40325
|
+
* Node.insert_link
|
|
40326
|
+
* Node.init
|
|
40327
|
+
* Node.copy
|
|
40328
|
+
* Node.free
|
|
40329
|
+
* Node.draw_buttons
|
|
40330
|
+
* Node.draw_buttons_ext
|
|
40331
|
+
* Node.draw_label
|
|
40332
|
+
* Node.debug_zone_body_lazy_function_graph
|
|
40333
|
+
* Node.debug_zone_lazy_function_graph
|
|
40334
|
+
* Node.poll
|
|
40335
|
+
* Node.bl_rna_get_subclass
|
|
40336
|
+
* Node.bl_rna_get_subclass_py
|
|
40337
|
+
* NodeInternal.poll
|
|
40338
|
+
* NodeInternal.poll_instance
|
|
40339
|
+
* NodeInternal.update
|
|
40340
|
+
* NodeInternal.draw_buttons
|
|
40341
|
+
* NodeInternal.draw_buttons_ext
|
|
40342
|
+
* NodeInternal.bl_rna_get_subclass
|
|
40343
|
+
* NodeInternal.bl_rna_get_subclass_py
|
|
40344
|
+
* GeometryNode.poll
|
|
40345
|
+
* GeometryNode.bl_rna_get_subclass
|
|
40346
|
+
* GeometryNode.bl_rna_get_subclass_py
|
|
40347
|
+
|
|
40348
|
+
:columns: 2
|
|
40349
|
+
|
|
40350
|
+
|
|
40249
40351
|
--------------------
|
|
40250
40352
|
|
|
40251
40353
|
* bpy_struct.id_data
|
|
@@ -57037,6 +57139,8 @@ an existing modal keymap such as "Knife Tool Modal Map".
|
|
|
57037
57139
|
|
|
57038
57140
|
--------------------
|
|
57039
57141
|
|
|
57142
|
+
* GreasePencil.root_nodes
|
|
57143
|
+
* GreasePencilLayerGroup.children
|
|
57040
57144
|
* GreasePencilTreeNode.next_node
|
|
57041
57145
|
* GreasePencilTreeNode.prev_node
|
|
57042
57146
|
|
|
@@ -73012,6 +73116,8 @@ To return a list of the data-blocks that are animated by a specific slot of an A
|
|
|
73012
73116
|
* Curve.taper_object
|
|
73013
73117
|
* Curve.dimensions
|
|
73014
73118
|
* Curve.fill_mode
|
|
73119
|
+
* Curve.fill_solver
|
|
73120
|
+
* Curve.fill_rule
|
|
73015
73121
|
* Curve.twist_mode
|
|
73016
73122
|
* Curve.taper_radius_mode
|
|
73017
73123
|
* Curve.bevel_factor_mapping_start
|
|
@@ -79487,6 +79593,104 @@ at its creation, all editing in the original image's buffer is 'lost' in its cop
|
|
|
79487
79593
|
:columns: 2
|
|
79488
79594
|
|
|
79489
79595
|
|
|
79596
|
+
--------------------
|
|
79597
|
+
|
|
79598
|
+
* bpy_struct.id_data
|
|
79599
|
+
* Node.type
|
|
79600
|
+
* Node.location
|
|
79601
|
+
* Node.location_absolute
|
|
79602
|
+
* Node.width
|
|
79603
|
+
* Node.height
|
|
79604
|
+
* Node.dimensions
|
|
79605
|
+
* Node.name
|
|
79606
|
+
* Node.label
|
|
79607
|
+
* Node.inputs
|
|
79608
|
+
* Node.outputs
|
|
79609
|
+
* Node.internal_links
|
|
79610
|
+
* Node.parent
|
|
79611
|
+
* Node.warning_propagation
|
|
79612
|
+
* Node.use_custom_color
|
|
79613
|
+
* Node.color
|
|
79614
|
+
* Node.color_tag
|
|
79615
|
+
* Node.select
|
|
79616
|
+
* Node.show_options
|
|
79617
|
+
* Node.show_preview
|
|
79618
|
+
* Node.hide
|
|
79619
|
+
* Node.mute
|
|
79620
|
+
* Node.show_texture
|
|
79621
|
+
* Node.bl_idname
|
|
79622
|
+
* Node.bl_label
|
|
79623
|
+
* Node.bl_description
|
|
79624
|
+
* Node.bl_icon
|
|
79625
|
+
* Node.bl_static_type
|
|
79626
|
+
* Node.bl_width_default
|
|
79627
|
+
* Node.bl_width_min
|
|
79628
|
+
* Node.bl_width_max
|
|
79629
|
+
* Node.bl_height_default
|
|
79630
|
+
* Node.bl_height_min
|
|
79631
|
+
* Node.bl_height_max
|
|
79632
|
+
|
|
79633
|
+
:columns: 2
|
|
79634
|
+
|
|
79635
|
+
|
|
79636
|
+
--------------------
|
|
79637
|
+
|
|
79638
|
+
* bpy_struct.as_pointer
|
|
79639
|
+
* bpy_struct.driver_add
|
|
79640
|
+
* bpy_struct.driver_remove
|
|
79641
|
+
* bpy_struct.get
|
|
79642
|
+
* bpy_struct.id_properties_clear
|
|
79643
|
+
* bpy_struct.id_properties_ensure
|
|
79644
|
+
* bpy_struct.id_properties_ui
|
|
79645
|
+
* bpy_struct.is_property_hidden
|
|
79646
|
+
* bpy_struct.is_property_overridable_library
|
|
79647
|
+
* bpy_struct.is_property_readonly
|
|
79648
|
+
* bpy_struct.is_property_set
|
|
79649
|
+
* bpy_struct.items
|
|
79650
|
+
* bpy_struct.keyframe_delete
|
|
79651
|
+
* bpy_struct.keyframe_insert
|
|
79652
|
+
* bpy_struct.keys
|
|
79653
|
+
* bpy_struct.path_from_id
|
|
79654
|
+
* bpy_struct.path_from_module
|
|
79655
|
+
* bpy_struct.path_resolve
|
|
79656
|
+
* bpy_struct.pop
|
|
79657
|
+
* bpy_struct.property_overridable_library_set
|
|
79658
|
+
* bpy_struct.property_unset
|
|
79659
|
+
* bpy_struct.rna_ancestors
|
|
79660
|
+
* bpy_struct.type_recast
|
|
79661
|
+
* bpy_struct.values
|
|
79662
|
+
* Node.bl_system_properties_get
|
|
79663
|
+
* Node.socket_value_update
|
|
79664
|
+
* Node.is_registered_node_type
|
|
79665
|
+
* Node.poll
|
|
79666
|
+
* Node.poll_instance
|
|
79667
|
+
* Node.update
|
|
79668
|
+
* Node.insert_link
|
|
79669
|
+
* Node.init
|
|
79670
|
+
* Node.copy
|
|
79671
|
+
* Node.free
|
|
79672
|
+
* Node.draw_buttons
|
|
79673
|
+
* Node.draw_buttons_ext
|
|
79674
|
+
* Node.draw_label
|
|
79675
|
+
* Node.debug_zone_body_lazy_function_graph
|
|
79676
|
+
* Node.debug_zone_lazy_function_graph
|
|
79677
|
+
* Node.poll
|
|
79678
|
+
* Node.bl_rna_get_subclass
|
|
79679
|
+
* Node.bl_rna_get_subclass_py
|
|
79680
|
+
* NodeInternal.poll
|
|
79681
|
+
* NodeInternal.poll_instance
|
|
79682
|
+
* NodeInternal.update
|
|
79683
|
+
* NodeInternal.draw_buttons
|
|
79684
|
+
* NodeInternal.draw_buttons_ext
|
|
79685
|
+
* NodeInternal.bl_rna_get_subclass
|
|
79686
|
+
* NodeInternal.bl_rna_get_subclass_py
|
|
79687
|
+
* GeometryNode.poll
|
|
79688
|
+
* GeometryNode.bl_rna_get_subclass
|
|
79689
|
+
* GeometryNode.bl_rna_get_subclass_py
|
|
79690
|
+
|
|
79691
|
+
:columns: 2
|
|
79692
|
+
|
|
79693
|
+
|
|
79490
79694
|
--------------------
|
|
79491
79695
|
|
|
79492
79696
|
* bpy_struct.id_data
|
|
@@ -108836,6 +109040,58 @@ object, placing it into a view layer, selecting it and making it active.
|
|
|
108836
109040
|
:columns: 2
|
|
108837
109041
|
|
|
108838
109042
|
|
|
109043
|
+
--------------------
|
|
109044
|
+
|
|
109045
|
+
* bpy_struct.id_data
|
|
109046
|
+
* FModifier.name
|
|
109047
|
+
* FModifier.type
|
|
109048
|
+
* FModifier.show_expanded
|
|
109049
|
+
* FModifier.mute
|
|
109050
|
+
* FModifier.is_valid
|
|
109051
|
+
* FModifier.active
|
|
109052
|
+
* FModifier.use_restricted_range
|
|
109053
|
+
* FModifier.frame_start
|
|
109054
|
+
* FModifier.frame_end
|
|
109055
|
+
* FModifier.blend_in
|
|
109056
|
+
* FModifier.blend_out
|
|
109057
|
+
* FModifier.use_influence
|
|
109058
|
+
* FModifier.influence
|
|
109059
|
+
|
|
109060
|
+
:columns: 2
|
|
109061
|
+
|
|
109062
|
+
|
|
109063
|
+
--------------------
|
|
109064
|
+
|
|
109065
|
+
* bpy_struct.as_pointer
|
|
109066
|
+
* bpy_struct.driver_add
|
|
109067
|
+
* bpy_struct.driver_remove
|
|
109068
|
+
* bpy_struct.get
|
|
109069
|
+
* bpy_struct.id_properties_clear
|
|
109070
|
+
* bpy_struct.id_properties_ensure
|
|
109071
|
+
* bpy_struct.id_properties_ui
|
|
109072
|
+
* bpy_struct.is_property_hidden
|
|
109073
|
+
* bpy_struct.is_property_overridable_library
|
|
109074
|
+
* bpy_struct.is_property_readonly
|
|
109075
|
+
* bpy_struct.is_property_set
|
|
109076
|
+
* bpy_struct.items
|
|
109077
|
+
* bpy_struct.keyframe_delete
|
|
109078
|
+
* bpy_struct.keyframe_insert
|
|
109079
|
+
* bpy_struct.keys
|
|
109080
|
+
* bpy_struct.path_from_id
|
|
109081
|
+
* bpy_struct.path_from_module
|
|
109082
|
+
* bpy_struct.path_resolve
|
|
109083
|
+
* bpy_struct.pop
|
|
109084
|
+
* bpy_struct.property_overridable_library_set
|
|
109085
|
+
* bpy_struct.property_unset
|
|
109086
|
+
* bpy_struct.rna_ancestors
|
|
109087
|
+
* bpy_struct.type_recast
|
|
109088
|
+
* bpy_struct.values
|
|
109089
|
+
* FModifier.bl_rna_get_subclass
|
|
109090
|
+
* FModifier.bl_rna_get_subclass_py
|
|
109091
|
+
|
|
109092
|
+
:columns: 2
|
|
109093
|
+
|
|
109094
|
+
|
|
108839
109095
|
--------------------
|
|
108840
109096
|
|
|
108841
109097
|
* bpy_struct.id_data
|
|
@@ -111936,6 +112192,8 @@ object, placing it into a view layer, selecting it and making it active.
|
|
|
111936
112192
|
* Curve.taper_object
|
|
111937
112193
|
* Curve.dimensions
|
|
111938
112194
|
* Curve.fill_mode
|
|
112195
|
+
* Curve.fill_solver
|
|
112196
|
+
* Curve.fill_rule
|
|
111939
112197
|
* Curve.twist_mode
|
|
111940
112198
|
* Curve.taper_radius_mode
|
|
111941
112199
|
* Curve.bevel_factor_mapping_start
|
|
@@ -133283,15 +133541,9 @@ class Brush(ID, bpy_struct):
|
|
|
133283
133541
|
use_adaptive_space: bool
|
|
133284
133542
|
""" Space daubs according to surface orientation instead of screen space"""
|
|
133285
133543
|
|
|
133286
|
-
use_airbrush: bool
|
|
133287
|
-
""" Keep applying paint effect while holding mouse (spray)"""
|
|
133288
|
-
|
|
133289
133544
|
use_alpha: bool
|
|
133290
133545
|
""" When this is disabled, lock alpha while painting"""
|
|
133291
133546
|
|
|
133292
|
-
use_anchor: bool
|
|
133293
|
-
""" Keep the brush anchored to the initial location"""
|
|
133294
|
-
|
|
133295
133547
|
use_automasking_boundary_edges: bool
|
|
133296
133548
|
""" Do not affect non manifold boundary edges"""
|
|
133297
133549
|
|
|
@@ -133343,9 +133595,6 @@ class Brush(ID, bpy_struct):
|
|
|
133343
133595
|
use_cursor_overlay_override: bool
|
|
133344
133596
|
""" Don't show overlay during a stroke"""
|
|
133345
133597
|
|
|
133346
|
-
use_curve: bool
|
|
133347
|
-
""" Define the stroke curve with a Bézier curve. Dabs are separated according to spacing."""
|
|
133348
|
-
|
|
133349
133598
|
use_density_pressure: bool
|
|
133350
133599
|
""" Use pressure to modulate density"""
|
|
133351
133600
|
|
|
@@ -133373,9 +133622,6 @@ class Brush(ID, bpy_struct):
|
|
|
133373
133622
|
use_inverse_smooth_pressure: bool
|
|
133374
133623
|
""" Lighter pressure causes more smoothing to be applied"""
|
|
133375
133624
|
|
|
133376
|
-
use_line: bool
|
|
133377
|
-
""" Draw a line with dabs separated according to spacing"""
|
|
133378
|
-
|
|
133379
133625
|
use_locked_size: typing.Literal["VIEW", "SCENE"]
|
|
133380
133626
|
""" Measure brush size relative to the view or the scene"""
|
|
133381
133627
|
|
|
@@ -133460,9 +133706,6 @@ class Brush(ID, bpy_struct):
|
|
|
133460
133706
|
use_random_press_val: bool
|
|
133461
133707
|
""" Use pressure to modulate randomness"""
|
|
133462
133708
|
|
|
133463
|
-
use_restore_mesh: bool
|
|
133464
|
-
""" Allow a single dot to be carefully positioned"""
|
|
133465
|
-
|
|
133466
133709
|
use_scene_spacing: typing.Literal["VIEW", "SCENE"]
|
|
133467
133710
|
""" Calculate the brush spacing using view or scene distance"""
|
|
133468
133711
|
|
|
@@ -133475,9 +133718,6 @@ class Brush(ID, bpy_struct):
|
|
|
133475
133718
|
use_smooth_stroke: bool
|
|
133476
133719
|
""" Brush lags behind mouse and follows a smoother path"""
|
|
133477
133720
|
|
|
133478
|
-
use_space: bool
|
|
133479
|
-
""" Limit brush application to the distance specified by spacing"""
|
|
133480
|
-
|
|
133481
133721
|
use_space_attenuation: bool
|
|
133482
133722
|
""" Automatically adjust strength to give consistent results for different spacings"""
|
|
133483
133723
|
|
|
@@ -142285,6 +142525,12 @@ class Curve(ID, bpy_struct):
|
|
|
142285
142525
|
fill_mode: typing.Literal["FULL", "BACK", "FRONT", "HALF"]
|
|
142286
142526
|
""" Mode of filling curve"""
|
|
142287
142527
|
|
|
142528
|
+
fill_rule: typing.Literal["EVEN_ODD", "NONZERO"]
|
|
142529
|
+
""" Fill rule for Delaunay fill solver"""
|
|
142530
|
+
|
|
142531
|
+
fill_solver: typing.Literal["SWEEP_LINE", "CDT"]
|
|
142532
|
+
""" Triangulation solver for filling 2D curves"""
|
|
142533
|
+
|
|
142288
142534
|
is_editmode: bool
|
|
142289
142535
|
""" True when used in editmode"""
|
|
142290
142536
|
|
|
@@ -146019,6 +146265,43 @@ class FModifierNoise(FModifier, bpy_struct):
|
|
|
146019
146265
|
:return: The class or default when not found.
|
|
146020
146266
|
"""
|
|
146021
146267
|
|
|
146268
|
+
class FModifierSmooth(FModifier, bpy_struct):
|
|
146269
|
+
"""Smooth curve using Gaussian smoothing"""
|
|
146270
|
+
|
|
146271
|
+
filter_width: int
|
|
146272
|
+
""" The number of frames to average around each keyframe. Higher values allow more smoothing, but will decrease performance."""
|
|
146273
|
+
|
|
146274
|
+
sigma: float
|
|
146275
|
+
""" The shape of the Gaussian distribution in frames. Lower values will increase sharpness across the Filter Width."""
|
|
146276
|
+
|
|
146277
|
+
@classmethod
|
|
146278
|
+
def bl_rna_get_subclass(
|
|
146279
|
+
cls,
|
|
146280
|
+
id: str | None,
|
|
146281
|
+
default=None,
|
|
146282
|
+
/,
|
|
146283
|
+
) -> Struct:
|
|
146284
|
+
"""
|
|
146285
|
+
|
|
146286
|
+
:param id: The RNA type identifier.
|
|
146287
|
+
:param default:
|
|
146288
|
+
:return: The RNA type or default when not found.
|
|
146289
|
+
"""
|
|
146290
|
+
|
|
146291
|
+
@classmethod
|
|
146292
|
+
def bl_rna_get_subclass_py(
|
|
146293
|
+
cls,
|
|
146294
|
+
id: str | None,
|
|
146295
|
+
default=None,
|
|
146296
|
+
/,
|
|
146297
|
+
) -> typing.Any:
|
|
146298
|
+
"""
|
|
146299
|
+
|
|
146300
|
+
:param id: The RNA type identifier.
|
|
146301
|
+
:param default:
|
|
146302
|
+
:return: The class or default when not found.
|
|
146303
|
+
"""
|
|
146304
|
+
|
|
146022
146305
|
class FModifierStepped(FModifier, bpy_struct):
|
|
146023
146306
|
"""Hold each interpolated value from the F-Curve for several frames without changing the timing"""
|
|
146024
146307
|
|
|
@@ -156254,6 +156537,120 @@ class GeometryNodeGridLaplacian(GeometryNode, NodeInternal, Node, bpy_struct):
|
|
|
156254
156537
|
:return: The class or default when not found.
|
|
156255
156538
|
"""
|
|
156256
156539
|
|
|
156540
|
+
class GeometryNodeGridMean(GeometryNode, NodeInternal, Node, bpy_struct):
|
|
156541
|
+
"""Apply mean (box) filter smoothing to a voxel. The mean value from surrounding voxels in a box-shape defined by the radius replaces the voxel value."""
|
|
156542
|
+
|
|
156543
|
+
data_type: bpy.stub_internal.rna_enums.NodeSocketDataTypeItems
|
|
156544
|
+
""" Node socket data type"""
|
|
156545
|
+
|
|
156546
|
+
@classmethod
|
|
156547
|
+
def is_registered_node_type(cls) -> bool:
|
|
156548
|
+
"""True if a registered node type
|
|
156549
|
+
|
|
156550
|
+
:return: Result
|
|
156551
|
+
"""
|
|
156552
|
+
|
|
156553
|
+
@classmethod
|
|
156554
|
+
def input_template(cls, index: int | None) -> NodeInternalSocketTemplate:
|
|
156555
|
+
"""Input socket template
|
|
156556
|
+
|
|
156557
|
+
:param index: Index
|
|
156558
|
+
:return: result
|
|
156559
|
+
"""
|
|
156560
|
+
|
|
156561
|
+
@classmethod
|
|
156562
|
+
def output_template(cls, index: int | None) -> NodeInternalSocketTemplate:
|
|
156563
|
+
"""Output socket template
|
|
156564
|
+
|
|
156565
|
+
:param index: Index
|
|
156566
|
+
:return: result
|
|
156567
|
+
"""
|
|
156568
|
+
|
|
156569
|
+
@classmethod
|
|
156570
|
+
def bl_rna_get_subclass(
|
|
156571
|
+
cls,
|
|
156572
|
+
id: str | None,
|
|
156573
|
+
default=None,
|
|
156574
|
+
/,
|
|
156575
|
+
) -> Struct:
|
|
156576
|
+
"""
|
|
156577
|
+
|
|
156578
|
+
:param id: The RNA type identifier.
|
|
156579
|
+
:param default:
|
|
156580
|
+
:return: The RNA type or default when not found.
|
|
156581
|
+
"""
|
|
156582
|
+
|
|
156583
|
+
@classmethod
|
|
156584
|
+
def bl_rna_get_subclass_py(
|
|
156585
|
+
cls,
|
|
156586
|
+
id: str | None,
|
|
156587
|
+
default=None,
|
|
156588
|
+
/,
|
|
156589
|
+
) -> typing.Any:
|
|
156590
|
+
"""
|
|
156591
|
+
|
|
156592
|
+
:param id: The RNA type identifier.
|
|
156593
|
+
:param default:
|
|
156594
|
+
:return: The class or default when not found.
|
|
156595
|
+
"""
|
|
156596
|
+
|
|
156597
|
+
class GeometryNodeGridMedian(GeometryNode, NodeInternal, Node, bpy_struct):
|
|
156598
|
+
"""Apply median (box) filter smoothing to a voxel. The median value from surrounding voxels in a box-shape defined by the radius replaces the voxel value."""
|
|
156599
|
+
|
|
156600
|
+
data_type: bpy.stub_internal.rna_enums.NodeSocketDataTypeItems
|
|
156601
|
+
""" Node socket data type"""
|
|
156602
|
+
|
|
156603
|
+
@classmethod
|
|
156604
|
+
def is_registered_node_type(cls) -> bool:
|
|
156605
|
+
"""True if a registered node type
|
|
156606
|
+
|
|
156607
|
+
:return: Result
|
|
156608
|
+
"""
|
|
156609
|
+
|
|
156610
|
+
@classmethod
|
|
156611
|
+
def input_template(cls, index: int | None) -> NodeInternalSocketTemplate:
|
|
156612
|
+
"""Input socket template
|
|
156613
|
+
|
|
156614
|
+
:param index: Index
|
|
156615
|
+
:return: result
|
|
156616
|
+
"""
|
|
156617
|
+
|
|
156618
|
+
@classmethod
|
|
156619
|
+
def output_template(cls, index: int | None) -> NodeInternalSocketTemplate:
|
|
156620
|
+
"""Output socket template
|
|
156621
|
+
|
|
156622
|
+
:param index: Index
|
|
156623
|
+
:return: result
|
|
156624
|
+
"""
|
|
156625
|
+
|
|
156626
|
+
@classmethod
|
|
156627
|
+
def bl_rna_get_subclass(
|
|
156628
|
+
cls,
|
|
156629
|
+
id: str | None,
|
|
156630
|
+
default=None,
|
|
156631
|
+
/,
|
|
156632
|
+
) -> Struct:
|
|
156633
|
+
"""
|
|
156634
|
+
|
|
156635
|
+
:param id: The RNA type identifier.
|
|
156636
|
+
:param default:
|
|
156637
|
+
:return: The RNA type or default when not found.
|
|
156638
|
+
"""
|
|
156639
|
+
|
|
156640
|
+
@classmethod
|
|
156641
|
+
def bl_rna_get_subclass_py(
|
|
156642
|
+
cls,
|
|
156643
|
+
id: str | None,
|
|
156644
|
+
default=None,
|
|
156645
|
+
/,
|
|
156646
|
+
) -> typing.Any:
|
|
156647
|
+
"""
|
|
156648
|
+
|
|
156649
|
+
:param id: The RNA type identifier.
|
|
156650
|
+
:param default:
|
|
156651
|
+
:return: The class or default when not found.
|
|
156652
|
+
"""
|
|
156653
|
+
|
|
156257
156654
|
class GeometryNodeGridPrune(GeometryNode, NodeInternal, Node, bpy_struct):
|
|
156258
156655
|
"""Make the storage of a volume grid more efficient by collapsing data into tiles or inner nodes"""
|
|
156259
156656
|
|
|
@@ -166339,6 +166736,9 @@ class GreasePencil(ID, bpy_struct):
|
|
|
166339
166736
|
onion_mode: typing.Literal["ABSOLUTE", "RELATIVE", "SELECTED"]
|
|
166340
166737
|
""" Mode to display frames"""
|
|
166341
166738
|
|
|
166739
|
+
root_nodes: bpy_prop_collection[GreasePencilTreeNode]
|
|
166740
|
+
""" The root nodes of the layer tree. Ordered by stack order, meaning the first node is the bottom most node in the layer tree."""
|
|
166741
|
+
|
|
166342
166742
|
stroke_depth_order: bpy.stub_internal.rna_enums.StrokeDepthOrderItems
|
|
166343
166743
|
""" Defines how the strokes are ordered in 3D space (for objects not displayed 'In Front')"""
|
|
166344
166744
|
|
|
@@ -167440,6 +167840,9 @@ class GreasePencilLayer(GreasePencilTreeNode, bpy_struct):
|
|
|
167440
167840
|
class GreasePencilLayerGroup(GreasePencilTreeNode, bpy_struct):
|
|
167441
167841
|
"""Group of Grease Pencil layers"""
|
|
167442
167842
|
|
|
167843
|
+
children: bpy_prop_collection[GreasePencilTreeNode]
|
|
167844
|
+
""" The direct children of this layer group. Ordered by stack order, meaning the first child is the bottom most child in the layer tree."""
|
|
167845
|
+
|
|
167443
167846
|
color_tag: typing.Literal[
|
|
167444
167847
|
"NONE",
|
|
167445
167848
|
"COLOR1",
|
|
@@ -181265,7 +181668,7 @@ class Node(bpy_struct):
|
|
|
181265
181668
|
use_custom_color: bool
|
|
181266
181669
|
""" Use custom color for the node"""
|
|
181267
181670
|
|
|
181268
|
-
warning_propagation: typing.Literal["ALL", "
|
|
181671
|
+
warning_propagation: typing.Literal["ALL", "ERRORS_AND_WARNINGS", "ERRORS", "NONE"]
|
|
181269
181672
|
""" The kinds of messages that should be propagated from this node to the parent group node"""
|
|
181270
181673
|
|
|
181271
181674
|
width: float
|
{fake_bpy_module_latest-20260129.dist-info → fake_bpy_module_latest-20260131.dist-info}/RECORD
RENAMED
|
@@ -113,7 +113,7 @@ bl_operators/grease_pencil/__init__.pyi,sha256=aYuRtDCkR5cWIZ9YZ1PfrfsCpsnewS9D-
|
|
|
113
113
|
bl_operators/image/__init__.pyi,sha256=Q0BfMC_waIJh2Bd1OnVnWD-fOHQHHqHORsYskeKf72k,3242
|
|
114
114
|
bl_operators/image_as_planes/__init__.pyi,sha256=2ZQE5QfI0WJ7g6Ilhb94O8fGv82ytyi0Tl2m9mtobSw,4684
|
|
115
115
|
bl_operators/mesh/__init__.pyi,sha256=_oPv0pZKG3wnDCyjLJKkVQ4RStIw2rHpJjGuKz3P3WY,1510
|
|
116
|
-
bl_operators/node/__init__.pyi,sha256=
|
|
116
|
+
bl_operators/node/__init__.pyi,sha256=9wpBR1jzuqrAFEuOE8QyPyeQdRBzQFkYC5b7GuoFXtg,18203
|
|
117
117
|
bl_operators/node_editor/__init__.pyi,sha256=nXKuGcFgA7viFPwVoXogOT1iClUnXhtrK_rZTTXJ2Go,136
|
|
118
118
|
bl_operators/node_editor/node_functions/__init__.pyi,sha256=lvnouyugGqmyzgLR8aRsLj823dK3wC22vEu8lucNhJI,626
|
|
119
119
|
bl_operators/object/__init__.pyi,sha256=gxWZIVsZSLmnGqPzrPYdyjIgXoR52zeAZLh1Wl0haSo,10820
|
|
@@ -137,8 +137,8 @@ bl_ui/__init__.pyi,sha256=tSrO3hGIas4LoQiTtzhnuU9BrSF3GJ_Osq6OD0rc-BU,7063
|
|
|
137
137
|
bl_ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
138
138
|
bl_ui/anim/__init__.pyi,sha256=0JPiZ9LgUqabOkuvIP1YrX1uRrVQdPwUHVkGJ5PH8ho,878
|
|
139
139
|
bl_ui/asset_shelf/__init__.pyi,sha256=ekmDyY0LQ7jrdveaVblTcxUNFWd4dd1NBVYkb5rbiLI,765
|
|
140
|
-
bl_ui/generic_ui_list/__init__.pyi,sha256=
|
|
141
|
-
bl_ui/node_add_menu/__init__.pyi,sha256=
|
|
140
|
+
bl_ui/generic_ui_list/__init__.pyi,sha256=81QVZe8pd6NSZddr_UJME5l09AMF9ve3nOv59JqJmxo,3771
|
|
141
|
+
bl_ui/node_add_menu/__init__.pyi,sha256=hw0yV2RWDwTjApY5ExYwkKT7ghR-24rTnJDSWjyGNJQ,7995
|
|
142
142
|
bl_ui/node_add_menu_compositor/__init__.pyi,sha256=dob1UYQq_Vi-gROCfc8XDNKAt2GYv3Rhhj58L_MH8AA,11657
|
|
143
143
|
bl_ui/node_add_menu_geometry/__init__.pyi,sha256=QV7ZetK6xQbSEgT-6RKPzfsQrXVrHT8tHVEdwGjaCLk,33980
|
|
144
144
|
bl_ui/node_add_menu_shader/__init__.pyi,sha256=lT8O0U4UZoCeR61BI2dJXWRn9-CiU7c2CZSh8UmLg5I,6483
|
|
@@ -293,7 +293,7 @@ bpy/ops/screen/__init__.pyi,sha256=nxBCgAWjhvmIzWV2YX3-sA5mYfVbKtCp_Ks5ckEfdzU,1
|
|
|
293
293
|
bpy/ops/script/__init__.pyi,sha256=pNn6soV2lzLLhd_Vv8eLMN29xcB9FjO26KnED8eNtsw,744
|
|
294
294
|
bpy/ops/sculpt/__init__.pyi,sha256=nJlkCYmIt__x4PanLbyGXL7N0suZn26mW3IryhqXeSM,39312
|
|
295
295
|
bpy/ops/sculpt_curves/__init__.pyi,sha256=WtVSN3OSBtZbQZxO82pqYchR0TIaGHSukGa3KPf4kKc,2467
|
|
296
|
-
bpy/ops/sequencer/__init__.pyi,sha256=
|
|
296
|
+
bpy/ops/sequencer/__init__.pyi,sha256=D3krN0UTPiB0GxE4V-AYqHewwFb4iw2Zl70twfgP8n8,68893
|
|
297
297
|
bpy/ops/sound/__init__.pyi,sha256=BDCShvaNarTBtccMKcM4vjyH23Ckbdm5qmALZ86imoQ,12269
|
|
298
298
|
bpy/ops/spreadsheet/__init__.pyi,sha256=bgeQpsv3OQVezKJS6o-_B9s9Iy0WwHmkrfgXwX85Eqw,1518
|
|
299
299
|
bpy/ops/surface/__init__.pyi,sha256=81WFZbjrNCZuu0mLdlBJwp-aAOdIG1WtxhJtvxSgYBo,7576
|
|
@@ -312,8 +312,8 @@ bpy/ops/world/__init__.pyi,sha256=AUIC-ONsc4QHX5bL5rUHEibn4kejjgsFbaJ66NGQztM,51
|
|
|
312
312
|
bpy/path/__init__.pyi,sha256=jgXGlVLUTr15BhcgCVnkz6WlJp4yjpHhJc4TJAXSbsU,4632
|
|
313
313
|
bpy/props/__init__.pyi,sha256=BFnRoY78kkf6szROPfp4HSETs8yEgMeKE4QeSd2vDrs,41820
|
|
314
314
|
bpy/stub_internal/__init__.pyi,sha256=h3K2LGZ8lcLY-Oo9ym-HEopjGScc4iTfpT1MU_6smTI,126
|
|
315
|
-
bpy/stub_internal/rna_enums/__init__.pyi,sha256=
|
|
316
|
-
bpy/types/__init__.pyi,sha256=
|
|
315
|
+
bpy/stub_internal/rna_enums/__init__.pyi,sha256=NnK6Jb3XCXqtrGzzDSTYkDmqztbccJFDxutBEkqxx-8,145433
|
|
316
|
+
bpy/types/__init__.pyi,sha256=PVbG4C2xfeP9Qwshy2Y0FlM9wwy1tRd4WkKw87vnJhU,5425113
|
|
317
317
|
bpy/utils/__init__.pyi,sha256=7ERJ_QG-UJismh3PC1WKuO-4bDbzDLDniHLhv9KiHNA,13288
|
|
318
318
|
bpy/utils/previews/__init__.pyi,sha256=ByUvnneVHqE8dr5c1-hYsf-6qaKWdU0KP0IbwA5QN00,2028
|
|
319
319
|
bpy/utils/units/__init__.pyi,sha256=CbBgOpnx48WP0flNilskhsmA7YCAnbbj07vr3OXlMG8,2214
|
|
@@ -366,7 +366,7 @@ keyingsets_builtins/__init__.pyi,sha256=GFCf27uFnI3fSM3FFHhsUmCejf9_hH3w4ZyXh8u6
|
|
|
366
366
|
keyingsets_builtins/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
367
367
|
mathutils/__init__.pyi,sha256=ZKL_f4PZHCFCI61ywjxdmL8mLWhm5e5GNdVjzlhXBoM,59647
|
|
368
368
|
mathutils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
369
|
-
mathutils/bvhtree/__init__.pyi,sha256=
|
|
369
|
+
mathutils/bvhtree/__init__.pyi,sha256=Udecb16nXe68Lfssb_exAZWa0z6M6ZVl86MSWK99KrQ,4121
|
|
370
370
|
mathutils/geometry/__init__.pyi,sha256=LbntkppsbVjYF62rey4pNh8Ok6lA51KuRarm_Dc5Q9E,18344
|
|
371
371
|
mathutils/interpolate/__init__.pyi,sha256=QlQGGsjQkSda5BAkZjVpMAZ9WtVwlLK-uSB8W4n5_iE,481
|
|
372
372
|
mathutils/kdtree/__init__.pyi,sha256=ikBFlCtJ6zDRwbgc5zazChNCMUv0xkY3mO51LMO7o_o,1802
|
|
@@ -379,7 +379,7 @@ rna_keymap_ui/__init__.pyi,sha256=HjNXbu5w-94HLbvVQlEWXV3JVrgWpNz9jiJ3mzGMCNg,48
|
|
|
379
379
|
rna_keymap_ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
380
380
|
rna_prop_ui/__init__.pyi,sha256=Gn7kc9WhI3qPObIz8QiFbjeVIP7GCeF6liywBzIEcnE,1402
|
|
381
381
|
rna_prop_ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
382
|
-
fake_bpy_module_latest-
|
|
383
|
-
fake_bpy_module_latest-
|
|
384
|
-
fake_bpy_module_latest-
|
|
385
|
-
fake_bpy_module_latest-
|
|
382
|
+
fake_bpy_module_latest-20260131.dist-info/METADATA,sha256=NrVq2Y_jL45ZRwbGQqVJaHTeB-XHPZ-JSEuCkmDxPoU,7902
|
|
383
|
+
fake_bpy_module_latest-20260131.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
|
|
384
|
+
fake_bpy_module_latest-20260131.dist-info/top_level.txt,sha256=LGIXuHDoaVTgSTMScq2hvwZRtozSAzYE7RqrFaRqT6o,553
|
|
385
|
+
fake_bpy_module_latest-20260131.dist-info/RECORD,,
|
mathutils/bvhtree/__init__.pyi
CHANGED
|
@@ -7,6 +7,7 @@ import typing
|
|
|
7
7
|
import collections.abc
|
|
8
8
|
import typing_extensions
|
|
9
9
|
import numpy.typing as npt
|
|
10
|
+
import _bpy_types
|
|
10
11
|
import bmesh.types
|
|
11
12
|
import bpy.types
|
|
12
13
|
import mathutils
|
|
@@ -23,7 +24,7 @@ class BVHTree:
|
|
|
23
24
|
@classmethod
|
|
24
25
|
def FromObject(
|
|
25
26
|
cls,
|
|
26
|
-
object:
|
|
27
|
+
object: _bpy_types.Object,
|
|
27
28
|
depsgraph: bpy.types.Depsgraph,
|
|
28
29
|
*,
|
|
29
30
|
deform: bool = True,
|
{fake_bpy_module_latest-20260129.dist-info → fake_bpy_module_latest-20260131.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|