fake-bpy-module 20250904__py3-none-any.whl → 20250906__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.
- aud/__init__.pyi +11 -11
- bl_ui/properties_paint_common/__init__.pyi +0 -9
- bl_ui/properties_render/__init__.pyi +31 -0
- bl_ui/space_sequencer/__init__.pyi +1 -0
- bl_ui/space_toolsystem_toolbar/__init__.pyi +2 -0
- bl_ui/space_userpref/__init__.pyi +36 -0
- bl_ui/space_view3d/__init__.pyi +0 -9
- bl_ui/space_view3d_toolbar/__init__.pyi +11 -609
- bmesh/types/__init__.pyi +9 -9
- bpy/ops/armature/__init__.pyi +3 -0
- bpy/ops/poselib/__init__.pyi +0 -3
- bpy/ops/sequencer/__init__.pyi +75 -0
- bpy/ops/wm/__init__.pyi +18 -0
- bpy/types/__init__.pyi +698 -369
- {fake_bpy_module-20250904.dist-info → fake_bpy_module-20250906.dist-info}/METADATA +1 -1
- {fake_bpy_module-20250904.dist-info → fake_bpy_module-20250906.dist-info}/RECORD +21 -21
- freestyle/types/__init__.pyi +2 -2
- idprop/types/__init__.pyi +1 -1
- mathutils/__init__.pyi +28 -0
- {fake_bpy_module-20250904.dist-info → fake_bpy_module-20250906.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20250904.dist-info → fake_bpy_module-20250906.dist-info}/top_level.txt +0 -0
aud/__init__.pyi
CHANGED
|
@@ -78,13 +78,13 @@ This factor is a scaling factor for the velocity vectors in doppler calculation.
|
|
|
78
78
|
""" The native sample format of the device."""
|
|
79
79
|
|
|
80
80
|
listener_location: typing.Any
|
|
81
|
-
""" The
|
|
81
|
+
""" The listeners's location in 3D space, a 3D tuple of floats."""
|
|
82
82
|
|
|
83
83
|
listener_orientation: typing.Any
|
|
84
|
-
""" The
|
|
84
|
+
""" The listener's orientation in 3D space as quaternion, a 4 float tuple."""
|
|
85
85
|
|
|
86
86
|
listener_velocity: typing.Any
|
|
87
|
-
""" The
|
|
87
|
+
""" The listener's velocity in 3D space, a 3D tuple of floats."""
|
|
88
88
|
|
|
89
89
|
rate: typing.Any
|
|
90
90
|
""" The sampling rate of the device in Hz."""
|
|
@@ -233,7 +233,7 @@ class Handle:
|
|
|
233
233
|
""" This factor is used for distance based attenuation of the source.:attr:`Device.distance_model`"""
|
|
234
234
|
|
|
235
235
|
cone_angle_inner: typing.Any
|
|
236
|
-
""" The opening angle of the inner cone of the source. If the cone values of a source are set there are two (audible) cones with the apex at the `location` of the source and with infinite height, heading in the direction of the
|
|
236
|
+
""" The opening angle of the inner cone of the source. If the cone values of a source are set there are two (audible) cones with the apex at the `location` of the source and with infinite height, heading in the direction of the source's `orientation`.
|
|
237
237
|
In the inner cone the volume is normal. Outside the outer cone the volume will be `cone_volume_outer` and in the area between the volume will be interpolated linearly."""
|
|
238
238
|
|
|
239
239
|
cone_angle_outer: typing.Any
|
|
@@ -255,13 +255,13 @@ At this distance the volume will be exactly `volume`.:attr:`Device.distance_mode
|
|
|
255
255
|
This can be used to seek the sound to some position and start playback again."""
|
|
256
256
|
|
|
257
257
|
location: typing.Any
|
|
258
|
-
""" The
|
|
258
|
+
""" The source's location in 3D space, a 3D tuple of floats."""
|
|
259
259
|
|
|
260
260
|
loop_count: typing.Any
|
|
261
261
|
""" The (remaining) loop count of the sound. A negative value indicates infinity."""
|
|
262
262
|
|
|
263
263
|
orientation: typing.Any
|
|
264
|
-
""" The
|
|
264
|
+
""" The source's orientation in 3D space as quaternion, a 4 float tuple."""
|
|
265
265
|
|
|
266
266
|
pitch: typing.Any
|
|
267
267
|
""" The pitch of the sound."""
|
|
@@ -270,13 +270,13 @@ This can be used to seek the sound to some position and start playback again."""
|
|
|
270
270
|
""" The playback position of the sound in seconds."""
|
|
271
271
|
|
|
272
272
|
relative: typing.Any
|
|
273
|
-
""" Whether the
|
|
273
|
+
""" Whether the source's location, velocity and orientation is relative or absolute to the listener."""
|
|
274
274
|
|
|
275
275
|
status: typing.Any
|
|
276
276
|
""" Whether the sound is playing, paused or stopped (=invalid)."""
|
|
277
277
|
|
|
278
278
|
velocity: typing.Any
|
|
279
|
-
""" The
|
|
279
|
+
""" The source's velocity in 3D space, a 3D tuple of floats."""
|
|
280
280
|
|
|
281
281
|
volume: typing.Any
|
|
282
282
|
""" The volume of the sound."""
|
|
@@ -399,7 +399,7 @@ class Sequence:
|
|
|
399
399
|
This factor is a scaling factor for the velocity vectors in doppler calculation. So a value bigger than 1 will exaggerate the effect as it raises the velocity."""
|
|
400
400
|
|
|
401
401
|
fps: typing.Any
|
|
402
|
-
""" The
|
|
402
|
+
""" The listeners's location in 3D space, a 3D tuple of floats."""
|
|
403
403
|
|
|
404
404
|
muted: typing.Any
|
|
405
405
|
""" Whether the whole sequence is muted."""
|
|
@@ -431,7 +431,7 @@ class SequenceEntry:
|
|
|
431
431
|
""" This factor is used for distance based attenuation of the source.:attr:`Device.distance_model`"""
|
|
432
432
|
|
|
433
433
|
cone_angle_inner: typing.Any
|
|
434
|
-
""" The opening angle of the inner cone of the source. If the cone values of a source are set there are two (audible) cones with the apex at the `location` of the source and with infinite height, heading in the direction of the
|
|
434
|
+
""" The opening angle of the inner cone of the source. If the cone values of a source are set there are two (audible) cones with the apex at the `location` of the source and with infinite height, heading in the direction of the source's `orientation`.
|
|
435
435
|
In the inner cone the volume is normal. Outside the outer cone the volume will be `cone_volume_outer` and in the area between the volume will be interpolated linearly."""
|
|
436
436
|
|
|
437
437
|
cone_angle_outer: typing.Any
|
|
@@ -452,7 +452,7 @@ At this distance the volume will be exactly `volume`.:attr:`Device.distance_mode
|
|
|
452
452
|
""" Whether the entry is muted."""
|
|
453
453
|
|
|
454
454
|
relative: typing.Any
|
|
455
|
-
""" Whether the
|
|
455
|
+
""" Whether the source's location, velocity and orientation is relative or absolute to the listener."""
|
|
456
456
|
|
|
457
457
|
sound: typing.Any
|
|
458
458
|
""" The sound the entry is representing and will be played in the sequence."""
|
|
@@ -342,18 +342,9 @@ class TextureMaskPanel(BrushPanel):
|
|
|
342
342
|
"""
|
|
343
343
|
|
|
344
344
|
def brush_basic__draw_color_selector(context, layout, brush, gp_settings) -> None: ...
|
|
345
|
-
def brush_basic_gpencil_paint_settings(
|
|
346
|
-
layout, context, brush, *, compact=False
|
|
347
|
-
) -> None: ...
|
|
348
|
-
def brush_basic_gpencil_sculpt_settings(
|
|
349
|
-
layout, _context, brush, *, compact=False
|
|
350
|
-
) -> None: ...
|
|
351
345
|
def brush_basic_gpencil_vertex_settings(
|
|
352
346
|
layout, context, brush, *, compact=False
|
|
353
347
|
) -> None: ...
|
|
354
|
-
def brush_basic_gpencil_weight_settings(
|
|
355
|
-
layout, _context, brush, *, compact=False
|
|
356
|
-
) -> None: ...
|
|
357
348
|
def brush_basic_grease_pencil_paint_settings(
|
|
358
349
|
layout, context, brush, props, *, compact=False
|
|
359
350
|
) -> None: ...
|
|
@@ -162,6 +162,37 @@ class RENDER_PT_color_management_white_balance_presets(
|
|
|
162
162
|
:rtype: typing.Any
|
|
163
163
|
"""
|
|
164
164
|
|
|
165
|
+
class RENDER_PT_color_management_working_space(RenderButtonsPanel, _bpy_types.Panel):
|
|
166
|
+
COMPAT_ENGINES: typing.Any
|
|
167
|
+
bl_context: typing.Any
|
|
168
|
+
bl_label: typing.Any
|
|
169
|
+
bl_options: typing.Any
|
|
170
|
+
bl_parent_id: typing.Any
|
|
171
|
+
bl_region_type: typing.Any
|
|
172
|
+
bl_rna: typing.Any
|
|
173
|
+
bl_space_type: typing.Any
|
|
174
|
+
id_data: typing.Any
|
|
175
|
+
|
|
176
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
177
|
+
"""
|
|
178
|
+
|
|
179
|
+
:return: The RNA type or default when not found.
|
|
180
|
+
:rtype: bpy.types.Struct
|
|
181
|
+
"""
|
|
182
|
+
|
|
183
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
184
|
+
"""
|
|
185
|
+
|
|
186
|
+
:return: The class or default when not found.
|
|
187
|
+
:rtype: typing.Any
|
|
188
|
+
"""
|
|
189
|
+
|
|
190
|
+
def draw(self, context) -> None:
|
|
191
|
+
"""
|
|
192
|
+
|
|
193
|
+
:param context:
|
|
194
|
+
"""
|
|
195
|
+
|
|
165
196
|
class RENDER_PT_context(_bpy_types.Panel):
|
|
166
197
|
bl_context: typing.Any
|
|
167
198
|
bl_label: typing.Any
|
|
@@ -1888,6 +1888,7 @@ class SEQUENCER_PT_mask(SequencerButtonsPanel, _bpy_types.Panel):
|
|
|
1888
1888
|
class SEQUENCER_PT_modifiers(SequencerButtonsPanel, _bpy_types.Panel):
|
|
1889
1889
|
bl_category: typing.Any
|
|
1890
1890
|
bl_label: typing.Any
|
|
1891
|
+
bl_options: typing.Any
|
|
1891
1892
|
bl_region_type: typing.Any
|
|
1892
1893
|
bl_rna: typing.Any
|
|
1893
1894
|
bl_space_type: typing.Any
|
|
@@ -1445,6 +1445,42 @@ class USERPREF_PT_input_touchpad(CenterAlignMixIn, InputPanel, _bpy_types.Panel)
|
|
|
1445
1445
|
:param context:
|
|
1446
1446
|
"""
|
|
1447
1447
|
|
|
1448
|
+
class USERPREF_PT_interface_accessibility(
|
|
1449
|
+
CenterAlignMixIn, InterfacePanel, _bpy_types.Panel
|
|
1450
|
+
):
|
|
1451
|
+
"""Base class for panels to center align contents with some horizontal margin.
|
|
1452
|
+
Deriving classes need to implement a draw_centered(context, layout) function.
|
|
1453
|
+
"""
|
|
1454
|
+
|
|
1455
|
+
bl_context: typing.Any
|
|
1456
|
+
bl_label: typing.Any
|
|
1457
|
+
bl_options: typing.Any
|
|
1458
|
+
bl_region_type: typing.Any
|
|
1459
|
+
bl_rna: typing.Any
|
|
1460
|
+
bl_space_type: typing.Any
|
|
1461
|
+
id_data: typing.Any
|
|
1462
|
+
|
|
1463
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
1464
|
+
"""
|
|
1465
|
+
|
|
1466
|
+
:return: The RNA type or default when not found.
|
|
1467
|
+
:rtype: bpy.types.Struct
|
|
1468
|
+
"""
|
|
1469
|
+
|
|
1470
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1471
|
+
"""
|
|
1472
|
+
|
|
1473
|
+
:return: The class or default when not found.
|
|
1474
|
+
:rtype: typing.Any
|
|
1475
|
+
"""
|
|
1476
|
+
|
|
1477
|
+
def draw_centered(self, context, layout) -> None:
|
|
1478
|
+
"""
|
|
1479
|
+
|
|
1480
|
+
:param context:
|
|
1481
|
+
:param layout:
|
|
1482
|
+
"""
|
|
1483
|
+
|
|
1448
1484
|
class USERPREF_PT_interface_display(CenterAlignMixIn, InterfacePanel, _bpy_types.Panel):
|
|
1449
1485
|
"""Base class for panels to center align contents with some horizontal margin.
|
|
1450
1486
|
Deriving classes need to implement a draw_centered(context, layout) function.
|
bl_ui/space_view3d/__init__.pyi
CHANGED
|
@@ -7168,15 +7168,6 @@ class _draw_tool_settings_context_mode:
|
|
|
7168
7168
|
:param tool:
|
|
7169
7169
|
"""
|
|
7170
7170
|
|
|
7171
|
-
@staticmethod
|
|
7172
|
-
def WEIGHT_GPENCIL(context, layout, tool) -> None:
|
|
7173
|
-
"""
|
|
7174
|
-
|
|
7175
|
-
:param context:
|
|
7176
|
-
:param layout:
|
|
7177
|
-
:param tool:
|
|
7178
|
-
"""
|
|
7179
|
-
|
|
7180
7171
|
@staticmethod
|
|
7181
7172
|
def WEIGHT_GREASE_PENCIL(context, layout, tool) -> None:
|
|
7182
7173
|
"""
|