fake-bpy-module 20250428__py3-none-any.whl → 20250501__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/sequencer/__init__.pyi +14 -14
- bpy/_typing/rna_enums/__init__.pyi +0 -3
- bpy/ops/object/__init__.pyi +8 -1
- bpy/ops/sequencer/__init__.pyi +4 -4
- bpy/types/__init__.pyi +87 -51
- {fake_bpy_module-20250428.dist-info → fake_bpy_module-20250501.dist-info}/METADATA +1 -1
- {fake_bpy_module-20250428.dist-info → fake_bpy_module-20250501.dist-info}/RECORD +10 -10
- {fake_bpy_module-20250428.dist-info → fake_bpy_module-20250501.dist-info}/WHEEL +1 -1
- freestyle/utils/__init__.pyi +1 -1
- {fake_bpy_module-20250428.dist-info → fake_bpy_module-20250501.dist-info}/top_level.txt +0 -0
|
@@ -12,11 +12,11 @@ class Fade:
|
|
|
12
12
|
start: typing.Any
|
|
13
13
|
type: typing.Any
|
|
14
14
|
|
|
15
|
-
def calculate_max_value(self,
|
|
16
|
-
"""Returns the maximum Y coordinate the fade animation should use for a given
|
|
17
|
-
Uses either the
|
|
15
|
+
def calculate_max_value(self, strip, fade_fcurve):
|
|
16
|
+
"""Returns the maximum Y coordinate the fade animation should use for a given strip
|
|
17
|
+
Uses either the strip's value for the animated property, or the next keyframe after the fade
|
|
18
18
|
|
|
19
|
-
:param
|
|
19
|
+
:param strip:
|
|
20
20
|
:param fade_fcurve:
|
|
21
21
|
"""
|
|
22
22
|
|
|
@@ -123,17 +123,17 @@ class SequencerFadesAdd(bpy.types.Operator):
|
|
|
123
123
|
:rtype: typing.Any
|
|
124
124
|
"""
|
|
125
125
|
|
|
126
|
-
def calculate_fade_duration(self, context,
|
|
126
|
+
def calculate_fade_duration(self, context, strip):
|
|
127
127
|
"""
|
|
128
128
|
|
|
129
129
|
:param context:
|
|
130
|
-
:param
|
|
130
|
+
:param strip:
|
|
131
131
|
"""
|
|
132
132
|
|
|
133
|
-
def calculate_fades(self,
|
|
133
|
+
def calculate_fades(self, strip, fade_fcurve, animated_property, duration):
|
|
134
134
|
"""Returns a list of Fade objects
|
|
135
135
|
|
|
136
|
-
:param
|
|
136
|
+
:param strip:
|
|
137
137
|
:param fade_fcurve:
|
|
138
138
|
:param animated_property:
|
|
139
139
|
:param duration:
|
|
@@ -161,20 +161,20 @@ class SequencerFadesAdd(bpy.types.Operator):
|
|
|
161
161
|
:param fades:
|
|
162
162
|
"""
|
|
163
163
|
|
|
164
|
-
def fade_find_or_create_fcurve(self, context,
|
|
164
|
+
def fade_find_or_create_fcurve(self, context, strip, animated_property):
|
|
165
165
|
"""Iterates over all the fcurves until it finds an fcurve with a data path
|
|
166
|
-
that corresponds to the
|
|
166
|
+
that corresponds to the strip.
|
|
167
167
|
Returns the matching FCurve or creates a new one if the function can't find a match.
|
|
168
168
|
|
|
169
169
|
:param context:
|
|
170
|
-
:param
|
|
170
|
+
:param strip:
|
|
171
171
|
:param animated_property:
|
|
172
172
|
"""
|
|
173
173
|
|
|
174
|
-
def is_long_enough(self,
|
|
174
|
+
def is_long_enough(self, strip, duration=0.0):
|
|
175
175
|
"""
|
|
176
176
|
|
|
177
|
-
:param
|
|
177
|
+
:param strip:
|
|
178
178
|
:param duration:
|
|
179
179
|
"""
|
|
180
180
|
|
|
@@ -186,7 +186,7 @@ class SequencerFadesAdd(bpy.types.Operator):
|
|
|
186
186
|
"""
|
|
187
187
|
|
|
188
188
|
class SequencerFadesClear(bpy.types.Operator):
|
|
189
|
-
"""Removes fade animation from selected
|
|
189
|
+
"""Removes fade animation from selected strips"""
|
|
190
190
|
|
|
191
191
|
bl_idname: typing.Any
|
|
192
192
|
bl_label: typing.Any
|
|
@@ -274,9 +274,6 @@ type BrushSculptBrushTypeItems = typing.Literal[
|
|
|
274
274
|
"BLOB", # Blob.
|
|
275
275
|
"CREASE", # Crease.
|
|
276
276
|
"SMOOTH", # Smooth.
|
|
277
|
-
"FLATTEN", # Flatten.
|
|
278
|
-
"FILL", # Fill.
|
|
279
|
-
"SCRAPE", # Scrape.
|
|
280
277
|
"PLANE", # Plane.
|
|
281
278
|
"MULTIPLANE_SCRAPE", # Multi-plane Scrape.
|
|
282
279
|
"PINCH", # Pinch.
|
bpy/ops/object/__init__.pyi
CHANGED
|
@@ -1911,7 +1911,7 @@ def join(execution_context: int | str | None = None, undo: bool | None = None):
|
|
|
1911
1911
|
"""
|
|
1912
1912
|
|
|
1913
1913
|
def join_shapes(execution_context: int | str | None = None, undo: bool | None = None):
|
|
1914
|
-
"""
|
|
1914
|
+
"""Add the vertex positions of selected objects as shape keys or update existing shape keys with matching names
|
|
1915
1915
|
|
|
1916
1916
|
:type execution_context: int | str | None
|
|
1917
1917
|
:type undo: bool | None
|
|
@@ -4490,6 +4490,13 @@ def unlink_data(execution_context: int | str | None = None, undo: bool | None =
|
|
|
4490
4490
|
:type undo: bool | None
|
|
4491
4491
|
"""
|
|
4492
4492
|
|
|
4493
|
+
def update_shapes(execution_context: int | str | None = None, undo: bool | None = None):
|
|
4494
|
+
"""Update existing shape keys with the vertex positions of selected objects with matching names
|
|
4495
|
+
|
|
4496
|
+
:type execution_context: int | str | None
|
|
4497
|
+
:type undo: bool | None
|
|
4498
|
+
"""
|
|
4499
|
+
|
|
4493
4500
|
def vertex_group_add(
|
|
4494
4501
|
execution_context: int | str | None = None, undo: bool | None = None
|
|
4495
4502
|
):
|
bpy/ops/sequencer/__init__.pyi
CHANGED
|
@@ -583,15 +583,15 @@ def fades_add(
|
|
|
583
583
|
Fade Out -- Fade out selected strips.
|
|
584
584
|
|
|
585
585
|
CURSOR_FROM
|
|
586
|
-
From Current Frame -- Fade from the time cursor to the end of overlapping
|
|
586
|
+
From Current Frame -- Fade from the time cursor to the end of overlapping strips.
|
|
587
587
|
|
|
588
588
|
CURSOR_TO
|
|
589
|
-
To Current Frame -- Fade from the start of
|
|
589
|
+
To Current Frame -- Fade from the start of strips under the time cursor to the current frame.
|
|
590
590
|
:type type: typing.Literal['IN_OUT','IN','OUT','CURSOR_FROM','CURSOR_TO'] | None
|
|
591
591
|
"""
|
|
592
592
|
|
|
593
593
|
def fades_clear(execution_context: int | str | None = None, undo: bool | None = None):
|
|
594
|
-
"""Removes fade animation from selected
|
|
594
|
+
"""Removes fade animation from selected strips
|
|
595
595
|
|
|
596
596
|
:type execution_context: int | str | None
|
|
597
597
|
:type undo: bool | None
|
|
@@ -1181,7 +1181,7 @@ def rename_channel(
|
|
|
1181
1181
|
"""
|
|
1182
1182
|
|
|
1183
1183
|
def rendersize(execution_context: int | str | None = None, undo: bool | None = None):
|
|
1184
|
-
"""Set render size and aspect from active
|
|
1184
|
+
"""Set render size and aspect from active strip
|
|
1185
1185
|
|
|
1186
1186
|
:type execution_context: int | str | None
|
|
1187
1187
|
:type undo: bool | None
|
bpy/types/__init__.pyi
CHANGED
|
@@ -128219,6 +128219,12 @@ class CollectionExport(bpy_struct):
|
|
|
128219
128219
|
:type: PropertyGroup | None
|
|
128220
128220
|
"""
|
|
128221
128221
|
|
|
128222
|
+
filepath: str
|
|
128223
|
+
""" The file path used for exporting
|
|
128224
|
+
|
|
128225
|
+
:type: str
|
|
128226
|
+
"""
|
|
128227
|
+
|
|
128222
128228
|
is_open: bool
|
|
128223
128229
|
""" Whether the panel is expanded or closed
|
|
128224
128230
|
|
|
@@ -129549,7 +129555,7 @@ class CompositorNodeBoxMask(CompositorNode, NodeInternal, Node, bpy_struct):
|
|
|
129549
129555
|
"""Create rectangular mask suitable for use as a simple matte"""
|
|
129550
129556
|
|
|
129551
129557
|
mask_height: float
|
|
129552
|
-
""" Height of the box
|
|
129558
|
+
""" Height of the box. (Deprecated: Use Size input instead.)
|
|
129553
129559
|
|
|
129554
129560
|
:type: float
|
|
129555
129561
|
"""
|
|
@@ -129561,25 +129567,25 @@ class CompositorNodeBoxMask(CompositorNode, NodeInternal, Node, bpy_struct):
|
|
|
129561
129567
|
"""
|
|
129562
129568
|
|
|
129563
129569
|
mask_width: float
|
|
129564
|
-
""" Width of the box
|
|
129570
|
+
""" Width of the box. (Deprecated: Use Size input instead.)
|
|
129565
129571
|
|
|
129566
129572
|
:type: float
|
|
129567
129573
|
"""
|
|
129568
129574
|
|
|
129569
129575
|
rotation: float
|
|
129570
|
-
""" Rotation angle of the box
|
|
129576
|
+
""" Rotation angle of the box. (Deprecated: Use Rotation input instead.)
|
|
129571
129577
|
|
|
129572
129578
|
:type: float
|
|
129573
129579
|
"""
|
|
129574
129580
|
|
|
129575
129581
|
x: float
|
|
129576
|
-
""" X position of the middle of the box
|
|
129582
|
+
""" X position of the middle of the box. (Deprecated: Use Position input instead.)
|
|
129577
129583
|
|
|
129578
129584
|
:type: float
|
|
129579
129585
|
"""
|
|
129580
129586
|
|
|
129581
129587
|
y: float
|
|
129582
|
-
""" Y position of the middle of the box
|
|
129588
|
+
""" Y position of the middle of the box. (Deprecated: Use Position input instead.)
|
|
129583
129589
|
|
|
129584
129590
|
:type: float
|
|
129585
129591
|
"""
|
|
@@ -130013,151 +130019,151 @@ class CompositorNodeColorCorrection(CompositorNode, NodeInternal, Node, bpy_stru
|
|
|
130013
130019
|
"""Adjust the color of an image, separately in several tonal ranges (highlights, midtones and shadows)"""
|
|
130014
130020
|
|
|
130015
130021
|
blue: bool
|
|
130016
|
-
""" Blue channel active
|
|
130022
|
+
""" Blue channel active. (Deprecated: Use Apply On Blue input instead.)
|
|
130017
130023
|
|
|
130018
130024
|
:type: bool
|
|
130019
130025
|
"""
|
|
130020
130026
|
|
|
130021
130027
|
green: bool
|
|
130022
|
-
""" Green channel active
|
|
130028
|
+
""" Green channel active. (Deprecated: Use Apply On Green input instead.)
|
|
130023
130029
|
|
|
130024
130030
|
:type: bool
|
|
130025
130031
|
"""
|
|
130026
130032
|
|
|
130027
130033
|
highlights_contrast: float
|
|
130028
|
-
""" Highlights contrast
|
|
130034
|
+
""" Highlights contrast. (Deprecated: Use Highlights Contrast input instead.
|
|
130029
130035
|
|
|
130030
130036
|
:type: float
|
|
130031
130037
|
"""
|
|
130032
130038
|
|
|
130033
130039
|
highlights_gain: float
|
|
130034
|
-
""" Highlights gain
|
|
130040
|
+
""" Highlights gain. (Deprecated: Use Highlights Gain input instead.
|
|
130035
130041
|
|
|
130036
130042
|
:type: float
|
|
130037
130043
|
"""
|
|
130038
130044
|
|
|
130039
130045
|
highlights_gamma: float
|
|
130040
|
-
""" Highlights gamma
|
|
130046
|
+
""" Highlights gamma. (Deprecated: Use Highlights Gamma input instead.
|
|
130041
130047
|
|
|
130042
130048
|
:type: float
|
|
130043
130049
|
"""
|
|
130044
130050
|
|
|
130045
130051
|
highlights_lift: float
|
|
130046
|
-
""" Highlights lift
|
|
130052
|
+
""" Highlights lift. (Deprecated: Use Highlights Lift input instead.
|
|
130047
130053
|
|
|
130048
130054
|
:type: float
|
|
130049
130055
|
"""
|
|
130050
130056
|
|
|
130051
130057
|
highlights_saturation: float
|
|
130052
|
-
""" Highlights saturation
|
|
130058
|
+
""" Highlights saturation. (Deprecated: Use Highlights Saturation input instead.
|
|
130053
130059
|
|
|
130054
130060
|
:type: float
|
|
130055
130061
|
"""
|
|
130056
130062
|
|
|
130057
130063
|
master_contrast: float
|
|
130058
|
-
""" Master contrast
|
|
130064
|
+
""" Master contrast. (Deprecated: Use Master Contrast input instead.
|
|
130059
130065
|
|
|
130060
130066
|
:type: float
|
|
130061
130067
|
"""
|
|
130062
130068
|
|
|
130063
130069
|
master_gain: float
|
|
130064
|
-
""" Master gain
|
|
130070
|
+
""" Master gain. (Deprecated: Use Master Gain input instead.
|
|
130065
130071
|
|
|
130066
130072
|
:type: float
|
|
130067
130073
|
"""
|
|
130068
130074
|
|
|
130069
130075
|
master_gamma: float
|
|
130070
|
-
""" Master gamma
|
|
130076
|
+
""" Master gamma. (Deprecated: Use Master Gamma input instead.
|
|
130071
130077
|
|
|
130072
130078
|
:type: float
|
|
130073
130079
|
"""
|
|
130074
130080
|
|
|
130075
130081
|
master_lift: float
|
|
130076
|
-
""" Master lift
|
|
130082
|
+
""" Master lift. (Deprecated: Use Master Lift input instead.
|
|
130077
130083
|
|
|
130078
130084
|
:type: float
|
|
130079
130085
|
"""
|
|
130080
130086
|
|
|
130081
130087
|
master_saturation: float
|
|
130082
|
-
""" Master saturation
|
|
130088
|
+
""" Master saturation. (Deprecated: Use Master Saturation input instead.
|
|
130083
130089
|
|
|
130084
130090
|
:type: float
|
|
130085
130091
|
"""
|
|
130086
130092
|
|
|
130087
130093
|
midtones_contrast: float
|
|
130088
|
-
""" Midtones contrast
|
|
130094
|
+
""" Midtones contrast. (Deprecated: Use Midtones Contrast input instead.
|
|
130089
130095
|
|
|
130090
130096
|
:type: float
|
|
130091
130097
|
"""
|
|
130092
130098
|
|
|
130093
130099
|
midtones_end: float
|
|
130094
|
-
""" End of midtones
|
|
130100
|
+
""" End of midtones. (Deprecated: Use Midtones End input instead.)
|
|
130095
130101
|
|
|
130096
130102
|
:type: float
|
|
130097
130103
|
"""
|
|
130098
130104
|
|
|
130099
130105
|
midtones_gain: float
|
|
130100
|
-
""" Midtones gain
|
|
130106
|
+
""" Midtones gain. (Deprecated: Use Midtones Gain input instead.
|
|
130101
130107
|
|
|
130102
130108
|
:type: float
|
|
130103
130109
|
"""
|
|
130104
130110
|
|
|
130105
130111
|
midtones_gamma: float
|
|
130106
|
-
""" Midtones gamma
|
|
130112
|
+
""" Midtones gamma. (Deprecated: Use Midtones Gamma input instead.
|
|
130107
130113
|
|
|
130108
130114
|
:type: float
|
|
130109
130115
|
"""
|
|
130110
130116
|
|
|
130111
130117
|
midtones_lift: float
|
|
130112
|
-
""" Midtones lift
|
|
130118
|
+
""" Midtones lift. (Deprecated: Use Midtones Lift input instead.
|
|
130113
130119
|
|
|
130114
130120
|
:type: float
|
|
130115
130121
|
"""
|
|
130116
130122
|
|
|
130117
130123
|
midtones_saturation: float
|
|
130118
|
-
""" Midtones saturation
|
|
130124
|
+
""" Midtones saturation. (Deprecated: Use Midtones Saturation input instead.
|
|
130119
130125
|
|
|
130120
130126
|
:type: float
|
|
130121
130127
|
"""
|
|
130122
130128
|
|
|
130123
130129
|
midtones_start: float
|
|
130124
|
-
""" Start of midtones
|
|
130130
|
+
""" Start of midtones. (Deprecated: Use Midtones Start input instead.)
|
|
130125
130131
|
|
|
130126
130132
|
:type: float
|
|
130127
130133
|
"""
|
|
130128
130134
|
|
|
130129
130135
|
red: bool
|
|
130130
|
-
""" Red channel active
|
|
130136
|
+
""" Red channel active. (Deprecated: Use Apply On Red input instead.)
|
|
130131
130137
|
|
|
130132
130138
|
:type: bool
|
|
130133
130139
|
"""
|
|
130134
130140
|
|
|
130135
130141
|
shadows_contrast: float
|
|
130136
|
-
""" Shadows contrast
|
|
130142
|
+
""" Shadows contrast. (Deprecated: Use Shadows Contrast input instead.
|
|
130137
130143
|
|
|
130138
130144
|
:type: float
|
|
130139
130145
|
"""
|
|
130140
130146
|
|
|
130141
130147
|
shadows_gain: float
|
|
130142
|
-
""" Shadows gain
|
|
130148
|
+
""" Shadows gain. (Deprecated: Use Shadows Gain input instead.
|
|
130143
130149
|
|
|
130144
130150
|
:type: float
|
|
130145
130151
|
"""
|
|
130146
130152
|
|
|
130147
130153
|
shadows_gamma: float
|
|
130148
|
-
""" Shadows gamma
|
|
130154
|
+
""" Shadows gamma. (Deprecated: Use Shadows Gamma input instead.
|
|
130149
130155
|
|
|
130150
130156
|
:type: float
|
|
130151
130157
|
"""
|
|
130152
130158
|
|
|
130153
130159
|
shadows_lift: float
|
|
130154
|
-
""" Shadows lift
|
|
130160
|
+
""" Shadows lift. (Deprecated: Use Shadows Lift input instead.
|
|
130155
130161
|
|
|
130156
130162
|
:type: float
|
|
130157
130163
|
"""
|
|
130158
130164
|
|
|
130159
130165
|
shadows_saturation: float
|
|
130160
|
-
""" Shadows saturation
|
|
130166
|
+
""" Shadows saturation. (Deprecated: Use Shadows Saturation input instead.
|
|
130161
130167
|
|
|
130162
130168
|
:type: float
|
|
130163
130169
|
"""
|
|
@@ -131413,43 +131419,43 @@ class CompositorNodeDBlur(CompositorNode, NodeInternal, Node, bpy_struct):
|
|
|
131413
131419
|
"""Blur an image along a direction"""
|
|
131414
131420
|
|
|
131415
131421
|
angle: float
|
|
131416
|
-
"""
|
|
131422
|
+
""" (Deprecated: Use Translation Direction input instead.)
|
|
131417
131423
|
|
|
131418
131424
|
:type: float
|
|
131419
131425
|
"""
|
|
131420
131426
|
|
|
131421
131427
|
center_x: float
|
|
131422
|
-
"""
|
|
131428
|
+
""" (Deprecated: Use Center input instead.)
|
|
131423
131429
|
|
|
131424
131430
|
:type: float
|
|
131425
131431
|
"""
|
|
131426
131432
|
|
|
131427
131433
|
center_y: float
|
|
131428
|
-
"""
|
|
131434
|
+
""" (Deprecated: Use Center input instead.)
|
|
131429
131435
|
|
|
131430
131436
|
:type: float
|
|
131431
131437
|
"""
|
|
131432
131438
|
|
|
131433
131439
|
distance: float
|
|
131434
|
-
"""
|
|
131440
|
+
""" (Deprecated: Use Translation Amount input instead.)
|
|
131435
131441
|
|
|
131436
131442
|
:type: float
|
|
131437
131443
|
"""
|
|
131438
131444
|
|
|
131439
131445
|
iterations: int
|
|
131440
|
-
"""
|
|
131446
|
+
""" (Deprecated: Use Samples input instead.)
|
|
131441
131447
|
|
|
131442
131448
|
:type: int
|
|
131443
131449
|
"""
|
|
131444
131450
|
|
|
131445
131451
|
spin: float
|
|
131446
|
-
"""
|
|
131452
|
+
""" (Deprecated: Use Rotation input instead.)
|
|
131447
131453
|
|
|
131448
131454
|
:type: float
|
|
131449
131455
|
"""
|
|
131450
131456
|
|
|
131451
131457
|
zoom: float
|
|
131452
|
-
"""
|
|
131458
|
+
""" (Deprecated: Use Scale input instead.)
|
|
131453
131459
|
|
|
131454
131460
|
:type: float
|
|
131455
131461
|
"""
|
|
@@ -132099,7 +132105,7 @@ class CompositorNodeEllipseMask(CompositorNode, NodeInternal, Node, bpy_struct):
|
|
|
132099
132105
|
"""Create elliptical mask suitable for use as a simple matte or vignette mask"""
|
|
132100
132106
|
|
|
132101
132107
|
mask_height: float
|
|
132102
|
-
""" Height of the ellipse
|
|
132108
|
+
""" Height of the ellipse. (Deprecated: Use Size input instead.)
|
|
132103
132109
|
|
|
132104
132110
|
:type: float
|
|
132105
132111
|
"""
|
|
@@ -132111,25 +132117,25 @@ class CompositorNodeEllipseMask(CompositorNode, NodeInternal, Node, bpy_struct):
|
|
|
132111
132117
|
"""
|
|
132112
132118
|
|
|
132113
132119
|
mask_width: float
|
|
132114
|
-
""" Width of the ellipse
|
|
132120
|
+
""" Width of the ellipse. (Deprecated: Use Size input instead.)
|
|
132115
132121
|
|
|
132116
132122
|
:type: float
|
|
132117
132123
|
"""
|
|
132118
132124
|
|
|
132119
132125
|
rotation: float
|
|
132120
|
-
""" Rotation angle of the ellipse
|
|
132126
|
+
""" Rotation angle of the ellipse. (Deprecated: Use Rotation input instead.)
|
|
132121
132127
|
|
|
132122
132128
|
:type: float
|
|
132123
132129
|
"""
|
|
132124
132130
|
|
|
132125
132131
|
x: float
|
|
132126
|
-
""" X position of the middle of the ellipse
|
|
132132
|
+
""" X position of the middle of the ellipse. (Deprecated: Use Position input instead.)
|
|
132127
132133
|
|
|
132128
132134
|
:type: float
|
|
132129
132135
|
"""
|
|
132130
132136
|
|
|
132131
132137
|
y: float
|
|
132132
|
-
""" Y position of the middle of the ellipse
|
|
132138
|
+
""" Y position of the middle of the ellipse. (Deprecated: Use Position input instead.)
|
|
132133
132139
|
|
|
132134
132140
|
:type: float
|
|
132135
132141
|
"""
|
|
@@ -133356,20 +133362,26 @@ class CompositorNodeKuwahara(CompositorNode, NodeInternal, Node, bpy_struct):
|
|
|
133356
133362
|
class CompositorNodeLensdist(CompositorNode, NodeInternal, Node, bpy_struct):
|
|
133357
133363
|
"""Simulate distortion and dispersion from camera lenses"""
|
|
133358
133364
|
|
|
133365
|
+
distortion_type: typing.Literal["RADIAL", "HORIZONTAL"]
|
|
133366
|
+
"""
|
|
133367
|
+
|
|
133368
|
+
:type: typing.Literal['RADIAL','HORIZONTAL']
|
|
133369
|
+
"""
|
|
133370
|
+
|
|
133359
133371
|
use_fit: bool
|
|
133360
|
-
""" For positive distortion factor only: scale image such that black areas are not visible
|
|
133372
|
+
""" For positive distortion factor only: scale image such that black areas are not visible. (Deprecated: Use Fit input instead.)
|
|
133361
133373
|
|
|
133362
133374
|
:type: bool
|
|
133363
133375
|
"""
|
|
133364
133376
|
|
|
133365
133377
|
use_jitter: bool
|
|
133366
|
-
""" Enable/disable jittering (faster, but also noisier)
|
|
133378
|
+
""" Enable/disable jittering (faster, but also noisier). (Deprecated: Use Jitter input instead.)
|
|
133367
133379
|
|
|
133368
133380
|
:type: bool
|
|
133369
133381
|
"""
|
|
133370
133382
|
|
|
133371
133383
|
use_projector: bool
|
|
133372
|
-
""" Enable/disable projector mode (the effect is applied in horizontal direction only)
|
|
133384
|
+
""" Enable/disable projector mode (the effect is applied in horizontal direction only). (Deprecated: Use distortion_type property instead.)
|
|
133373
133385
|
|
|
133374
133386
|
:type: bool
|
|
133375
133387
|
"""
|
|
@@ -133615,7 +133627,7 @@ class CompositorNodeMapUV(CompositorNode, NodeInternal, Node, bpy_struct):
|
|
|
133615
133627
|
"""Map a texture using UV coordinates, to apply a texture to objects in compositing"""
|
|
133616
133628
|
|
|
133617
133629
|
alpha: int
|
|
133618
|
-
"""
|
|
133630
|
+
""" (Deprecated: Unused.)
|
|
133619
133631
|
|
|
133620
133632
|
:type: int
|
|
133621
133633
|
"""
|
|
@@ -135511,13 +135523,13 @@ class CompositorNodeSunBeams(CompositorNode, NodeInternal, Node, bpy_struct):
|
|
|
135511
135523
|
"""Create sun beams based on image brightness"""
|
|
135512
135524
|
|
|
135513
135525
|
ray_length: float
|
|
135514
|
-
""" Length of rays as a factor of the image size
|
|
135526
|
+
""" Length of rays as a factor of the image size. (Deprecated: Use Length input instead.)
|
|
135515
135527
|
|
|
135516
135528
|
:type: float
|
|
135517
135529
|
"""
|
|
135518
135530
|
|
|
135519
135531
|
source: bpy_prop_array[float]
|
|
135520
|
-
""" Source point of rays as a factor of the image width and height
|
|
135532
|
+
""" Source point of rays as a factor of the image width and height. (Deprecated: Use Source input instead.)
|
|
135521
135533
|
|
|
135522
135534
|
:type: bpy_prop_array[float]
|
|
135523
135535
|
"""
|
|
@@ -181158,10 +181170,10 @@ class MeshSequenceCacheModifier(Modifier, bpy_struct):
|
|
|
181158
181170
|
:type: str
|
|
181159
181171
|
"""
|
|
181160
181172
|
|
|
181161
|
-
read_data: set[typing.Literal["VERT", "POLY", "UV", "COLOR"]]
|
|
181173
|
+
read_data: set[typing.Literal["VERT", "POLY", "UV", "COLOR", "ATTRIBUTES"]]
|
|
181162
181174
|
""" Data to read from the cache
|
|
181163
181175
|
|
|
181164
|
-
:type: set[typing.Literal['VERT','POLY','UV','COLOR']]
|
|
181176
|
+
:type: set[typing.Literal['VERT','POLY','UV','COLOR','ATTRIBUTES']]
|
|
181165
181177
|
"""
|
|
181166
181178
|
|
|
181167
181179
|
use_vertex_interpolation: bool
|
|
@@ -198562,6 +198574,12 @@ class PreferencesExperimental(bpy_struct):
|
|
|
198562
198574
|
:type: bool
|
|
198563
198575
|
"""
|
|
198564
198576
|
|
|
198577
|
+
write_large_blend_file_blocks: bool
|
|
198578
|
+
""" Enables support for writing .blend files that contain buffers larger than 2 GB. If enabled, any saved files can not be opened by older Blender versions
|
|
198579
|
+
|
|
198580
|
+
:type: bool
|
|
198581
|
+
"""
|
|
198582
|
+
|
|
198565
198583
|
@classmethod
|
|
198566
198584
|
def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
|
|
198567
198585
|
"""
|
|
@@ -201418,6 +201436,12 @@ class RenderLayer(bpy_struct):
|
|
|
201418
201436
|
:type: bool
|
|
201419
201437
|
"""
|
|
201420
201438
|
|
|
201439
|
+
use_grease_pencil: bool
|
|
201440
|
+
""" Render Grease Pencil on this layer
|
|
201441
|
+
|
|
201442
|
+
:type: bool
|
|
201443
|
+
"""
|
|
201444
|
+
|
|
201421
201445
|
use_motion_blur: bool
|
|
201422
201446
|
""" Render motion blur in this Layer, if enabled in the scene
|
|
201423
201447
|
|
|
@@ -202005,7 +202029,7 @@ class RenderSettings(bpy_struct):
|
|
|
202005
202029
|
"""
|
|
202006
202030
|
|
|
202007
202031
|
ppm_factor: float
|
|
202008
|
-
""" The unit
|
|
202032
|
+
""" The pixel density meta-data written to supported image formats. This value is multiplied by the PPM-base which defines the unit (typically inches or meters)
|
|
202009
202033
|
|
|
202010
202034
|
:type: float
|
|
202011
202035
|
"""
|
|
@@ -235077,6 +235101,12 @@ class ViewLayer(bpy_struct):
|
|
|
235077
235101
|
:type: bool
|
|
235078
235102
|
"""
|
|
235079
235103
|
|
|
235104
|
+
use_grease_pencil: bool
|
|
235105
|
+
""" Render Grease Pencil on this layer
|
|
235106
|
+
|
|
235107
|
+
:type: bool
|
|
235108
|
+
"""
|
|
235109
|
+
|
|
235080
235110
|
use_motion_blur: bool
|
|
235081
235111
|
""" Render motion blur in this Layer, if enabled in the scene
|
|
235082
235112
|
|
|
@@ -235167,6 +235197,12 @@ class ViewLayer(bpy_struct):
|
|
|
235167
235197
|
:type: bool
|
|
235168
235198
|
"""
|
|
235169
235199
|
|
|
235200
|
+
use_pass_grease_pencil: bool
|
|
235201
|
+
""" Deliver Grease Pencil render result in a separate pass
|
|
235202
|
+
|
|
235203
|
+
:type: bool
|
|
235204
|
+
"""
|
|
235205
|
+
|
|
235170
235206
|
use_pass_material_index: bool
|
|
235171
235207
|
""" Deliver material index pass
|
|
235172
235208
|
|
|
@@ -80,7 +80,7 @@ bl_operators/object_randomize_transform/__init__.pyi,sha256=s2eF0-2S9YkN-Ms2Epjt
|
|
|
80
80
|
bl_operators/presets/__init__.pyi,sha256=_-PkB5rOnMBoB7KG1yDDASLHgKEkhYfXJ9zkll1naxA,18364
|
|
81
81
|
bl_operators/rigidbody/__init__.pyi,sha256=-tcMsep-Na5zVxpyWXoue9QCQAjT_G0ay9oOkXL50GU,2469
|
|
82
82
|
bl_operators/screen_play_rendered_anim/__init__.pyi,sha256=drEsAFNkHB8m8iJU8qdW9hDDSd0iI7X3bXMxsgaQDmo,793
|
|
83
|
-
bl_operators/sequencer/__init__.pyi,sha256=
|
|
83
|
+
bl_operators/sequencer/__init__.pyi,sha256=5aHRjZTvdMmPUN-Smydt9rKF7UKzYEM7oeBaN0oeLqI,7721
|
|
84
84
|
bl_operators/spreadsheet/__init__.pyi,sha256=FNZU53H0rBDN8lGT1SOZCNmU5dhhmTVFhrLznwbgn_E,984
|
|
85
85
|
bl_operators/userpref/__init__.pyi,sha256=r0shpzyMf4l9lFS0K8mlHApV1dpltYdZmfG42cErRz4,17098
|
|
86
86
|
bl_operators/uvcalc_follow_active/__init__.pyi,sha256=U3DQIzQRLNaWqynXYnm4-tta8Xfttou8tzqV4RSs6Gg,1050
|
|
@@ -192,7 +192,7 @@ bmesh/utils/__init__.pyi,sha256=B2MEUdWjhoPVN_86ZJnKBouszuYlmox83fs_eMy_XSQ,6262
|
|
|
192
192
|
bpy/__init__.pyi,sha256=xqYSQA60ItjGIlcKmU1c67ClE1dzY3IA0l7SeDDfFFg,491
|
|
193
193
|
bpy/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
194
194
|
bpy/_typing/__init__.pyi,sha256=h3K2LGZ8lcLY-Oo9ym-HEopjGScc4iTfpT1MU_6smTI,126
|
|
195
|
-
bpy/_typing/rna_enums/__init__.pyi,sha256=
|
|
195
|
+
bpy/_typing/rna_enums/__init__.pyi,sha256=PXdYi3PWPEjtPXwGL8Zm_Q0vqnnBxDD0xa1WsSjKdLE,140479
|
|
196
196
|
bpy/app/__init__.pyi,sha256=Xwk-SXH12MBT1wOpGXofw-vK_zhwxtNX41BV9q6WvQE,8797
|
|
197
197
|
bpy/app/handlers/__init__.pyi,sha256=A9IS2EmBskYtGy2aMCX5vxAmTKB3YCuz1hUPZvah8S4,6938
|
|
198
198
|
bpy/app/icons/__init__.pyi,sha256=IxxJA0uPQaBAogv-iZ2jEG-5f6i3X9M-gRjw8jJnL8A,955
|
|
@@ -243,7 +243,7 @@ bpy/ops/mball/__init__.pyi,sha256=vKET4S-NZrDAf4r1XUXjyyW8Ry5bdna9EeQlV3HMo5Y,41
|
|
|
243
243
|
bpy/ops/mesh/__init__.pyi,sha256=hJY7zxCu-W4eU-1F4zyxLDxUL7eDEViPPZRemS2RV6s,132714
|
|
244
244
|
bpy/ops/nla/__init__.pyi,sha256=6C8Gm7ZOBATflqUymRCXljSEKN_oE1MvqVMpR05eVIM,18172
|
|
245
245
|
bpy/ops/node/__init__.pyi,sha256=SA7zC30uMpDZGZWjoUv0lIN5XymthWMnHJJyY_UnzTc,60877
|
|
246
|
-
bpy/ops/object/__init__.pyi,sha256=
|
|
246
|
+
bpy/ops/object/__init__.pyi,sha256=kKGa88PhgNPqjXJuPKFieA8YvnVf9NnQVdLT3p9LMx0,169093
|
|
247
247
|
bpy/ops/outliner/__init__.pyi,sha256=5ksIXcWA2dfw0ogr_yEF5KrQlolqR-8sn3Al3Wx6-Ec,28073
|
|
248
248
|
bpy/ops/paint/__init__.pyi,sha256=U-uMYTkGLmcnkI9RsWRnsbqDLJuLaWPk-5ue5rnoQwg,37692
|
|
249
249
|
bpy/ops/paintcurve/__init__.pyi,sha256=3V3HI5tmtyehUcJyiNj8NO4uj-Q7B9xIvBgnAn3BlmU,3007
|
|
@@ -261,7 +261,7 @@ bpy/ops/screen/__init__.pyi,sha256=_vR_lKVTHrtPV7MVayr1_K7UHow6yA0WOwBeHeE7n0s,1
|
|
|
261
261
|
bpy/ops/script/__init__.pyi,sha256=vY47KMjOW-njjscvnqnLQjxTbPW4-vghTvMj5jzlmJU,1005
|
|
262
262
|
bpy/ops/sculpt/__init__.pyi,sha256=XHqe_RfXtQCIck6MvTyiH7qvKzLdQITWzOYOLaLjxJI,48095
|
|
263
263
|
bpy/ops/sculpt_curves/__init__.pyi,sha256=mx1sIk4zA2ValmxBpDXO6SJccf-Jpvb7y1pXaWX1EI0,2876
|
|
264
|
-
bpy/ops/sequencer/__init__.pyi,sha256=
|
|
264
|
+
bpy/ops/sequencer/__init__.pyi,sha256=1OIU7WQEQoXgqd1X-FDXQSwQLMSLehYgKDB-C-rVQl4,78308
|
|
265
265
|
bpy/ops/sound/__init__.pyi,sha256=1cAvk2eDLTyU2JrwXd5-AJfPHHFrbv35MZgaer7b6pc,16956
|
|
266
266
|
bpy/ops/spreadsheet/__init__.pyi,sha256=fUC1jInCBtYAyCryFHP_DIOt6pOopof5WxMIdOh1M_4,1387
|
|
267
267
|
bpy/ops/surface/__init__.pyi,sha256=tvTVuqkjV4znlQBD0F2E52tkGnYDttaPQl7sHwyaOSo,10342
|
|
@@ -279,7 +279,7 @@ bpy/ops/workspace/__init__.pyi,sha256=NdaJuwz3A-gStNuzp_OWR9DIj7oeSgLjn9SUEBLYuN
|
|
|
279
279
|
bpy/ops/world/__init__.pyi,sha256=9OhY87-WRRLor-4GQJhDiDJG3M9W5s9yFo9x45Iiycs,628
|
|
280
280
|
bpy/path/__init__.pyi,sha256=yGX45MUnn9fJYw32UWTsBQ646iN5DbbxfvnoDkREWvI,5537
|
|
281
281
|
bpy/props/__init__.pyi,sha256=4SYl5qfPLRwe3zGyHowQy_i_mU-gjImdiqidFOHP6Tc,35264
|
|
282
|
-
bpy/types/__init__.pyi,sha256=
|
|
282
|
+
bpy/types/__init__.pyi,sha256=G-cNi3XDxI8AlgGa4TUEKTdQD-cKofkSaZMmAvTEf78,5597835
|
|
283
283
|
bpy/utils/__init__.pyi,sha256=NwKl40t0SfvM2Lce9VmXS9zh6T-ZE1JxleSh9te_d5E,15351
|
|
284
284
|
bpy/utils/previews/__init__.pyi,sha256=Pji8UKqvI3AJTk5v3nCK92URlJfehxuoaaJW6n9L7XU,2342
|
|
285
285
|
bpy/utils/units/__init__.pyi,sha256=dc9ZViPAqOap5ZsFfWoI0d6bHdri3pWWiVeRxAaZr-U,2672
|
|
@@ -314,7 +314,7 @@ freestyle/functions/__init__.pyi,sha256=RGdlJWbBctqKBR3p81MsXBk9OWdTuvEoOfBXvxjf
|
|
|
314
314
|
freestyle/predicates/__init__.pyi,sha256=Liq_1krkT25RfeNPeEgvKWkLnWtHCuO9-7vXX3lE71E,13488
|
|
315
315
|
freestyle/shaders/__init__.pyi,sha256=imuo4jXkwaN4dazDARvErEGdn9XuMGlWIKGpnqd3Po0,24041
|
|
316
316
|
freestyle/types/__init__.pyi,sha256=zCVqLakrYPiSTlYVHLg-455C9aPCEo-eeO-0A1fYFYs,100227
|
|
317
|
-
freestyle/utils/__init__.pyi,sha256=
|
|
317
|
+
freestyle/utils/__init__.pyi,sha256=k2JFp4C3DUpnkVgR1B32ZDux08pAcsceSuWBnIEHD9A,5135
|
|
318
318
|
freestyle/utils/ContextFunctions/__init__.pyi,sha256=YvDLJXMxKbbqBS0so4MnfuSN1g4wNAFOXbpW7_g4AR0,3472
|
|
319
319
|
gpu/__init__.pyi,sha256=zVeZ4mRNYZyEgbp-j6uZ6ZQTpWFGh7j3R8UT9JOZ_0w,8026
|
|
320
320
|
gpu/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -361,7 +361,7 @@ rna_prop_ui/__init__.pyi,sha256=o3yE2C_BSi2O_ZJM_Jao06i6seWMRNQcZaI6keKjpFE,1308
|
|
|
361
361
|
rna_prop_ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
362
362
|
rna_xml/__init__.pyi,sha256=EBP-inpL9KRsjGftcoza9_G_Do5UjXw62eAvuEMoaO0,604
|
|
363
363
|
rna_xml/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
364
|
-
fake_bpy_module-
|
|
365
|
-
fake_bpy_module-
|
|
366
|
-
fake_bpy_module-
|
|
367
|
-
fake_bpy_module-
|
|
364
|
+
fake_bpy_module-20250501.dist-info/METADATA,sha256=y5867qZmx0BXAZ_L38ibFdHiZ4Gp18GIj8oKen3kWOQ,7429
|
|
365
|
+
fake_bpy_module-20250501.dist-info/WHEEL,sha256=wXxTzcEDnjrTwFYjLPcsW_7_XihufBwmpiBeiXNBGEA,91
|
|
366
|
+
fake_bpy_module-20250501.dist-info/top_level.txt,sha256=SZm3DVRKif7dFSjYKiIIg3_7uqjIwRAwOnCIcT4hRNM,500
|
|
367
|
+
fake_bpy_module-20250501.dist-info/RECORD,,
|
freestyle/utils/__init__.pyi
CHANGED
|
@@ -125,7 +125,7 @@ def material_from_fedge(fe):
|
|
|
125
125
|
"""get the diffuse RGBA color from an FEdge"""
|
|
126
126
|
|
|
127
127
|
def normal_at_I0D(it): ...
|
|
128
|
-
def pairwise(iterable, types={
|
|
128
|
+
def pairwise(iterable, types={StrokeVertexIterator, Stroke}):
|
|
129
129
|
"""Yields a tuple containing the previous and current object"""
|
|
130
130
|
|
|
131
131
|
def rgb_to_bw(r, g, b):
|
|
File without changes
|