fake-bpy-module 20250902__py3-none-any.whl → 20250904__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_operators/node/__init__.pyi +2 -2
- bl_ui/generic_ui_list/__init__.pyi +2 -2
- bl_ui/space_dopesheet/__init__.pyi +0 -24
- bl_ui/space_graph/__init__.pyi +0 -22
- bl_ui/space_nla/__init__.pyi +0 -22
- bl_ui/space_node/__init__.pyi +31 -0
- bl_ui/space_sequencer/__init__.pyi +0 -24
- bl_ui/space_time/__init__.pyi +34 -0
- bl_ui/space_toolsystem_toolbar/__init__.pyi +2 -0
- bl_ui/utils/__init__.pyi +0 -17
- bmesh/types/__init__.pyi +6 -7
- bpy/app/__init__.pyi +7 -0
- bpy/ops/node/__init__.pyi +2 -2
- bpy/ops/sequencer/__init__.pyi +39 -0
- bpy/ops/uv/__init__.pyi +38 -8
- bpy/props/__init__.pyi +293 -19
- bpy/stub_internal/rna_enums/__init__.pyi +2 -0
- bpy/types/__init__.pyi +32 -68
- {fake_bpy_module-20250902.dist-info → fake_bpy_module-20250904.dist-info}/METADATA +1 -1
- {fake_bpy_module-20250902.dist-info → fake_bpy_module-20250904.dist-info}/RECORD +24 -24
- freestyle/utils/__init__.pyi +1 -1
- mathutils/bvhtree/__init__.pyi +2 -3
- {fake_bpy_module-20250902.dist-info → fake_bpy_module-20250904.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20250902.dist-info → fake_bpy_module-20250904.dist-info}/top_level.txt +0 -0
bpy/types/__init__.pyi
CHANGED
|
@@ -8033,9 +8033,12 @@ The USDHookExample
|
|
|
8033
8033
|
|
|
8034
8034
|
* Brush.automasking_cavity_curve
|
|
8035
8035
|
* Brush.curve
|
|
8036
|
+
* Brush.curve_jitter
|
|
8036
8037
|
* Brush.curve_random_hue
|
|
8037
8038
|
* Brush.curve_random_saturation
|
|
8038
8039
|
* Brush.curve_random_value
|
|
8040
|
+
* Brush.curve_size
|
|
8041
|
+
* Brush.curve_strength
|
|
8039
8042
|
* BrushCurvesSculptSettings.curve_parameter_falloff
|
|
8040
8043
|
* BrushGpencilSettings.curve_jitter
|
|
8041
8044
|
* BrushGpencilSettings.curve_random_hue
|
|
@@ -35256,15 +35259,12 @@ from a search field, this can be done using bpy.types.Operator.invoke_search_pop
|
|
|
35256
35259
|
* GammaCrossStrip.input_2
|
|
35257
35260
|
* GaussianBlurStrip.input_1
|
|
35258
35261
|
* GlowStrip.input_1
|
|
35259
|
-
* MetaStrip.sequences
|
|
35260
35262
|
* MetaStrip.strips
|
|
35261
35263
|
* MultiplyStrip.input_1
|
|
35262
35264
|
* MultiplyStrip.input_2
|
|
35263
35265
|
* SequenceEditor.active_strip
|
|
35264
35266
|
* SequenceEditor.display_stack
|
|
35265
35267
|
* SequenceEditor.meta_stack
|
|
35266
|
-
* SequenceEditor.sequences
|
|
35267
|
-
* SequenceEditor.sequences_all
|
|
35268
35268
|
* SequenceEditor.strips
|
|
35269
35269
|
* SequenceEditor.strips_all
|
|
35270
35270
|
* SpeedControlStrip.input_1
|
|
@@ -52497,7 +52497,6 @@ print(positions_data)
|
|
|
52497
52497
|
|
|
52498
52498
|
--------------------
|
|
52499
52499
|
|
|
52500
|
-
* MetaStrip.sequences
|
|
52501
52500
|
* MetaStrip.strips
|
|
52502
52501
|
|
|
52503
52502
|
:columns: 2
|
|
@@ -105553,7 +105552,6 @@ database.
|
|
|
105553
105552
|
|
|
105554
105553
|
--------------------
|
|
105555
105554
|
|
|
105556
|
-
* SequenceEditor.sequences
|
|
105557
105555
|
* SequenceEditor.strips
|
|
105558
105556
|
|
|
105559
105557
|
:columns: 2
|
|
@@ -122983,14 +122981,14 @@ class StripModifiers(bpy_prop_collection[StripModifier], bpy_struct):
|
|
|
122983
122981
|
"""
|
|
122984
122982
|
|
|
122985
122983
|
def remove(self, modifier: StripModifier) -> None:
|
|
122986
|
-
"""Remove an existing modifier from the
|
|
122984
|
+
"""Remove an existing modifier from the strip
|
|
122987
122985
|
|
|
122988
122986
|
:param modifier: Modifier to remove
|
|
122989
122987
|
:type modifier: StripModifier
|
|
122990
122988
|
"""
|
|
122991
122989
|
|
|
122992
122990
|
def clear(self) -> None:
|
|
122993
|
-
"""Remove all modifiers from the
|
|
122991
|
+
"""Remove all modifiers from the strip"""
|
|
122994
122992
|
|
|
122995
122993
|
@classmethod
|
|
122996
122994
|
def bl_rna_get_subclass(
|
|
@@ -130861,6 +130859,12 @@ class Brush(ID, bpy_struct):
|
|
|
130861
130859
|
:type: CurveMapping
|
|
130862
130860
|
"""
|
|
130863
130861
|
|
|
130862
|
+
curve_jitter: CurveMapping | None
|
|
130863
|
+
""" Curve used to map pressure to brush jitter
|
|
130864
|
+
|
|
130865
|
+
:type: CurveMapping | None
|
|
130866
|
+
"""
|
|
130867
|
+
|
|
130864
130868
|
curve_preset: bpy.stub_internal.rna_enums.BrushCurvePresetItems
|
|
130865
130869
|
"""
|
|
130866
130870
|
|
|
@@ -130885,6 +130889,18 @@ class Brush(ID, bpy_struct):
|
|
|
130885
130889
|
:type: CurveMapping | None
|
|
130886
130890
|
"""
|
|
130887
130891
|
|
|
130892
|
+
curve_size: CurveMapping | None
|
|
130893
|
+
""" Curve used to map pressure to brush size
|
|
130894
|
+
|
|
130895
|
+
:type: CurveMapping | None
|
|
130896
|
+
"""
|
|
130897
|
+
|
|
130898
|
+
curve_strength: CurveMapping | None
|
|
130899
|
+
""" Curve used to map pressure to brush strength
|
|
130900
|
+
|
|
130901
|
+
:type: CurveMapping | None
|
|
130902
|
+
"""
|
|
130903
|
+
|
|
130888
130904
|
curves_sculpt_brush_type: bpy.stub_internal.rna_enums.BrushCurvesSculptBrushTypeItems
|
|
130889
130905
|
"""
|
|
130890
130906
|
|
|
@@ -144079,30 +144095,6 @@ class Context(bpy_struct):
|
|
|
144079
144095
|
:type: Object | None
|
|
144080
144096
|
"""
|
|
144081
144097
|
|
|
144082
|
-
active_sequence_strip: Strip | None
|
|
144083
|
-
"""
|
|
144084
|
-
|
|
144085
|
-
:type: Strip | None
|
|
144086
|
-
"""
|
|
144087
|
-
|
|
144088
|
-
sequences: list[Strip]
|
|
144089
|
-
"""
|
|
144090
|
-
|
|
144091
|
-
:type: list[Strip]
|
|
144092
|
-
"""
|
|
144093
|
-
|
|
144094
|
-
selected_sequences: list[Strip]
|
|
144095
|
-
"""
|
|
144096
|
-
|
|
144097
|
-
:type: list[Strip]
|
|
144098
|
-
"""
|
|
144099
|
-
|
|
144100
|
-
selected_editable_sequences: list[Strip]
|
|
144101
|
-
"""
|
|
144102
|
-
|
|
144103
|
-
:type: list[Strip]
|
|
144104
|
-
"""
|
|
144105
|
-
|
|
144106
144098
|
active_nla_track: NlaTrack | None
|
|
144107
144099
|
"""
|
|
144108
144100
|
|
|
@@ -150037,12 +150029,6 @@ class FFmpegSettings(bpy_struct):
|
|
|
150037
150029
|
:type: int
|
|
150038
150030
|
"""
|
|
150039
150031
|
|
|
150040
|
-
video_hdr: typing.Literal["NONE", "REQ2100_PQ", "REQ2100_HLG"]
|
|
150041
|
-
""" High Dynamic Range options
|
|
150042
|
-
|
|
150043
|
-
:type: typing.Literal['NONE','REQ2100_PQ','REQ2100_HLG']
|
|
150044
|
-
"""
|
|
150045
|
-
|
|
150046
150032
|
@classmethod
|
|
150047
150033
|
def bl_rna_get_subclass(
|
|
150048
150034
|
cls,
|
|
@@ -191483,7 +191469,7 @@ class MaskStrip(Strip, bpy_struct):
|
|
|
191483
191469
|
"""
|
|
191484
191470
|
|
|
191485
191471
|
mask: Mask | None
|
|
191486
|
-
""" Mask that this
|
|
191472
|
+
""" Mask that this strip uses
|
|
191487
191473
|
|
|
191488
191474
|
:type: Mask | None
|
|
191489
191475
|
"""
|
|
@@ -194421,12 +194407,6 @@ class MetaStrip(Strip, bpy_struct):
|
|
|
194421
194407
|
:type: StripProxy | None
|
|
194422
194408
|
"""
|
|
194423
194409
|
|
|
194424
|
-
sequences: StripsMeta
|
|
194425
|
-
""" (Deprecated: Replaced by .strips) Strips nested in meta strip
|
|
194426
|
-
|
|
194427
|
-
:type: StripsMeta
|
|
194428
|
-
"""
|
|
194429
|
-
|
|
194430
194410
|
strips: StripsMeta
|
|
194431
194411
|
""" Strips nested in meta strip
|
|
194432
194412
|
|
|
@@ -195243,7 +195223,7 @@ class MovieClipStrip(Strip, bpy_struct):
|
|
|
195243
195223
|
"""
|
|
195244
195224
|
|
|
195245
195225
|
clip: MovieClip | None
|
|
195246
|
-
""" Movie clip that this
|
|
195226
|
+
""" Movie clip that this strip uses
|
|
195247
195227
|
|
|
195248
195228
|
:type: MovieClip | None
|
|
195249
195229
|
"""
|
|
@@ -223101,7 +223081,7 @@ class SceneStrip(Strip, bpy_struct):
|
|
|
223101
223081
|
"""
|
|
223102
223082
|
|
|
223103
223083
|
scene: Scene | None
|
|
223104
|
-
""" Scene that this
|
|
223084
|
+
""" Scene that this strip uses
|
|
223105
223085
|
|
|
223106
223086
|
:type: Scene | None
|
|
223107
223087
|
"""
|
|
@@ -223924,18 +223904,6 @@ class SequenceEditor(bpy_struct):
|
|
|
223924
223904
|
:type: bool
|
|
223925
223905
|
"""
|
|
223926
223906
|
|
|
223927
|
-
sequences: StripsTopLevel
|
|
223928
|
-
""" (Deprecated: Replaced by .strips) Top-level strips only
|
|
223929
|
-
|
|
223930
|
-
:type: StripsTopLevel
|
|
223931
|
-
"""
|
|
223932
|
-
|
|
223933
|
-
sequences_all: bpy_prop_collection[Strip]
|
|
223934
|
-
""" (Deprecated: Replaced by .strips_all) All strips, recursively including those inside metastrips
|
|
223935
|
-
|
|
223936
|
-
:type: bpy_prop_collection[Strip]
|
|
223937
|
-
"""
|
|
223938
|
-
|
|
223939
223907
|
show_missing_media: bool
|
|
223940
223908
|
""" Render missing images/movies with a solid magenta color
|
|
223941
223909
|
|
|
@@ -234034,7 +234002,7 @@ class SoundStrip(Strip, bpy_struct):
|
|
|
234034
234002
|
"""
|
|
234035
234003
|
|
|
234036
234004
|
sound: Sound | None
|
|
234037
|
-
""" Sound data-block used by this
|
|
234005
|
+
""" Sound data-block used by this strip
|
|
234038
234006
|
|
|
234039
234007
|
:type: Sound | None
|
|
234040
234008
|
"""
|
|
@@ -238270,7 +238238,7 @@ class SpeedControlStrip(EffectStrip, Strip, bpy_struct):
|
|
|
238270
238238
|
"""
|
|
238271
238239
|
|
|
238272
238240
|
speed_factor: float
|
|
238273
|
-
""" Multiply the current speed of the
|
|
238241
|
+
""" Multiply the current speed of the strip with this number or remap current frame to this frame
|
|
238274
238242
|
|
|
238275
238243
|
:type: float
|
|
238276
238244
|
"""
|
|
@@ -261461,8 +261429,6 @@ DOPESHEET_PT_grease_pencil_layer_transform: bl_ui.space_dopesheet.DOPESHEET_PT_g
|
|
|
261461
261429
|
|
|
261462
261430
|
DOPESHEET_PT_grease_pencil_mode: bl_ui.space_dopesheet.DOPESHEET_PT_grease_pencil_mode
|
|
261463
261431
|
|
|
261464
|
-
DOPESHEET_PT_playhead_snapping: bl_ui.space_dopesheet.DOPESHEET_PT_playhead_snapping
|
|
261465
|
-
|
|
261466
261432
|
DOPESHEET_PT_proportional_edit: bl_ui.space_dopesheet.DOPESHEET_PT_proportional_edit
|
|
261467
261433
|
|
|
261468
261434
|
DOPESHEET_PT_snapping: bl_ui.space_dopesheet.DOPESHEET_PT_snapping
|
|
@@ -261585,8 +261551,6 @@ GRAPH_PT_driver_snapping: bl_ui.space_graph.GRAPH_PT_driver_snapping
|
|
|
261585
261551
|
|
|
261586
261552
|
GRAPH_PT_filters: bl_ui.space_graph.GRAPH_PT_filters
|
|
261587
261553
|
|
|
261588
|
-
GRAPH_PT_playhead_snapping: bl_ui.space_graph.GRAPH_PT_playhead_snapping
|
|
261589
|
-
|
|
261590
261554
|
GRAPH_PT_proportional_edit: bl_ui.space_graph.GRAPH_PT_proportional_edit
|
|
261591
261555
|
|
|
261592
261556
|
GRAPH_PT_snapping: bl_ui.space_graph.GRAPH_PT_snapping
|
|
@@ -261885,8 +261849,6 @@ NLA_PT_action: bl_ui.space_nla.NLA_PT_action
|
|
|
261885
261849
|
|
|
261886
261850
|
NLA_PT_filters: bl_ui.space_nla.NLA_PT_filters
|
|
261887
261851
|
|
|
261888
|
-
NLA_PT_playhead_snapping: bl_ui.space_nla.NLA_PT_playhead_snapping
|
|
261889
|
-
|
|
261890
261852
|
NLA_PT_snapping: bl_ui.space_nla.NLA_PT_snapping
|
|
261891
261853
|
|
|
261892
261854
|
NODE_AST_compositor: bl_ui.space_node.NODE_AST_compositor
|
|
@@ -262141,6 +262103,8 @@ NODE_OT_viewer_shortcut_set: bl_operators.node.NODE_OT_viewer_shortcut_set
|
|
|
262141
262103
|
|
|
262142
262104
|
NODE_PT_active_node_color: bl_ui.space_node.NODE_PT_active_node_color
|
|
262143
262105
|
|
|
262106
|
+
NODE_PT_active_node_custom_properties: bl_ui.space_node.NODE_PT_active_node_custom_properties
|
|
262107
|
+
|
|
262144
262108
|
NODE_PT_active_node_generic: bl_ui.space_node.NODE_PT_active_node_generic
|
|
262145
262109
|
|
|
262146
262110
|
NODE_PT_active_node_properties: bl_ui.space_node.NODE_PT_active_node_properties
|
|
@@ -263071,8 +263035,6 @@ SEQUENCER_PT_movie_clip: bl_ui.space_sequencer.SEQUENCER_PT_movie_clip
|
|
|
263071
263035
|
|
|
263072
263036
|
SEQUENCER_PT_overlay: bl_ui.space_sequencer.SEQUENCER_PT_overlay
|
|
263073
263037
|
|
|
263074
|
-
SEQUENCER_PT_playhead_snapping: bl_ui.space_sequencer.SEQUENCER_PT_playhead_snapping
|
|
263075
|
-
|
|
263076
263038
|
SEQUENCER_PT_preview: bl_ui.space_sequencer.SEQUENCER_PT_preview
|
|
263077
263039
|
|
|
263078
263040
|
SEQUENCER_PT_preview_overlay: bl_ui.space_sequencer.SEQUENCER_PT_preview_overlay
|
|
@@ -263223,6 +263185,8 @@ TIME_PT_keyframing_settings: bl_ui.space_time.TIME_PT_keyframing_settings
|
|
|
263223
263185
|
|
|
263224
263186
|
TIME_PT_playback: bl_ui.space_time.TIME_PT_playback
|
|
263225
263187
|
|
|
263188
|
+
TIME_PT_playhead_snapping: bl_ui.space_time.TIME_PT_playhead_snapping
|
|
263189
|
+
|
|
263226
263190
|
TOPBAR_HT_upper_bar: bl_ui.space_topbar.TOPBAR_HT_upper_bar
|
|
263227
263191
|
|
|
263228
263192
|
TOPBAR_MT_blender: bl_ui.space_topbar.TOPBAR_MT_blender
|
|
@@ -75,7 +75,7 @@ bl_operators/grease_pencil/__init__.pyi,sha256=ppgkc4ZatqPEHJNhjKbEy1sBzJg9zo0sb
|
|
|
75
75
|
bl_operators/image/__init__.pyi,sha256=p_Pc5Za8ZGt_7ApR-NiQA94kOBvBdR8uqKiFKZgGMIk,3542
|
|
76
76
|
bl_operators/image_as_planes/__init__.pyi,sha256=G_h1gkxx6INE8lUl7M0MR9luywsJUraY6T39rVehEio,4804
|
|
77
77
|
bl_operators/mesh/__init__.pyi,sha256=LOcnRM3n2V8BeJa49XYer6b71eInogViGk2ohLQuOqw,2516
|
|
78
|
-
bl_operators/node/__init__.pyi,sha256=
|
|
78
|
+
bl_operators/node/__init__.pyi,sha256=YMxYh5k42rr0QXTPvfcOZ-dov5uZUMwhCkR00fz8vSQ,13711
|
|
79
79
|
bl_operators/node_editor/__init__.pyi,sha256=nXKuGcFgA7viFPwVoXogOT1iClUnXhtrK_rZTTXJ2Go,136
|
|
80
80
|
bl_operators/node_editor/node_functions/__init__.pyi,sha256=lvnouyugGqmyzgLR8aRsLj823dK3wC22vEu8lucNhJI,626
|
|
81
81
|
bl_operators/object/__init__.pyi,sha256=WL-2d1wfdQWpEW5HLAoydXAZ-hTS1XNuCvvBbBZkeL0,11823
|
|
@@ -108,7 +108,7 @@ bl_ui/__init__.pyi,sha256=bzjd8FHTafNzS5V6jK2sf7aIflWXIIAAOj2u3CG5Q8s,7004
|
|
|
108
108
|
bl_ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
109
109
|
bl_ui/anim/__init__.pyi,sha256=aUUQB5sqG7wizgoB77tVmFLfhOWMyuHcEUY06w1FW5k,938
|
|
110
110
|
bl_ui/asset_shelf/__init__.pyi,sha256=zy0z1qh-gQXQufHFrEggbXWlihKF9l2OihuhN-iS4NE,825
|
|
111
|
-
bl_ui/generic_ui_list/__init__.pyi,sha256=
|
|
111
|
+
bl_ui/generic_ui_list/__init__.pyi,sha256=S-2mXV_eFY1UGkO3gL3V1PIoCuNrSCgH572PiLDF8Bg,4301
|
|
112
112
|
bl_ui/node_add_menu/__init__.pyi,sha256=lPXeqXuLmc_dFV2GWoxfbqY3DNpetsqkI1f3i7lHY-k,1812
|
|
113
113
|
bl_ui/node_add_menu_compositor/__init__.pyi,sha256=Hn5-YC2cCeK7hHi5QgR6OKzyxdHl8S3EiDJpqB4mMQo,10559
|
|
114
114
|
bl_ui/node_add_menu_geometry/__init__.pyi,sha256=fuv_3IdbsrXx4uXgrJLM9lIVEIhNVlDnEXWe5tYbbYg,33084
|
|
@@ -160,27 +160,27 @@ bl_ui/properties_workspace/__init__.pyi,sha256=xUC1dYR6Eep5MbB1_-UTa77u4DE2bSH5s
|
|
|
160
160
|
bl_ui/properties_world/__init__.pyi,sha256=CY-sQhTOWWkq1NOgQ9jYRn4V4GLKveXVQu4T92f8sRY,9341
|
|
161
161
|
bl_ui/space_clip/__init__.pyi,sha256=y5bb9k6jgD_VHS020AKAOs_IL6sqNPCbqr0NAaUGYKo,47031
|
|
162
162
|
bl_ui/space_console/__init__.pyi,sha256=b7zy0mFsO542Mtd_KyFh-NjG_YFb__4-bW_C9vlB-8g,3372
|
|
163
|
-
bl_ui/space_dopesheet/__init__.pyi,sha256=
|
|
163
|
+
bl_ui/space_dopesheet/__init__.pyi,sha256=5x17A8fHhT78tmDcBRM5Zlh3bXs8Do1Ur_2m-xYjHxs,19512
|
|
164
164
|
bl_ui/space_filebrowser/__init__.pyi,sha256=JwXlj3tu-WKX6IpHHa4dEitmPamqeu2LR_pbcpTJsPo,20637
|
|
165
|
-
bl_ui/space_graph/__init__.pyi,sha256=
|
|
165
|
+
bl_ui/space_graph/__init__.pyi,sha256=TIljcrouLfS7ICU4fUZaRP5ybcUfd81xiOONIRGbyzE,12449
|
|
166
166
|
bl_ui/space_image/__init__.pyi,sha256=umZnS9mizGdWOCO0EwXuDzB1zt-Qu5RPqJGOPftV88M,46869
|
|
167
167
|
bl_ui/space_info/__init__.pyi,sha256=xS8fd5VIJX3mvOvrjgftzsHAx3ZbNggmUGyJIRv6Pcs,3384
|
|
168
|
-
bl_ui/space_nla/__init__.pyi,sha256=
|
|
169
|
-
bl_ui/space_node/__init__.pyi,sha256=
|
|
168
|
+
bl_ui/space_nla/__init__.pyi,sha256=qogAgjcs_TFfi4eoTjkVsPi8GkXRA7s4cO9xip2N-Ss,10324
|
|
169
|
+
bl_ui/space_node/__init__.pyi,sha256=tLdl7p5j7C08r_07WCOfmyx2-yLYPKF-lweXPJm1GVI,21996
|
|
170
170
|
bl_ui/space_outliner/__init__.pyi,sha256=1N93UIu-iU2UkqM7tQxeaxob3PRnnUjqY6rKdnT_sAE,8938
|
|
171
171
|
bl_ui/space_properties/__init__.pyi,sha256=KJdc80dXfvxv5XYmO8CRmheQxff_jLYiS_6zzRG_xwg,2802
|
|
172
|
-
bl_ui/space_sequencer/__init__.pyi,sha256=
|
|
172
|
+
bl_ui/space_sequencer/__init__.pyi,sha256=fXPyQ_mXWmo9U0VFpjDHD5t5oGqQBJP3hqCJjuGRXD0,58566
|
|
173
173
|
bl_ui/space_spreadsheet/__init__.pyi,sha256=qoO65GoJn8WObsqXqRzdEq2Zq1AZQEDWVpli-4lXOow,1769
|
|
174
174
|
bl_ui/space_statusbar/__init__.pyi,sha256=V-oUoxSsgIpi-jzqct_gz2vjFYkIqOffmuI4W7xlsbw,667
|
|
175
175
|
bl_ui/space_text/__init__.pyi,sha256=k864SRJgY7mgqqsu8KAhNGilMHMgMzjew1aeEHTtiYo,8996
|
|
176
|
-
bl_ui/space_time/__init__.pyi,sha256=
|
|
176
|
+
bl_ui/space_time/__init__.pyi,sha256=VwvieO14tuq0m-kYHJXz6maKEmQRAD7J2tQUrdNqI9E,4620
|
|
177
177
|
bl_ui/space_toolsystem_common/__init__.pyi,sha256=0wapsLJDJuc7K6B5kjWvB9_dWN5e3_6WNWf_ZEChlmk,3436
|
|
178
|
-
bl_ui/space_toolsystem_toolbar/__init__.pyi,sha256=
|
|
178
|
+
bl_ui/space_toolsystem_toolbar/__init__.pyi,sha256=agIsZF9M3aDyft5rbDHimXUuu4vq7QQIBrQe6M0S_UQ,10700
|
|
179
179
|
bl_ui/space_topbar/__init__.pyi,sha256=9MO703ewWr9Av2UGhd_tTQK8Okq8N3qw2SXOhZodeTk,15642
|
|
180
180
|
bl_ui/space_userpref/__init__.pyi,sha256=Ufcof6bgkrkvdWC-LjB5PnFo2Yzmu-HLYjBxweYLaFk,80834
|
|
181
181
|
bl_ui/space_view3d/__init__.pyi,sha256=4imWBsm8pkRorSjEMoaiih_vszcPlJ_d_CZ33SmoGf8,159655
|
|
182
182
|
bl_ui/space_view3d_toolbar/__init__.pyi,sha256=h6H868OMgIS3a1jgcOucUb9_EPzCFsR33fKPu_duUig,78464
|
|
183
|
-
bl_ui/utils/__init__.pyi,sha256=
|
|
183
|
+
bl_ui/utils/__init__.pyi,sha256=ljnA9UEJuHjOECvmj0JrqHBYqtd8GGy7IaBhwV_pIns,534
|
|
184
184
|
bl_ui_utils/__init__.pyi,sha256=6yinHCNictVwPqgqerb5zXorsqM0cqPLmz_r8ms1XeE,89
|
|
185
185
|
bl_ui_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
186
186
|
bl_ui_utils/layout/__init__.pyi,sha256=diIx4fYNx0-cCb582pWqI4VWUb1zl5--IG-OXvtCdd0,215
|
|
@@ -192,11 +192,11 @@ bmesh/__init__.pyi,sha256=nhi3aUMSLycSJTzr1Txhjt_NU0y_82NN0NBe8pZYTkE,1541
|
|
|
192
192
|
bmesh/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
193
193
|
bmesh/geometry/__init__.pyi,sha256=MZzpN0T12x1QweeZUui1LVTrnWyqyBgWsF6tPs1Pe9g,682
|
|
194
194
|
bmesh/ops/__init__.pyi,sha256=YEPcOajMh_dL5zFoV8hj7rVywdb1oO-rF2mjlqqE3Xs,76307
|
|
195
|
-
bmesh/types/__init__.pyi,sha256=
|
|
195
|
+
bmesh/types/__init__.pyi,sha256=lGMgkvo5z7e_ROqrXRdJAnjkWGJlNd0uyqfgENBjepY,44290
|
|
196
196
|
bmesh/utils/__init__.pyi,sha256=N2mRD0u1ipJkw2nokIb-FCL858ikNQrOM_mqJPiCEXY,6285
|
|
197
197
|
bpy/__init__.pyi,sha256=2c24IZe013Q0UbFSvpU9JKRYusCUwGYTXbNDx17dK5g,490
|
|
198
198
|
bpy/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
199
|
-
bpy/app/__init__.pyi,sha256=
|
|
199
|
+
bpy/app/__init__.pyi,sha256=w5BI8F-UjxHhd6q-sjNUidOBWkofNITIvMGqlm-Zj6U,8863
|
|
200
200
|
bpy/app/handlers/__init__.pyi,sha256=vxcj3vFmnFwA2JI8EdkC7ABpZkKNQs5AVadOyAamNe4,8062
|
|
201
201
|
bpy/app/icons/__init__.pyi,sha256=OEb8rxBfK1sVaLsDUrGC90Pd7ZTo8Vrq_nUsC8TCvfQ,963
|
|
202
202
|
bpy/app/timers/__init__.pyi,sha256=nD-TlDqICpcquEyk__OLIagSX4mNCH_jJxAKgfmrIYo,1813
|
|
@@ -245,7 +245,7 @@ bpy/ops/material/__init__.pyi,sha256=7yA8XRBaeLm-2IGqQqXcDGNctp3amhdmBMTPoWHw5G8
|
|
|
245
245
|
bpy/ops/mball/__init__.pyi,sha256=3avjhyGC4WLxkWeTp16xJjaN3dp05ecbIXJnc2EtXVs,4258
|
|
246
246
|
bpy/ops/mesh/__init__.pyi,sha256=jOS4UBLsZrHh24SJH5hJgFl-GDV6HM1PCVSQSjUK8Sw,132537
|
|
247
247
|
bpy/ops/nla/__init__.pyi,sha256=xj5WdhNuTLCf0XbePE1XPiPfS78Ea45lA28gOntmOFI,18812
|
|
248
|
-
bpy/ops/node/__init__.pyi,sha256=
|
|
248
|
+
bpy/ops/node/__init__.pyi,sha256=wz_5UIzSRm3AsL9LMAQGvOrVdx7vemAZDlhR76brKYA,66591
|
|
249
249
|
bpy/ops/object/__init__.pyi,sha256=Xx2R7ntvpsIAZ4lDFxPENe3mXEsOGCvWrI-S85v5qRI,172971
|
|
250
250
|
bpy/ops/outliner/__init__.pyi,sha256=ynP3AYcSIvRaROgjkuUMwL2F5P085Q_VVOZjhVC4VeY,29325
|
|
251
251
|
bpy/ops/paint/__init__.pyi,sha256=14ik0wFRdTfSOMWb-ZQBc5FLHtq8xFeGiLMqrmtj374,38326
|
|
@@ -264,7 +264,7 @@ bpy/ops/screen/__init__.pyi,sha256=JVe5VWQxsb64V0cJ5DATt1h7wlBwW16qhjlQdzoux3s,2
|
|
|
264
264
|
bpy/ops/script/__init__.pyi,sha256=xMWzlcdSykwWgk_ck_Mnv6pbex532LfNek21C_cWAjU,1047
|
|
265
265
|
bpy/ops/sculpt/__init__.pyi,sha256=hG_cuhBwa_WW7u_k9zObI0VoWkCkL8KK1r6kj7V5YKY,51567
|
|
266
266
|
bpy/ops/sculpt_curves/__init__.pyi,sha256=Pp-SNyuO82Y1Ksm2ygzZK14X5Nil2cZUOE798KYG5EE,2919
|
|
267
|
-
bpy/ops/sequencer/__init__.pyi,sha256=
|
|
267
|
+
bpy/ops/sequencer/__init__.pyi,sha256=M9Ddww34TuWus7o_7csX_g_aAzWQcYPbq-MZHUBGNOg,87888
|
|
268
268
|
bpy/ops/sound/__init__.pyi,sha256=x0KuxcCFRcLVHsSLxqfNcPi0CyqYVMIUGkBvznDroNk,16665
|
|
269
269
|
bpy/ops/spreadsheet/__init__.pyi,sha256=vJX-uQpmdhiHh6dB9yhaqOKkyQKPpRH1Ay2PSwLTEoQ,2175
|
|
270
270
|
bpy/ops/surface/__init__.pyi,sha256=2zsyLcEMeA71sYw44yeIY6l1dRzf77ITk17JWlz2JTk,10390
|
|
@@ -274,17 +274,17 @@ bpy/ops/texture/__init__.pyi,sha256=w1weHfSnhrJmGqpPs2KkjZNH4X8GDy-NFKfPXvy_rwQ,
|
|
|
274
274
|
bpy/ops/transform/__init__.pyi,sha256=Xon_BEEVgLXk1u6wbaPg2YSfK4AaN4bPgPS4znfc3Kg,59679
|
|
275
275
|
bpy/ops/ui/__init__.pyi,sha256=s_AC2AYmdkc3vPCCIeDVrS3zojkNuV8CTIRFjl56voo,13174
|
|
276
276
|
bpy/ops/uilist/__init__.pyi,sha256=CSwrFuqez9Ia24-_yFa5gAudByRrRqmaQVKrfExyRYc,1669
|
|
277
|
-
bpy/ops/uv/__init__.pyi,sha256=
|
|
277
|
+
bpy/ops/uv/__init__.pyi,sha256=B5CBO2vL55Kqby1jm_7JOoQ72chuDGLMYWD4HkMHTUc,46532
|
|
278
278
|
bpy/ops/view2d/__init__.pyi,sha256=bXpaqKJa4WVVOib1-e_jWpSirho63ignV5z0LPxfLCs,7173
|
|
279
279
|
bpy/ops/view3d/__init__.pyi,sha256=JET9fsqbX7Yqaf1IYsV2tvT4FwhYMklB_rOnEbG2OK8,31946
|
|
280
280
|
bpy/ops/wm/__init__.pyi,sha256=NHThI1FPMgAriNL3Y1h-S9viVTP0x9zDa0fsvmbhC9g,209822
|
|
281
281
|
bpy/ops/workspace/__init__.pyi,sha256=Yfe-bzDigcZkkMulfyDa0wbwqzHBrfp5mn0u_sCN7wo,2418
|
|
282
282
|
bpy/ops/world/__init__.pyi,sha256=VTCqEUTLL6yJroZCNcMYQgEKVmjwkIwIy70vB78rdOM,673
|
|
283
283
|
bpy/path/__init__.pyi,sha256=Phd8a6fB3496L7_LUhdwPNwkh3qy_4O-MS5br9RMfO0,5536
|
|
284
|
-
bpy/props/__init__.pyi,sha256=
|
|
284
|
+
bpy/props/__init__.pyi,sha256=NSOu8SY2_uXzyQ55AEuvhZGHY-4IZjDT3qqtszfLfwI,50980
|
|
285
285
|
bpy/stub_internal/__init__.pyi,sha256=h3K2LGZ8lcLY-Oo9ym-HEopjGScc4iTfpT1MU_6smTI,126
|
|
286
|
-
bpy/stub_internal/rna_enums/__init__.pyi,sha256=
|
|
287
|
-
bpy/types/__init__.pyi,sha256=
|
|
286
|
+
bpy/stub_internal/rna_enums/__init__.pyi,sha256=cccGqmWM38q4vdyIjUmKbaXWFJayGAyZJAq5EOdVZBc,143214
|
|
287
|
+
bpy/types/__init__.pyi,sha256=gTMYBK9YSSzHB1CUbucxBa-SB3XgO_28XlcDpwRtywM,5907141
|
|
288
288
|
bpy/utils/__init__.pyi,sha256=GGYp2g381aOdE7tWXvRGVbmhijbfgt4wGAtJGgbvyJg,15526
|
|
289
289
|
bpy/utils/previews/__init__.pyi,sha256=iSZemSCPu1S2BjAQO83Z-FqEo1nGHRCEIEduXB6hQhc,2357
|
|
290
290
|
bpy/utils/units/__init__.pyi,sha256=cpE9IZPkYPBexru7R9HQ_c0931d7R7Dvib2Uf7V0JJs,2645
|
|
@@ -317,7 +317,7 @@ freestyle/functions/__init__.pyi,sha256=dGcOMrCayIE_OXrHIm36aQUAsCyNwvX63DjLjJw6
|
|
|
317
317
|
freestyle/predicates/__init__.pyi,sha256=3Y8x157YP6udskhuFb_UZYvGyZjjEhGIJWQoj0BMLsw,13550
|
|
318
318
|
freestyle/shaders/__init__.pyi,sha256=SUbnzfs9aX629SUz1vacJUkTQS2F8-E4TS1SetN0yFs,24630
|
|
319
319
|
freestyle/types/__init__.pyi,sha256=kKYLqZdjpwVRBGzW02O_LUX_RkL8b0M1Op-49xfMbGk,101293
|
|
320
|
-
freestyle/utils/__init__.pyi,sha256=
|
|
320
|
+
freestyle/utils/__init__.pyi,sha256=vrxmLboZoETh1_GfhS4xYZ7vzW6Oh3vElX7y16Ftw0c,5328
|
|
321
321
|
freestyle/utils/ContextFunctions/__init__.pyi,sha256=IKNZD__52vYS5eT32F_WZwW1dco_6G2kZC_1IVCAwLs,3486
|
|
322
322
|
gpu/__init__.pyi,sha256=TLoatdrTMM6vfjnbuQA6cW38ARW5nuLa4Y-eicnJU5Q,8900
|
|
323
323
|
gpu/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -347,7 +347,7 @@ keyingsets_utils/__init__.pyi,sha256=LYwQPxGFL9s9daviMo2DyVIUmjyNRFT1S9cvMGBZ6to
|
|
|
347
347
|
keyingsets_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
348
348
|
mathutils/__init__.pyi,sha256=g9Jvfm5tIQqO9gdHh_r6YwHbp87CXRHsGikViFqV9Vs,90356
|
|
349
349
|
mathutils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
350
|
-
mathutils/bvhtree/__init__.pyi,sha256=
|
|
350
|
+
mathutils/bvhtree/__init__.pyi,sha256=dwPbU667m_oVBEu4aEcWns2sWl8oSNEII-O0GXxwsDA,5118
|
|
351
351
|
mathutils/geometry/__init__.pyi,sha256=N3LtfyhHPnBim_PgIa5likQdcVxOMDvUC-eTqv70ruY,23817
|
|
352
352
|
mathutils/interpolate/__init__.pyi,sha256=ndZoeTg3JKLj5Uskd-TU2BmCEAe8k_-MY-jGzzNj0O4,575
|
|
353
353
|
mathutils/kdtree/__init__.pyi,sha256=99pXd0pG1J4JBPexQBa87d-DAg-3KZ1lmDL3ZLiVA-Q,2309
|
|
@@ -364,7 +364,7 @@ rna_prop_ui/__init__.pyi,sha256=Gn7kc9WhI3qPObIz8QiFbjeVIP7GCeF6liywBzIEcnE,1402
|
|
|
364
364
|
rna_prop_ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
365
365
|
rna_xml/__init__.pyi,sha256=E0_ajcifhpiiQJVaNKnAa2ju-w5Tg9-lk7IqhsPjrw4,652
|
|
366
366
|
rna_xml/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
367
|
-
fake_bpy_module-
|
|
368
|
-
fake_bpy_module-
|
|
369
|
-
fake_bpy_module-
|
|
370
|
-
fake_bpy_module-
|
|
367
|
+
fake_bpy_module-20250904.dist-info/METADATA,sha256=XFVRbqIqZ2n-gsS9lJsHs_cSewUXLcrhxwviasw5GYo,7429
|
|
368
|
+
fake_bpy_module-20250904.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
369
|
+
fake_bpy_module-20250904.dist-info/top_level.txt,sha256=E_sehFLnpWSq252JjlyGL1A-1xsWTYcqyOIlHfuOh28,515
|
|
370
|
+
fake_bpy_module-20250904.dist-info/RECORD,,
|
freestyle/utils/__init__.pyi
CHANGED
|
@@ -125,7 +125,7 @@ def material_from_fedge(fe) -> None:
|
|
|
125
125
|
"""get the diffuse RGBA color from an FEdge"""
|
|
126
126
|
|
|
127
127
|
def normal_at_I0D(it) -> None: ...
|
|
128
|
-
def pairwise(iterable, types={
|
|
128
|
+
def pairwise(iterable, types={Stroke, StrokeVertexIterator}) -> None:
|
|
129
129
|
"""Yields a tuple containing the previous and current object"""
|
|
130
130
|
|
|
131
131
|
def rgb_to_bw(r, g, b) -> None:
|
mathutils/bvhtree/__init__.pyi
CHANGED
|
@@ -7,7 +7,6 @@ import typing
|
|
|
7
7
|
import collections.abc
|
|
8
8
|
import typing_extensions
|
|
9
9
|
import numpy.typing as npt
|
|
10
|
-
import _bpy_types
|
|
11
10
|
import bmesh.types
|
|
12
11
|
import bpy.types
|
|
13
12
|
import mathutils
|
|
@@ -26,7 +25,7 @@ class BVHTree:
|
|
|
26
25
|
@classmethod
|
|
27
26
|
def FromObject(
|
|
28
27
|
cls,
|
|
29
|
-
object:
|
|
28
|
+
object: bpy.types.Object,
|
|
30
29
|
depsgraph: bpy.types.Depsgraph,
|
|
31
30
|
*,
|
|
32
31
|
deform: bool = True,
|
|
@@ -37,7 +36,7 @@ class BVHTree:
|
|
|
37
36
|
"""BVH tree based on `Object` data.
|
|
38
37
|
|
|
39
38
|
:param object: Object data.
|
|
40
|
-
:type object:
|
|
39
|
+
:type object: bpy.types.Object
|
|
41
40
|
:param depsgraph: Depsgraph to use for evaluating the mesh.
|
|
42
41
|
:type depsgraph: bpy.types.Depsgraph
|
|
43
42
|
:param deform: Use mesh with deformations.
|
|
File without changes
|
|
File without changes
|