fake-bpy-module 20240207__py3-none-any.whl → 20240208__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_console_utils/autocomplete/__init__.pyi +2 -2
- bl_i18n_utils/__init__.pyi +4 -4
- bl_keymap_utils/__init__.pyi +1 -1
- bl_operators/__init__.pyi +21 -21
- bl_operators/presets/__init__.pyi +37 -0
- bl_ui/__init__.pyi +60 -60
- bl_ui/node_add_menu_compositor/__init__.pyi +1 -0
- bl_ui/node_add_menu_geometry/__init__.pyi +49 -0
- bl_ui/properties_data_grease_pencil/__init__.pyi +93 -0
- bl_ui/properties_view_layer/__init__.pyi +41 -0
- bl_ui/space_clip/__init__.pyi +2 -1
- bl_ui/space_nla/__init__.pyi +1 -0
- bl_ui/space_view3d/__init__.pyi +2 -1
- bl_ui_utils/__init__.pyi +1 -1
- bmesh/__init__.pyi +1 -1
- bpy/__init__.pyi +2 -2
- bpy/app/__init__.pyi +1 -1
- bpy/ops/__init__.pyi +64 -64
- bpy/ops/camera/__init__.pyi +2 -2
- bpy/ops/clip/__init__.pyi +3 -3
- bpy/ops/cloth/__init__.pyi +1 -1
- bpy/ops/fluid/__init__.pyi +1 -1
- bpy/ops/grease_pencil/__init__.pyi +20 -0
- bpy/ops/mesh/__init__.pyi +23 -0
- bpy/ops/node/__init__.pyi +1 -1
- bpy/ops/particle/__init__.pyi +1 -1
- bpy/ops/preferences/__init__.pyi +60 -28
- bpy/ops/render/__init__.pyi +6 -6
- bpy/ops/scene/__init__.pyi +2 -2
- bpy/ops/script/__init__.pyi +1 -1
- bpy/ops/text_editor/__init__.pyi +1 -1
- bpy/ops/wm/__init__.pyi +29 -4
- bpy/types/__init__.pyi +165 -71
- bpy_extras/__init__.pyi +7 -7
- bpy_extras/anim_utils/__init__.pyi +2 -2
- {fake_bpy_module-20240207.dist-info → fake_bpy_module-20240208.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240207.dist-info → fake_bpy_module-20240208.dist-info}/RECORD +42 -42
- freestyle/__init__.pyi +3 -3
- gpu/__init__.pyi +4 -4
- mathutils/__init__.pyi +2 -2
- {fake_bpy_module-20240207.dist-info → fake_bpy_module-20240208.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240207.dist-info → fake_bpy_module-20240208.dist-info}/top_level.txt +0 -0
bpy/ops/scene/__init__.pyi
CHANGED
|
@@ -425,7 +425,7 @@ def gpencil_brush_preset_add(
|
|
|
425
425
|
remove_name: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
426
426
|
remove_active: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
427
427
|
):
|
|
428
|
-
"""Add or remove grease pencil brush preset :File: `startup/bl_operators/presets.py\:
|
|
428
|
+
"""Add or remove grease pencil brush preset :File: `startup/bl_operators/presets.py\:77 <https://projects.blender.org/blender/blender/src/branch/main/scripts/startup/bl_operators/presets.py#L77>`__
|
|
429
429
|
|
|
430
430
|
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
431
431
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
@@ -451,7 +451,7 @@ def gpencil_material_preset_add(
|
|
|
451
451
|
remove_name: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
452
452
|
remove_active: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
453
453
|
):
|
|
454
|
-
"""Add or remove grease pencil material preset :File: `startup/bl_operators/presets.py\:
|
|
454
|
+
"""Add or remove grease pencil material preset :File: `startup/bl_operators/presets.py\:77 <https://projects.blender.org/blender/blender/src/branch/main/scripts/startup/bl_operators/presets.py#L77>`__
|
|
455
455
|
|
|
456
456
|
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
457
457
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
bpy/ops/script/__init__.pyi
CHANGED
|
@@ -14,7 +14,7 @@ def execute_preset(
|
|
|
14
14
|
filepath: typing.Union[str, typing.Any] = "",
|
|
15
15
|
menu_idname: typing.Union[str, typing.Any] = "",
|
|
16
16
|
):
|
|
17
|
-
"""Load a preset :File: `startup/bl_operators/presets.py\:
|
|
17
|
+
"""Load a preset :File: `startup/bl_operators/presets.py\:235 <https://projects.blender.org/blender/blender/src/branch/main/scripts/startup/bl_operators/presets.py#L235>`__
|
|
18
18
|
|
|
19
19
|
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
20
20
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
bpy/ops/text_editor/__init__.pyi
CHANGED
|
@@ -15,7 +15,7 @@ def preset_add(
|
|
|
15
15
|
remove_name: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
16
16
|
remove_active: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
17
17
|
):
|
|
18
|
-
"""Add or remove a Text Editor Preset :File: `startup/bl_operators/presets.py\:
|
|
18
|
+
"""Add or remove a Text Editor Preset :File: `startup/bl_operators/presets.py\:77 <https://projects.blender.org/blender/blender/src/branch/main/scripts/startup/bl_operators/presets.py#L77>`__
|
|
19
19
|
|
|
20
20
|
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
21
21
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
bpy/ops/wm/__init__.pyi
CHANGED
|
@@ -1341,7 +1341,7 @@ def drop_blend_file(
|
|
|
1341
1341
|
*,
|
|
1342
1342
|
filepath: typing.Union[str, typing.Any] = "",
|
|
1343
1343
|
):
|
|
1344
|
-
"""Undocumented, consider `contributing <https://developer.blender.org/>`__. :File: `startup/bl_operators/wm.py\:
|
|
1344
|
+
"""Undocumented, consider `contributing <https://developer.blender.org/>`__. :File: `startup/bl_operators/wm.py\:3510 <https://projects.blender.org/blender/blender/src/branch/main/scripts/startup/bl_operators/wm.py#L3510>`__
|
|
1345
1345
|
|
|
1346
1346
|
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
1347
1347
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
@@ -1684,7 +1684,7 @@ def interface_theme_preset_add(
|
|
|
1684
1684
|
remove_name: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
1685
1685
|
remove_active: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
1686
1686
|
):
|
|
1687
|
-
"""Add or remove a theme preset :File: `startup/bl_operators/presets.py\:
|
|
1687
|
+
"""Add or remove a theme preset :File: `startup/bl_operators/presets.py\:77 <https://projects.blender.org/blender/blender/src/branch/main/scripts/startup/bl_operators/presets.py#L77>`__
|
|
1688
1688
|
|
|
1689
1689
|
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
1690
1690
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
@@ -1710,7 +1710,7 @@ def keyconfig_preset_add(
|
|
|
1710
1710
|
remove_name: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
1711
1711
|
remove_active: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
1712
1712
|
):
|
|
1713
|
-
"""Add or remove a Key-config Preset :File: `startup/bl_operators/presets.py\:
|
|
1713
|
+
"""Add or remove a Key-config Preset :File: `startup/bl_operators/presets.py\:77 <https://projects.blender.org/blender/blender/src/branch/main/scripts/startup/bl_operators/presets.py#L77>`__
|
|
1714
1714
|
|
|
1715
1715
|
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
1716
1716
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
@@ -2498,7 +2498,7 @@ def operator_preset_add(
|
|
|
2498
2498
|
remove_active: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
2499
2499
|
operator: typing.Union[str, typing.Any] = "",
|
|
2500
2500
|
):
|
|
2501
|
-
"""Add or remove an Operator Preset :File: `startup/bl_operators/presets.py\:
|
|
2501
|
+
"""Add or remove an Operator Preset :File: `startup/bl_operators/presets.py\:77 <https://projects.blender.org/blender/blender/src/branch/main/scripts/startup/bl_operators/presets.py#L77>`__
|
|
2502
2502
|
|
|
2503
2503
|
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
2504
2504
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
@@ -2515,6 +2515,31 @@ def operator_preset_add(
|
|
|
2515
2515
|
|
|
2516
2516
|
...
|
|
2517
2517
|
|
|
2518
|
+
def operator_presets_cleanup(
|
|
2519
|
+
override_context: typing.Optional[
|
|
2520
|
+
typing.Union[typing.Dict, "bpy.types.Context"]
|
|
2521
|
+
] = None,
|
|
2522
|
+
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
2523
|
+
undo: typing.Optional[bool] = None,
|
|
2524
|
+
*,
|
|
2525
|
+
operator: typing.Union[str, typing.Any] = "",
|
|
2526
|
+
properties: typing.Optional[
|
|
2527
|
+
bpy.types.bpy_prop_collection["bpy.types.OperatorFileListElement"]
|
|
2528
|
+
] = None,
|
|
2529
|
+
):
|
|
2530
|
+
"""Remove outdated operator properties from presets that may cause problems :File: `startup/bl_operators/presets.py\:696 <https://projects.blender.org/blender/blender/src/branch/main/scripts/startup/bl_operators/presets.py#L696>`__
|
|
2531
|
+
|
|
2532
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
2533
|
+
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
2534
|
+
:type undo: typing.Optional[bool]
|
|
2535
|
+
:param operator: operator
|
|
2536
|
+
:type operator: typing.Union[str, typing.Any]
|
|
2537
|
+
:param properties: properties
|
|
2538
|
+
:type properties: typing.Optional[bpy.types.bpy_prop_collection['bpy.types.OperatorFileListElement']]
|
|
2539
|
+
"""
|
|
2540
|
+
|
|
2541
|
+
...
|
|
2542
|
+
|
|
2518
2543
|
def owner_disable(
|
|
2519
2544
|
override_context: typing.Optional[
|
|
2520
2545
|
typing.Union[typing.Dict, "bpy.types.Context"]
|
bpy/types/__init__.pyi
CHANGED
|
@@ -2,94 +2,94 @@ import sys
|
|
|
2
2
|
import typing
|
|
3
3
|
import mathutils
|
|
4
4
|
import bpy
|
|
5
|
-
import bl_ui.
|
|
5
|
+
import bl_ui.space_view3d_toolbar
|
|
6
|
+
import bl_ui.properties_material_gpencil
|
|
7
|
+
import bl_ui
|
|
8
|
+
import bl_ui.space_text
|
|
9
|
+
import bl_operators.anim
|
|
10
|
+
import bl_ui.space_view3d
|
|
11
|
+
import bl_ui.generic_ui_list
|
|
12
|
+
import bl_ui.space_toolsystem_common
|
|
13
|
+
import bl_ui.properties_object
|
|
14
|
+
import bl_ui.properties_data_curves
|
|
15
|
+
import bl_ui.properties_physics_field
|
|
16
|
+
import bl_ui.properties_data_mesh
|
|
17
|
+
import bl_ui.properties_data_lattice
|
|
6
18
|
import bl_ui.space_toolsystem_toolbar
|
|
7
19
|
import bl_ui.space_node
|
|
8
|
-
import
|
|
9
|
-
import bl_ui.properties_data_empty
|
|
10
|
-
import bl_ui.properties_data_armature
|
|
11
|
-
import bl_ui.space_userpref
|
|
12
|
-
import bl_ui.space_info
|
|
20
|
+
import bl_operators.view3d
|
|
13
21
|
import bl_ui.properties_world
|
|
14
|
-
import bl_ui.generic_ui_list
|
|
15
|
-
import bl_ui.properties_material
|
|
16
|
-
import bl_ui.space_graph
|
|
17
|
-
import bl_ui.properties_scene
|
|
18
|
-
import bl_ui.properties_data_lightprobe
|
|
19
|
-
import bl_operators.anim
|
|
20
|
-
import bl_ui.asset_shelf
|
|
21
|
-
import bl_ui.properties_data_bone
|
|
22
22
|
import bl_ui.node_add_menu
|
|
23
|
-
import bl_ui.
|
|
24
|
-
import bl_ui.
|
|
25
|
-
import bl_ui.properties_render
|
|
26
|
-
import bl_ui.properties_data_speaker
|
|
27
|
-
import bl_operators.object
|
|
28
|
-
import bl_ui.properties_particle
|
|
29
|
-
import bl_ui.properties_object
|
|
30
|
-
import bl_ui.properties_data_gpencil
|
|
31
|
-
import bl_ui.properties_physics_softbody
|
|
23
|
+
import bl_ui.properties_freestyle
|
|
24
|
+
import bl_ui.properties_data_armature
|
|
32
25
|
import bl_ui.space_dopesheet
|
|
33
|
-
import bl_ui.
|
|
26
|
+
import bl_ui.properties_data_shaderfx
|
|
27
|
+
import bl_ui.properties_data_bone
|
|
28
|
+
import bl_ui.properties_physics_rigidbody
|
|
29
|
+
import bl_ui.space_graph
|
|
30
|
+
import bl_ui.properties_scene
|
|
34
31
|
import bl_ui.space_properties
|
|
35
32
|
import bl_ui.properties_data_metaball
|
|
36
|
-
import
|
|
37
|
-
import bl_ui.space_nla
|
|
38
|
-
import bl_ui.properties_physics_dynamicpaint
|
|
39
|
-
import bl_operators.view3d
|
|
40
|
-
import bl_ui.properties_data_camera
|
|
33
|
+
import bl_ui.properties_physics_geometry_nodes
|
|
41
34
|
import bl_operators.userpref
|
|
42
|
-
import
|
|
35
|
+
import bl_operators.presets
|
|
43
36
|
import bl_ui.space_statusbar
|
|
44
|
-
import bl_ui.
|
|
37
|
+
import bl_ui.properties_workspace
|
|
38
|
+
import bl_ui.properties_collection
|
|
39
|
+
import bl_ui.properties_texture
|
|
40
|
+
import bl_ui.properties_physics_common
|
|
41
|
+
import bl_ui.space_filebrowser
|
|
42
|
+
import bl_ui.asset_shelf
|
|
43
|
+
import bl_ui.space_topbar
|
|
44
|
+
import bl_operators.wm
|
|
45
|
+
import bl_ui.properties_material
|
|
45
46
|
import bl_ui.anim
|
|
46
|
-
import
|
|
47
|
-
import bl_ui.
|
|
48
|
-
import bl_ui.
|
|
47
|
+
import bl_operators.object
|
|
48
|
+
import bl_ui.properties_output
|
|
49
|
+
import bl_ui.properties_grease_pencil_common
|
|
50
|
+
import bl_ui.properties_particle
|
|
51
|
+
import bl_operators.freestyle
|
|
52
|
+
import bl_ui.properties_data_curve
|
|
49
53
|
import bl_ui.node_add_menu_texture
|
|
50
|
-
import
|
|
51
|
-
import bl_ui.
|
|
52
|
-
import
|
|
54
|
+
import bl_operators.spreadsheet
|
|
55
|
+
import bl_ui.properties_data_gpencil
|
|
56
|
+
import bl_operators.file
|
|
57
|
+
import bl_ui.properties_physics_cloth
|
|
58
|
+
import bl_ui.properties_data_volume
|
|
59
|
+
import bl_ui.space_info
|
|
60
|
+
import bl_ui.properties_view_layer
|
|
53
61
|
import bl_operators.node
|
|
62
|
+
import bl_ui.properties_data_speaker
|
|
63
|
+
import bl_ui.node_add_menu_shader
|
|
64
|
+
import bl_ui.node_add_menu_geometry
|
|
65
|
+
import bl_ui.properties_data_lightprobe
|
|
66
|
+
import bl_ui.space_clip
|
|
67
|
+
import bl_ui.properties_physics_softbody
|
|
54
68
|
import bl_operators.clip
|
|
55
|
-
import bl_ui.
|
|
56
|
-
import bl_ui.
|
|
69
|
+
import bl_ui.properties_constraint
|
|
70
|
+
import bl_ui.space_outliner
|
|
57
71
|
import bl_ui.properties_physics_rigidbody_constraint
|
|
58
|
-
import bl_ui.
|
|
59
|
-
import bl_ui.
|
|
60
|
-
import bl_operators.
|
|
61
|
-
import bl_ui.properties_physics_fluid
|
|
62
|
-
import bl_ui
|
|
63
|
-
import bl_ui.properties_material_gpencil
|
|
72
|
+
import bl_ui.properties_data_grease_pencil
|
|
73
|
+
import bl_ui.properties_data_empty
|
|
74
|
+
import bl_operators.constraint
|
|
64
75
|
import bl_ui.space_time
|
|
65
|
-
import bl_ui.properties_output
|
|
66
76
|
import bl_operators.assets
|
|
67
|
-
import bl_ui.
|
|
68
|
-
import
|
|
77
|
+
import bl_ui.space_console
|
|
78
|
+
import bl_ui.space_userpref
|
|
79
|
+
import bl_ui.node_add_menu_compositor
|
|
80
|
+
import bl_ui.properties_data_camera
|
|
81
|
+
import bl_ui.properties_data_light
|
|
69
82
|
import bl_ui.properties_paint_common
|
|
70
|
-
import bl_ui.properties_mask_common
|
|
71
|
-
import bl_ui.node_add_menu_shader
|
|
72
|
-
import bl_ui.properties_data_lattice
|
|
73
|
-
import bl_ui.properties_data_curve
|
|
74
|
-
import bl_ui.space_toolsystem_common
|
|
75
|
-
import bl_ui.properties_texture
|
|
76
83
|
import bl_ui.properties_data_pointcloud
|
|
84
|
+
import bl_ui.properties_render
|
|
85
|
+
import bl_ui.space_image
|
|
86
|
+
import bl_ui.properties_physics_dynamicpaint
|
|
87
|
+
import bl_ui.properties_physics_fluid
|
|
77
88
|
import bl_ui.space_sequencer
|
|
78
|
-
import bl_ui.
|
|
79
|
-
import bl_ui.
|
|
80
|
-
import bl_ui.
|
|
81
|
-
import bl_ui.
|
|
82
|
-
import bl_operators.wm
|
|
83
|
-
import bl_ui.properties_physics_geometry_nodes
|
|
84
|
-
import bl_ui.space_text
|
|
85
|
-
import bl_ui.space_outliner
|
|
86
|
-
import bl_ui.properties_data_grease_pencil
|
|
87
|
-
import bl_ui.properties_data_mesh
|
|
88
|
-
import bl_ui.space_filebrowser
|
|
89
|
-
import bl_operators.presets
|
|
90
|
-
import bl_ui.properties_physics_cloth
|
|
91
|
-
import bl_ui.space_clip
|
|
92
|
-
import bl_operators.file
|
|
89
|
+
import bl_ui.properties_data_modifier
|
|
90
|
+
import bl_ui.space_spreadsheet
|
|
91
|
+
import bl_ui.space_nla
|
|
92
|
+
import bl_ui.properties_mask_common
|
|
93
93
|
|
|
94
94
|
GenericType = typing.TypeVar("GenericType")
|
|
95
95
|
|
|
@@ -878,6 +878,12 @@ class AnimViz(bpy_struct):
|
|
|
878
878
|
class AnimVizMotionPaths(bpy_struct):
|
|
879
879
|
"""Motion Path settings for animation visualization"""
|
|
880
880
|
|
|
881
|
+
bake_in_camera_space: bool
|
|
882
|
+
""" Motion path points will be baked into the camera space of the active camera. This means they will only look right when looking through that camera. Switching cameras using markers is not supported
|
|
883
|
+
|
|
884
|
+
:type: bool
|
|
885
|
+
"""
|
|
886
|
+
|
|
881
887
|
bake_location: typing.Union[str, int]
|
|
882
888
|
""" When calculating Bone Paths, use Head or Tips
|
|
883
889
|
|
|
@@ -15502,6 +15508,42 @@ class GreasePencilLayer(bpy_struct):
|
|
|
15502
15508
|
:type: float
|
|
15503
15509
|
"""
|
|
15504
15510
|
|
|
15511
|
+
parent: "Object"
|
|
15512
|
+
""" Parent object
|
|
15513
|
+
|
|
15514
|
+
:type: 'Object'
|
|
15515
|
+
"""
|
|
15516
|
+
|
|
15517
|
+
parent_bone: typing.Union[str, typing.Any]
|
|
15518
|
+
""" Name of parent bone. Only used when the parent object is an armature
|
|
15519
|
+
|
|
15520
|
+
:type: typing.Union[str, typing.Any]
|
|
15521
|
+
"""
|
|
15522
|
+
|
|
15523
|
+
rotation: typing.Union[
|
|
15524
|
+
typing.List[float], typing.Tuple[float, float, float], "mathutils.Euler"
|
|
15525
|
+
]
|
|
15526
|
+
""" Euler rotation of the layer
|
|
15527
|
+
|
|
15528
|
+
:type: typing.Union[typing.List[float], typing.Tuple[float, float, float], 'mathutils.Euler']
|
|
15529
|
+
"""
|
|
15530
|
+
|
|
15531
|
+
scale: typing.Union[
|
|
15532
|
+
typing.List[float], typing.Tuple[float, float, float], "mathutils.Vector"
|
|
15533
|
+
]
|
|
15534
|
+
""" Scale of the layer
|
|
15535
|
+
|
|
15536
|
+
:type: typing.Union[typing.List[float], typing.Tuple[float, float, float], 'mathutils.Vector']
|
|
15537
|
+
"""
|
|
15538
|
+
|
|
15539
|
+
translation: typing.Union[
|
|
15540
|
+
typing.List[float], typing.Tuple[float, float, float], "mathutils.Vector"
|
|
15541
|
+
]
|
|
15542
|
+
""" Translation of the layer
|
|
15543
|
+
|
|
15544
|
+
:type: typing.Union[typing.List[float], typing.Tuple[float, float, float], 'mathutils.Vector']
|
|
15545
|
+
"""
|
|
15546
|
+
|
|
15505
15547
|
use_onion_skinning: bool
|
|
15506
15548
|
""" Display onion skins before and after the current frame
|
|
15507
15549
|
|
|
@@ -19690,6 +19732,12 @@ class Modifier(bpy_struct):
|
|
|
19690
19732
|
:type: typing.Union[str, typing.Any]
|
|
19691
19733
|
"""
|
|
19692
19734
|
|
|
19735
|
+
persistent_uid: int
|
|
19736
|
+
""" Uniquely identifies the modifier within the modifier stack that it is part of
|
|
19737
|
+
|
|
19738
|
+
:type: int
|
|
19739
|
+
"""
|
|
19740
|
+
|
|
19693
19741
|
show_expanded: bool
|
|
19694
19742
|
""" Set modifier expanded in the user interface
|
|
19695
19743
|
|
|
@@ -27937,12 +27985,18 @@ class Property(bpy_struct):
|
|
|
27937
27985
|
:type: typing.Union[bool, typing.Any]
|
|
27938
27986
|
"""
|
|
27939
27987
|
|
|
27940
|
-
|
|
27988
|
+
is_skip_preset: typing.Union[bool, typing.Any]
|
|
27941
27989
|
""" True when the property is not saved in presets
|
|
27942
27990
|
|
|
27943
27991
|
:type: typing.Union[bool, typing.Any]
|
|
27944
27992
|
"""
|
|
27945
27993
|
|
|
27994
|
+
is_skip_save: typing.Union[bool, typing.Any]
|
|
27995
|
+
""" True when the property uses ghost values
|
|
27996
|
+
|
|
27997
|
+
:type: typing.Union[bool, typing.Any]
|
|
27998
|
+
"""
|
|
27999
|
+
|
|
27946
28000
|
name: typing.Union[str, typing.Any]
|
|
27947
28001
|
""" Human readable name
|
|
27948
28002
|
|
|
@@ -31809,6 +31863,12 @@ class Scopes(bpy_struct):
|
|
|
31809
31863
|
:type: float
|
|
31810
31864
|
"""
|
|
31811
31865
|
|
|
31866
|
+
vectorscope_mode: typing.Union[str, int]
|
|
31867
|
+
"""
|
|
31868
|
+
|
|
31869
|
+
:type: typing.Union[str, int]
|
|
31870
|
+
"""
|
|
31871
|
+
|
|
31812
31872
|
waveform_alpha: float
|
|
31813
31873
|
""" Opacity of the points
|
|
31814
31874
|
|
|
@@ -43354,7 +43414,7 @@ class UserExtensionRepo(bpy_struct):
|
|
|
43354
43414
|
"""
|
|
43355
43415
|
|
|
43356
43416
|
use_custom_directory: bool
|
|
43357
|
-
""" Manually set the path for extensions to be stored
|
|
43417
|
+
""" Manually set the path for extensions to be stored. When disabled a users extensions directory is created
|
|
43358
43418
|
|
|
43359
43419
|
:type: bool
|
|
43360
43420
|
"""
|
|
@@ -80716,6 +80776,12 @@ class SpaceFileBrowser(Space, bpy_struct):
|
|
|
80716
80776
|
class SpaceGraphEditor(Space, bpy_struct):
|
|
80717
80777
|
"""Graph Editor space data"""
|
|
80718
80778
|
|
|
80779
|
+
autolock_translation_axis: bool
|
|
80780
|
+
""" Automatically locks the movement of keyframes to the dominant axis
|
|
80781
|
+
|
|
80782
|
+
:type: bool
|
|
80783
|
+
"""
|
|
80784
|
+
|
|
80719
80785
|
cursor_position_x: float
|
|
80720
80786
|
""" Graph Editor 2D-Value cursor - X-Value component
|
|
80721
80787
|
|
|
@@ -87739,6 +87805,12 @@ class PointLight(Light, ID, bpy_struct):
|
|
|
87739
87805
|
:type: bool
|
|
87740
87806
|
"""
|
|
87741
87807
|
|
|
87808
|
+
use_soft_falloff: bool
|
|
87809
|
+
""" Apply falloff to avoid sharp edges when the light geometry intersects with other objects
|
|
87810
|
+
|
|
87811
|
+
:type: bool
|
|
87812
|
+
"""
|
|
87813
|
+
|
|
87742
87814
|
@classmethod
|
|
87743
87815
|
def bl_rna_get_subclass(cls, id: typing.Optional[str], default=None) -> "Struct":
|
|
87744
87816
|
"""
|
|
@@ -87852,6 +87924,12 @@ class SpotLight(Light, ID, bpy_struct):
|
|
|
87852
87924
|
:type: bool
|
|
87853
87925
|
"""
|
|
87854
87926
|
|
|
87927
|
+
use_soft_falloff: bool
|
|
87928
|
+
""" Apply falloff to avoid sharp edges when the light geometry intersects with other objects
|
|
87929
|
+
|
|
87930
|
+
:type: bool
|
|
87931
|
+
"""
|
|
87932
|
+
|
|
87855
87933
|
use_square: bool
|
|
87856
87934
|
""" Cast a square spot light shape
|
|
87857
87935
|
|
|
@@ -108516,6 +108594,12 @@ class FunctionNodeRotateEuler(FunctionNode, NodeInternal, Node, bpy_struct):
|
|
|
108516
108594
|
...
|
|
108517
108595
|
|
|
108518
108596
|
class FunctionNodeRotateRotation(FunctionNode, NodeInternal, Node, bpy_struct):
|
|
108597
|
+
rotation_space: typing.Union[str, int]
|
|
108598
|
+
""" Base orientation for the rotation * ``GLOBAL`` Global -- Rotate the input rotation in global space. * ``LOCAL`` Local -- Rotate the input rotation in its local space.
|
|
108599
|
+
|
|
108600
|
+
:type: typing.Union[str, int]
|
|
108601
|
+
"""
|
|
108602
|
+
|
|
108519
108603
|
@classmethod
|
|
108520
108604
|
def is_registered_node_type(cls) -> bool:
|
|
108521
108605
|
"""True if a registered node type
|
|
@@ -130381,6 +130465,10 @@ DATA_PT_gpencil_strokes: "bl_ui.properties_data_gpencil.DATA_PT_gpencil_strokes"
|
|
|
130381
130465
|
|
|
130382
130466
|
DATA_PT_gpencil_vertex_groups: "bl_ui.properties_data_gpencil.DATA_PT_gpencil_vertex_groups"
|
|
130383
130467
|
|
|
130468
|
+
DATA_PT_grease_pencil_layer_relations: "bl_ui.properties_data_grease_pencil.DATA_PT_grease_pencil_layer_relations"
|
|
130469
|
+
|
|
130470
|
+
DATA_PT_grease_pencil_layer_transform: "bl_ui.properties_data_grease_pencil.DATA_PT_grease_pencil_layer_transform"
|
|
130471
|
+
|
|
130384
130472
|
DATA_PT_grease_pencil_layers: "bl_ui.properties_data_grease_pencil.DATA_PT_grease_pencil_layers"
|
|
130385
130473
|
|
|
130386
130474
|
DATA_PT_iksolver_itasc: "bl_ui.properties_data_armature.DATA_PT_iksolver_itasc"
|
|
@@ -130925,6 +131013,8 @@ NODE_MT_category_GEO_TEXTURE: "bl_ui.node_add_menu_geometry.NODE_MT_category_GEO
|
|
|
130925
131013
|
|
|
130926
131014
|
NODE_MT_category_GEO_UTILITIES: "bl_ui.node_add_menu_geometry.NODE_MT_category_GEO_UTILITIES"
|
|
130927
131015
|
|
|
131016
|
+
NODE_MT_category_GEO_UTILITIES_DEPRECATED: "bl_ui.node_add_menu_geometry.NODE_MT_category_GEO_UTILITIES_DEPRECATED"
|
|
131017
|
+
|
|
130928
131018
|
NODE_MT_category_GEO_UTILITIES_FIELD: "bl_ui.node_add_menu_geometry.NODE_MT_category_GEO_UTILITIES_FIELD"
|
|
130929
131019
|
|
|
130930
131020
|
NODE_MT_category_GEO_UTILITIES_MATH: "bl_ui.node_add_menu_geometry.NODE_MT_category_GEO_UTILITIES_MATH"
|
|
@@ -133073,6 +133163,8 @@ VIEWLAYER_PT_eevee_next_layer_passes_data: "bl_ui.properties_view_layer.VIEWLAYE
|
|
|
133073
133163
|
|
|
133074
133164
|
VIEWLAYER_PT_eevee_next_layer_passes_light: "bl_ui.properties_view_layer.VIEWLAYER_PT_eevee_next_layer_passes_light"
|
|
133075
133165
|
|
|
133166
|
+
VIEWLAYER_PT_filter: "bl_ui.properties_view_layer.VIEWLAYER_PT_filter"
|
|
133167
|
+
|
|
133076
133168
|
VIEWLAYER_PT_freestyle: "bl_ui.properties_freestyle.VIEWLAYER_PT_freestyle"
|
|
133077
133169
|
|
|
133078
133170
|
VIEWLAYER_PT_freestyle_edge_detection: "bl_ui.properties_freestyle.VIEWLAYER_PT_freestyle_edge_detection"
|
|
@@ -133195,6 +133287,8 @@ WM_OT_operator_cheat_sheet: "bl_operators.wm.WM_OT_operator_cheat_sheet"
|
|
|
133195
133287
|
|
|
133196
133288
|
WM_OT_operator_pie_enum: "bl_operators.wm.WM_OT_operator_pie_enum"
|
|
133197
133289
|
|
|
133290
|
+
WM_OT_operator_presets_cleanup: "bl_operators.presets.WM_OT_operator_presets_cleanup"
|
|
133291
|
+
|
|
133198
133292
|
WM_OT_owner_disable: "bl_operators.wm.WM_OT_owner_disable"
|
|
133199
133293
|
|
|
133200
133294
|
WM_OT_owner_enable: "bl_operators.wm.WM_OT_owner_enable"
|
bpy_extras/__init__.pyi
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
import sys
|
|
2
2
|
import typing
|
|
3
|
-
from . import mesh_utils
|
|
4
3
|
from . import asset_utils
|
|
5
4
|
from . import id_map_utils
|
|
6
|
-
from . import view3d_utils
|
|
7
|
-
from . import io_utils
|
|
8
|
-
from . import anim_utils
|
|
9
5
|
from . import node_utils
|
|
10
|
-
from . import keyconfig_utils
|
|
11
6
|
from . import image_utils
|
|
7
|
+
from . import mesh_utils
|
|
12
8
|
from . import object_utils
|
|
13
|
-
from . import
|
|
14
|
-
from . import
|
|
9
|
+
from . import io_utils
|
|
10
|
+
from . import view3d_utils
|
|
11
|
+
from . import anim_utils
|
|
12
|
+
from . import keyconfig_utils
|
|
15
13
|
from . import node_shader_utils
|
|
16
14
|
from . import bmesh_utils
|
|
15
|
+
from . import wm_utils
|
|
16
|
+
from . import extensions
|
|
17
17
|
|
|
18
18
|
GenericType = typing.TypeVar("GenericType")
|
|
@@ -72,14 +72,14 @@ def bake_action_objects(
|
|
|
72
72
|
|
|
73
73
|
def bake_action_objects_iter(
|
|
74
74
|
object_action_pairs: typing.Union[
|
|
75
|
-
"bpy.types.
|
|
75
|
+
"bpy.types.Sequence", "bpy.types.Action", "bpy.types.Object"
|
|
76
76
|
],
|
|
77
77
|
bake_o,
|
|
78
78
|
):
|
|
79
79
|
"""An coroutine that bakes actions for multiple objects.
|
|
80
80
|
|
|
81
81
|
:param object_action_pairs: Sequence of object action tuples, action is the destination for the baked data. When None a new action will be created.
|
|
82
|
-
:type object_action_pairs: typing.Union['bpy.types.
|
|
82
|
+
:type object_action_pairs: typing.Union['bpy.types.Sequence', 'bpy.types.Action', 'bpy.types.Object']
|
|
83
83
|
"""
|
|
84
84
|
|
|
85
85
|
...
|