fake-bpy-module 20240207__py3-none-any.whl → 20240209__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 +1 -1
- bl_i18n_utils/__init__.pyi +3 -3
- bl_keymap_utils/__init__.pyi +2 -2
- bl_operators/__init__.pyi +20 -20
- bl_operators/presets/__init__.pyi +37 -0
- bl_ui/__init__.pyi +62 -62
- 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
- bmesh/__init__.pyi +1 -1
- bpy/__init__.pyi +2 -2
- bpy/app/__init__.pyi +4 -4
- bpy/ops/__init__.pyi +63 -63
- 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/object/__init__.pyi +67 -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 +808 -429
- bpy/utils/__init__.pyi +1 -1
- bpy_extras/__init__.pyi +7 -7
- bpy_extras/anim_utils/__init__.pyi +2 -2
- {fake_bpy_module-20240207.dist-info → fake_bpy_module-20240209.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240207.dist-info → fake_bpy_module-20240209.dist-info}/RECORD +43 -43
- freestyle/__init__.pyi +3 -3
- gpu/__init__.pyi +4 -4
- mathutils/__init__.pyi +2 -2
- {fake_bpy_module-20240207.dist-info → fake_bpy_module-20240209.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240207.dist-info → fake_bpy_module-20240209.dist-info}/top_level.txt +0 -0
bpy/ops/__init__.pyi
CHANGED
|
@@ -1,81 +1,81 @@
|
|
|
1
1
|
import sys
|
|
2
2
|
import typing
|
|
3
|
-
from . import
|
|
4
|
-
from . import
|
|
5
|
-
from . import cloth
|
|
6
|
-
from . import script
|
|
7
|
-
from . import ui
|
|
8
|
-
from . import pose
|
|
3
|
+
from . import world
|
|
4
|
+
from . import constraint
|
|
9
5
|
from . import graph
|
|
10
|
-
from . import
|
|
11
|
-
from . import
|
|
12
|
-
from . import
|
|
13
|
-
from . import
|
|
14
|
-
from . import
|
|
15
|
-
from . import
|
|
16
|
-
from . import
|
|
6
|
+
from . import surface
|
|
7
|
+
from . import camera
|
|
8
|
+
from . import export_scene
|
|
9
|
+
from . import cloth
|
|
10
|
+
from . import wm
|
|
11
|
+
from . import curves
|
|
12
|
+
from . import sound
|
|
17
13
|
from . import sculpt
|
|
18
|
-
from . import text_editor
|
|
19
|
-
from . import collection
|
|
20
|
-
from . import geometry
|
|
21
|
-
from . import dpaint
|
|
22
|
-
from . import paintcurve
|
|
23
|
-
from . import uv
|
|
24
|
-
from . import image
|
|
25
|
-
from . import poselib
|
|
26
|
-
from . import brush
|
|
27
|
-
from . import lattice
|
|
28
|
-
from . import sculpt_curves
|
|
29
|
-
from . import anim
|
|
30
14
|
from . import boid
|
|
31
|
-
from . import
|
|
32
|
-
from . import
|
|
33
|
-
from . import nla
|
|
34
|
-
from . import palette
|
|
35
|
-
from . import constraint
|
|
36
|
-
from . import world
|
|
37
|
-
from . import import_mesh
|
|
38
|
-
from . import gizmogroup
|
|
39
|
-
from . import object
|
|
40
|
-
from . import view3d
|
|
41
|
-
from . import curves
|
|
42
|
-
from . import text
|
|
43
|
-
from . import import_anim
|
|
15
|
+
from . import material
|
|
16
|
+
from . import outliner
|
|
44
17
|
from . import grease_pencil
|
|
18
|
+
from . import import_anim
|
|
19
|
+
from . import ed
|
|
20
|
+
from . import sequencer
|
|
21
|
+
from . import mesh
|
|
22
|
+
from . import view2d
|
|
45
23
|
from . import clip
|
|
46
|
-
from . import
|
|
24
|
+
from . import image
|
|
25
|
+
from . import spreadsheet
|
|
26
|
+
from . import ptcache
|
|
27
|
+
from . import cachefile
|
|
28
|
+
from . import uv
|
|
29
|
+
from . import dpaint
|
|
30
|
+
from . import object
|
|
31
|
+
from . import texture
|
|
32
|
+
from . import curve
|
|
33
|
+
from . import info
|
|
34
|
+
from . import gizmogroup
|
|
35
|
+
from . import import_mesh
|
|
47
36
|
from . import cycles
|
|
48
|
-
from . import
|
|
49
|
-
from . import
|
|
37
|
+
from . import screen
|
|
38
|
+
from . import anim
|
|
50
39
|
from . import workspace
|
|
51
|
-
from . import
|
|
52
|
-
from . import
|
|
53
|
-
from . import transform
|
|
54
|
-
from . import mball
|
|
55
|
-
from . import ed
|
|
40
|
+
from . import view3d
|
|
41
|
+
from . import ui
|
|
56
42
|
from . import file
|
|
43
|
+
from . import uilist
|
|
44
|
+
from . import pose
|
|
45
|
+
from . import import_curve
|
|
46
|
+
from . import buttons
|
|
57
47
|
from . import render
|
|
58
|
-
from . import
|
|
48
|
+
from . import sculpt_curves
|
|
49
|
+
from . import gpencil
|
|
50
|
+
from . import geometry
|
|
59
51
|
from . import node
|
|
60
52
|
from . import asset
|
|
61
|
-
from . import
|
|
62
|
-
from . import
|
|
63
|
-
from . import
|
|
64
|
-
from . import fluid
|
|
65
|
-
from . import mesh
|
|
53
|
+
from . import palette
|
|
54
|
+
from . import import_scene
|
|
55
|
+
from . import action
|
|
66
56
|
from . import particle
|
|
67
|
-
from . import
|
|
68
|
-
from . import
|
|
69
|
-
from . import
|
|
57
|
+
from . import collection
|
|
58
|
+
from . import poselib
|
|
59
|
+
from . import font
|
|
60
|
+
from . import mball
|
|
70
61
|
from . import export_anim
|
|
71
|
-
from . import
|
|
72
|
-
from . import
|
|
73
|
-
from . import
|
|
74
|
-
from . import
|
|
75
|
-
from . import
|
|
76
|
-
from . import
|
|
77
|
-
from . import
|
|
62
|
+
from . import mask
|
|
63
|
+
from . import text
|
|
64
|
+
from . import export_mesh
|
|
65
|
+
from . import paintcurve
|
|
66
|
+
from . import scene
|
|
67
|
+
from . import preferences
|
|
68
|
+
from . import marker
|
|
69
|
+
from . import transform
|
|
70
|
+
from . import rigidbody
|
|
71
|
+
from . import brush
|
|
72
|
+
from . import console
|
|
73
|
+
from . import script
|
|
74
|
+
from . import nla
|
|
75
|
+
from . import text_editor
|
|
78
76
|
from . import armature
|
|
79
|
-
from . import
|
|
77
|
+
from . import lattice
|
|
78
|
+
from . import fluid
|
|
79
|
+
from . import paint
|
|
80
80
|
|
|
81
81
|
GenericType = typing.TypeVar("GenericType")
|
bpy/ops/camera/__init__.pyi
CHANGED
|
@@ -16,7 +16,7 @@ def preset_add(
|
|
|
16
16
|
remove_active: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
17
17
|
use_focal_length: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
18
18
|
):
|
|
19
|
-
"""Add or remove a Camera Preset :File: `startup/bl_operators/presets.py\:
|
|
19
|
+
"""Add or remove a Camera Preset :File: `startup/bl_operators/presets.py\:77 <https://projects.blender.org/blender/blender/src/branch/main/scripts/startup/bl_operators/presets.py#L77>`__
|
|
20
20
|
|
|
21
21
|
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
22
22
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
@@ -44,7 +44,7 @@ def safe_areas_preset_add(
|
|
|
44
44
|
remove_name: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
45
45
|
remove_active: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
46
46
|
):
|
|
47
|
-
"""Add or remove a Safe Areas Preset :File: `startup/bl_operators/presets.py\:
|
|
47
|
+
"""Add or remove a Safe Areas Preset :File: `startup/bl_operators/presets.py\:77 <https://projects.blender.org/blender/blender/src/branch/main/scripts/startup/bl_operators/presets.py#L77>`__
|
|
48
48
|
|
|
49
49
|
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
50
50
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
bpy/ops/clip/__init__.pyi
CHANGED
|
@@ -155,7 +155,7 @@ def camera_preset_add(
|
|
|
155
155
|
remove_active: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
156
156
|
use_focal_length: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
157
157
|
):
|
|
158
|
-
"""Add or remove a Tracking Camera Intrinsics Preset :File: `startup/bl_operators/presets.py\:
|
|
158
|
+
"""Add or remove a Tracking Camera Intrinsics Preset :File: `startup/bl_operators/presets.py\:77 <https://projects.blender.org/blender/blender/src/branch/main/scripts/startup/bl_operators/presets.py#L77>`__
|
|
159
159
|
|
|
160
160
|
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
161
161
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
@@ -1519,7 +1519,7 @@ def track_color_preset_add(
|
|
|
1519
1519
|
remove_name: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
1520
1520
|
remove_active: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
1521
1521
|
):
|
|
1522
|
-
"""Add or remove a Clip Track Color Preset :File: `startup/bl_operators/presets.py\:
|
|
1522
|
+
"""Add or remove a Clip Track Color Preset :File: `startup/bl_operators/presets.py\:77 <https://projects.blender.org/blender/blender/src/branch/main/scripts/startup/bl_operators/presets.py#L77>`__
|
|
1523
1523
|
|
|
1524
1524
|
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
1525
1525
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
@@ -1664,7 +1664,7 @@ def tracking_settings_preset_add(
|
|
|
1664
1664
|
remove_name: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
1665
1665
|
remove_active: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
1666
1666
|
):
|
|
1667
|
-
"""Add or remove a motion tracking settings preset :File: `startup/bl_operators/presets.py\:
|
|
1667
|
+
"""Add or remove a motion tracking settings preset :File: `startup/bl_operators/presets.py\:77 <https://projects.blender.org/blender/blender/src/branch/main/scripts/startup/bl_operators/presets.py#L77>`__
|
|
1668
1668
|
|
|
1669
1669
|
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
1670
1670
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
bpy/ops/cloth/__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 Cloth Preset :File: `startup/bl_operators/presets.py\:
|
|
18
|
+
"""Add or remove a Cloth 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/fluid/__init__.pyi
CHANGED
|
@@ -223,7 +223,7 @@ def preset_add(
|
|
|
223
223
|
remove_name: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
224
224
|
remove_active: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
225
225
|
):
|
|
226
|
-
"""Add or remove a Fluid Preset :File: `startup/bl_operators/presets.py\:
|
|
226
|
+
"""Add or remove a Fluid Preset :File: `startup/bl_operators/presets.py\:77 <https://projects.blender.org/blender/blender/src/branch/main/scripts/startup/bl_operators/presets.py#L77>`__
|
|
227
227
|
|
|
228
228
|
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
229
229
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
@@ -679,6 +679,26 @@ def select_random(
|
|
|
679
679
|
|
|
680
680
|
...
|
|
681
681
|
|
|
682
|
+
def separate(
|
|
683
|
+
override_context: typing.Optional[
|
|
684
|
+
typing.Union[typing.Dict, "bpy.types.Context"]
|
|
685
|
+
] = None,
|
|
686
|
+
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
687
|
+
undo: typing.Optional[bool] = None,
|
|
688
|
+
*,
|
|
689
|
+
mode: typing.Optional[typing.Any] = "SELECTED",
|
|
690
|
+
):
|
|
691
|
+
"""Separate the selected geometry into a new grease pencil object
|
|
692
|
+
|
|
693
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
694
|
+
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
695
|
+
:type undo: typing.Optional[bool]
|
|
696
|
+
:param mode: Mode * ``SELECTED`` Selection -- Separate selected geometry. * ``MATERIAL`` By Material -- Separate by material. * ``LAYER`` By Layer -- Separate by layer.
|
|
697
|
+
:type mode: typing.Optional[typing.Any]
|
|
698
|
+
"""
|
|
699
|
+
|
|
700
|
+
...
|
|
701
|
+
|
|
682
702
|
def set_active_material(
|
|
683
703
|
override_context: typing.Optional[
|
|
684
704
|
typing.Union[typing.Dict, "bpy.types.Context"]
|
bpy/ops/mesh/__init__.pyi
CHANGED
|
@@ -3587,6 +3587,29 @@ def set_normals_from_faces(
|
|
|
3587
3587
|
|
|
3588
3588
|
...
|
|
3589
3589
|
|
|
3590
|
+
def set_sharpness_by_angle(
|
|
3591
|
+
override_context: typing.Optional[
|
|
3592
|
+
typing.Union[typing.Dict, "bpy.types.Context"]
|
|
3593
|
+
] = None,
|
|
3594
|
+
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
3595
|
+
undo: typing.Optional[bool] = None,
|
|
3596
|
+
*,
|
|
3597
|
+
angle: typing.Optional[typing.Any] = 0.523599,
|
|
3598
|
+
extend: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
3599
|
+
):
|
|
3600
|
+
"""Set edge sharpness based on the angle between neighboring faces
|
|
3601
|
+
|
|
3602
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
3603
|
+
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
3604
|
+
:type undo: typing.Optional[bool]
|
|
3605
|
+
:param angle: Angle
|
|
3606
|
+
:type angle: typing.Optional[typing.Any]
|
|
3607
|
+
:param extend: Extend, Add new sharp edges without clearing existing sharp edges
|
|
3608
|
+
:type extend: typing.Optional[typing.Union[bool, typing.Any]]
|
|
3609
|
+
"""
|
|
3610
|
+
|
|
3611
|
+
...
|
|
3612
|
+
|
|
3590
3613
|
def shape_propagate_to_all(
|
|
3591
3614
|
override_context: typing.Optional[
|
|
3592
3615
|
typing.Union[typing.Dict, "bpy.types.Context"]
|
bpy/ops/node/__init__.pyi
CHANGED
|
@@ -1389,7 +1389,7 @@ def node_color_preset_add(
|
|
|
1389
1389
|
remove_name: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
1390
1390
|
remove_active: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
1391
1391
|
):
|
|
1392
|
-
"""Add or remove a Node Color Preset :File: `startup/bl_operators/presets.py\:
|
|
1392
|
+
"""Add or remove a Node Color Preset :File: `startup/bl_operators/presets.py\:77 <https://projects.blender.org/blender/blender/src/branch/main/scripts/startup/bl_operators/presets.py#L77>`__
|
|
1393
1393
|
|
|
1394
1394
|
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
1395
1395
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
bpy/ops/object/__init__.pyi
CHANGED
|
@@ -50,7 +50,7 @@ def add_modifier_menu(
|
|
|
50
50
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
51
51
|
undo: typing.Optional[bool] = None,
|
|
52
52
|
):
|
|
53
|
-
"""Undocumented, consider `contributing <https://developer.blender.org/>`__. :File: `startup/bl_ui/properties_data_modifier.py\:
|
|
53
|
+
"""Undocumented, consider `contributing <https://developer.blender.org/>`__. :File: `startup/bl_ui/properties_data_modifier.py\:263 <https://projects.blender.org/blender/blender/src/branch/main/scripts/startup/bl_ui/properties_data_modifier.py#L263>`__
|
|
54
54
|
|
|
55
55
|
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
56
56
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
@@ -1547,6 +1547,72 @@ def grease_pencil_add(
|
|
|
1547
1547
|
|
|
1548
1548
|
...
|
|
1549
1549
|
|
|
1550
|
+
def grease_pencil_dash_modifier_segment_add(
|
|
1551
|
+
override_context: typing.Optional[
|
|
1552
|
+
typing.Union[typing.Dict, "bpy.types.Context"]
|
|
1553
|
+
] = None,
|
|
1554
|
+
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1555
|
+
undo: typing.Optional[bool] = None,
|
|
1556
|
+
*,
|
|
1557
|
+
modifier: typing.Union[str, typing.Any] = "",
|
|
1558
|
+
):
|
|
1559
|
+
"""Add a segment to the dash modifier
|
|
1560
|
+
|
|
1561
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
1562
|
+
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1563
|
+
:type undo: typing.Optional[bool]
|
|
1564
|
+
:param modifier: Modifier, Name of the modifier to edit
|
|
1565
|
+
:type modifier: typing.Union[str, typing.Any]
|
|
1566
|
+
"""
|
|
1567
|
+
|
|
1568
|
+
...
|
|
1569
|
+
|
|
1570
|
+
def grease_pencil_dash_modifier_segment_move(
|
|
1571
|
+
override_context: typing.Optional[
|
|
1572
|
+
typing.Union[typing.Dict, "bpy.types.Context"]
|
|
1573
|
+
] = None,
|
|
1574
|
+
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1575
|
+
undo: typing.Optional[bool] = None,
|
|
1576
|
+
*,
|
|
1577
|
+
modifier: typing.Union[str, typing.Any] = "",
|
|
1578
|
+
type: typing.Optional[typing.Any] = "UP",
|
|
1579
|
+
):
|
|
1580
|
+
"""Move the active dash segment up or down
|
|
1581
|
+
|
|
1582
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
1583
|
+
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1584
|
+
:type undo: typing.Optional[bool]
|
|
1585
|
+
:param modifier: Modifier, Name of the modifier to edit
|
|
1586
|
+
:type modifier: typing.Union[str, typing.Any]
|
|
1587
|
+
:param type: Type
|
|
1588
|
+
:type type: typing.Optional[typing.Any]
|
|
1589
|
+
"""
|
|
1590
|
+
|
|
1591
|
+
...
|
|
1592
|
+
|
|
1593
|
+
def grease_pencil_dash_modifier_segment_remove(
|
|
1594
|
+
override_context: typing.Optional[
|
|
1595
|
+
typing.Union[typing.Dict, "bpy.types.Context"]
|
|
1596
|
+
] = None,
|
|
1597
|
+
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1598
|
+
undo: typing.Optional[bool] = None,
|
|
1599
|
+
*,
|
|
1600
|
+
modifier: typing.Union[str, typing.Any] = "",
|
|
1601
|
+
index: typing.Optional[typing.Any] = 0,
|
|
1602
|
+
):
|
|
1603
|
+
"""Remove the active segment from the dash modifier
|
|
1604
|
+
|
|
1605
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
1606
|
+
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1607
|
+
:type undo: typing.Optional[bool]
|
|
1608
|
+
:param modifier: Modifier, Name of the modifier to edit
|
|
1609
|
+
:type modifier: typing.Union[str, typing.Any]
|
|
1610
|
+
:param index: Index, Index of the segment to remove
|
|
1611
|
+
:type index: typing.Optional[typing.Any]
|
|
1612
|
+
"""
|
|
1613
|
+
|
|
1614
|
+
...
|
|
1615
|
+
|
|
1550
1616
|
def hide_collection(
|
|
1551
1617
|
override_context: typing.Optional[
|
|
1552
1618
|
typing.Union[typing.Dict, "bpy.types.Context"]
|
bpy/ops/particle/__init__.pyi
CHANGED
|
@@ -239,7 +239,7 @@ def hair_dynamics_preset_add(
|
|
|
239
239
|
remove_name: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
240
240
|
remove_active: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
241
241
|
):
|
|
242
|
-
"""Add or remove a Hair Dynamics Preset :File: `startup/bl_operators/presets.py\:
|
|
242
|
+
"""Add or remove a Hair Dynamics Preset :File: `startup/bl_operators/presets.py\:77 <https://projects.blender.org/blender/blender/src/branch/main/scripts/startup/bl_operators/presets.py#L77>`__
|
|
243
243
|
|
|
244
244
|
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
245
245
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
bpy/ops/preferences/__init__.pyi
CHANGED
|
@@ -13,7 +13,7 @@ def addon_disable(
|
|
|
13
13
|
*,
|
|
14
14
|
module: typing.Union[str, typing.Any] = "",
|
|
15
15
|
):
|
|
16
|
-
"""Disable an add-on :File: `startup/bl_operators/userpref.py\:
|
|
16
|
+
"""Disable an add-on :File: `startup/bl_operators/userpref.py\:485 <https://projects.blender.org/blender/blender/src/branch/main/scripts/startup/bl_operators/userpref.py#L485>`__
|
|
17
17
|
|
|
18
18
|
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
19
19
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
@@ -33,7 +33,7 @@ def addon_enable(
|
|
|
33
33
|
*,
|
|
34
34
|
module: typing.Union[str, typing.Any] = "",
|
|
35
35
|
):
|
|
36
|
-
"""Enable an add-on :File: `startup/bl_operators/userpref.py\:
|
|
36
|
+
"""Enable an add-on :File: `startup/bl_operators/userpref.py\:439 <https://projects.blender.org/blender/blender/src/branch/main/scripts/startup/bl_operators/userpref.py#L439>`__
|
|
37
37
|
|
|
38
38
|
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
39
39
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
@@ -53,7 +53,7 @@ def addon_expand(
|
|
|
53
53
|
*,
|
|
54
54
|
module: typing.Union[str, typing.Any] = "",
|
|
55
55
|
):
|
|
56
|
-
"""Display information and preferences for this add-on :File: `startup/bl_operators/userpref.py\:
|
|
56
|
+
"""Display information and preferences for this add-on :File: `startup/bl_operators/userpref.py\:827 <https://projects.blender.org/blender/blender/src/branch/main/scripts/startup/bl_operators/userpref.py#L827>`__
|
|
57
57
|
|
|
58
58
|
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
59
59
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
@@ -78,7 +78,7 @@ def addon_install(
|
|
|
78
78
|
filter_python: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
79
79
|
filter_glob: typing.Union[str, typing.Any] = "*.py;*.zip",
|
|
80
80
|
):
|
|
81
|
-
"""Install an add-on :File: `startup/bl_operators/userpref.py\:
|
|
81
|
+
"""Install an add-on :File: `startup/bl_operators/userpref.py\:626 <https://projects.blender.org/blender/blender/src/branch/main/scripts/startup/bl_operators/userpref.py#L626>`__
|
|
82
82
|
|
|
83
83
|
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
84
84
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
@@ -106,7 +106,7 @@ def addon_refresh(
|
|
|
106
106
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
107
107
|
undo: typing.Optional[bool] = None,
|
|
108
108
|
):
|
|
109
|
-
"""Scan add-on directories for new modules :File: `startup/bl_operators/userpref.py\:
|
|
109
|
+
"""Scan add-on directories for new modules :File: `startup/bl_operators/userpref.py\:574 <https://projects.blender.org/blender/blender/src/branch/main/scripts/startup/bl_operators/userpref.py#L574>`__
|
|
110
110
|
|
|
111
111
|
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
112
112
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
@@ -124,7 +124,7 @@ def addon_remove(
|
|
|
124
124
|
*,
|
|
125
125
|
module: typing.Union[str, typing.Any] = "",
|
|
126
126
|
):
|
|
127
|
-
"""Delete the add-on from the file system :File: `startup/bl_operators/userpref.py\:
|
|
127
|
+
"""Delete the add-on from the file system :File: `startup/bl_operators/userpref.py\:782 <https://projects.blender.org/blender/blender/src/branch/main/scripts/startup/bl_operators/userpref.py#L782>`__
|
|
128
128
|
|
|
129
129
|
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
130
130
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
@@ -144,7 +144,7 @@ def addon_show(
|
|
|
144
144
|
*,
|
|
145
145
|
module: typing.Union[str, typing.Any] = "",
|
|
146
146
|
):
|
|
147
|
-
"""Show add-on preferences :File: `startup/bl_operators/userpref.py\:
|
|
147
|
+
"""Show add-on preferences :File: `startup/bl_operators/userpref.py\:851 <https://projects.blender.org/blender/blender/src/branch/main/scripts/startup/bl_operators/userpref.py#L851>`__
|
|
148
148
|
|
|
149
149
|
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
150
150
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
@@ -167,7 +167,7 @@ def app_template_install(
|
|
|
167
167
|
filter_folder: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
168
168
|
filter_glob: typing.Union[str, typing.Any] = "*.zip",
|
|
169
169
|
):
|
|
170
|
-
"""Install an application template :File: `startup/bl_operators/userpref.py\:
|
|
170
|
+
"""Install an application template :File: `startup/bl_operators/userpref.py\:897 <https://projects.blender.org/blender/blender/src/branch/main/scripts/startup/bl_operators/userpref.py#L897>`__
|
|
171
171
|
|
|
172
172
|
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
173
173
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
@@ -376,13 +376,13 @@ def extension_repo_add(
|
|
|
376
376
|
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
377
377
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
378
378
|
:type undo: typing.Optional[bool]
|
|
379
|
-
:param name: Name
|
|
379
|
+
:param name: Name, Unique repository name
|
|
380
380
|
:type name: typing.Union[str, typing.Any]
|
|
381
|
-
:param remote_path: URL
|
|
381
|
+
:param remote_path: URL, Remote URL or path for extension repository
|
|
382
382
|
:type remote_path: typing.Union[str, typing.Any]
|
|
383
|
-
:param use_custom_directory: Custom Directory
|
|
383
|
+
:param use_custom_directory: Custom Directory, Manually set the path for extensions to be stored. When disabled a users extensions directory is created
|
|
384
384
|
:type use_custom_directory: typing.Optional[typing.Union[bool, typing.Any]]
|
|
385
|
-
:param custom_directory: Directory
|
|
385
|
+
:param custom_directory: Custom Directory, The local directory containing extensions
|
|
386
386
|
:type custom_directory: typing.Union[str, typing.Any]
|
|
387
387
|
:param type: Type, The kind of repository to add * ``REMOTE`` Add Remote Repository -- Add a repository referencing an remote repository with support for listing and updating extensions. * ``LOCAL`` Add Local Repository -- Add a repository managed manually without referencing an external repository.
|
|
388
388
|
:type type: typing.Optional[typing.Any]
|
|
@@ -413,6 +413,38 @@ def extension_repo_remove(
|
|
|
413
413
|
|
|
414
414
|
...
|
|
415
415
|
|
|
416
|
+
def extension_repo_sync(
|
|
417
|
+
override_context: typing.Optional[
|
|
418
|
+
typing.Union[typing.Dict, "bpy.types.Context"]
|
|
419
|
+
] = None,
|
|
420
|
+
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
421
|
+
undo: typing.Optional[bool] = None,
|
|
422
|
+
):
|
|
423
|
+
"""Synchronize the active extension repository with its remote URL
|
|
424
|
+
|
|
425
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
426
|
+
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
427
|
+
:type undo: typing.Optional[bool]
|
|
428
|
+
"""
|
|
429
|
+
|
|
430
|
+
...
|
|
431
|
+
|
|
432
|
+
def extension_repo_upgrade(
|
|
433
|
+
override_context: typing.Optional[
|
|
434
|
+
typing.Union[typing.Dict, "bpy.types.Context"]
|
|
435
|
+
] = None,
|
|
436
|
+
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
437
|
+
undo: typing.Optional[bool] = None,
|
|
438
|
+
):
|
|
439
|
+
"""Update any outdated extensions for the active extension repository
|
|
440
|
+
|
|
441
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
442
|
+
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
443
|
+
:type undo: typing.Optional[bool]
|
|
444
|
+
"""
|
|
445
|
+
|
|
446
|
+
...
|
|
447
|
+
|
|
416
448
|
def keyconfig_activate(
|
|
417
449
|
override_context: typing.Optional[
|
|
418
450
|
typing.Union[typing.Dict, "bpy.types.Context"]
|
|
@@ -446,7 +478,7 @@ def keyconfig_export(
|
|
|
446
478
|
filter_text: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
447
479
|
filter_python: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
448
480
|
):
|
|
449
|
-
"""Export key configuration to a Python script :File: `startup/bl_operators/userpref.py\:
|
|
481
|
+
"""Export key configuration to a Python script :File: `startup/bl_operators/userpref.py\:281 <https://projects.blender.org/blender/blender/src/branch/main/scripts/startup/bl_operators/userpref.py#L281>`__
|
|
450
482
|
|
|
451
483
|
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
452
484
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
@@ -478,7 +510,7 @@ def keyconfig_import(
|
|
|
478
510
|
filter_python: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
479
511
|
keep_original: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
480
512
|
):
|
|
481
|
-
"""Import key configuration from a Python script :File: `startup/bl_operators/userpref.py\:
|
|
513
|
+
"""Import key configuration from a Python script :File: `startup/bl_operators/userpref.py\:210 <https://projects.blender.org/blender/blender/src/branch/main/scripts/startup/bl_operators/userpref.py#L210>`__
|
|
482
514
|
|
|
483
515
|
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
484
516
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
@@ -504,7 +536,7 @@ def keyconfig_remove(
|
|
|
504
536
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
505
537
|
undo: typing.Optional[bool] = None,
|
|
506
538
|
):
|
|
507
|
-
"""Remove key config :File: `startup/bl_operators/userpref.py\:
|
|
539
|
+
"""Remove key config :File: `startup/bl_operators/userpref.py\:419 <https://projects.blender.org/blender/blender/src/branch/main/scripts/startup/bl_operators/userpref.py#L419>`__
|
|
508
540
|
|
|
509
541
|
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
510
542
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
@@ -520,7 +552,7 @@ def keyconfig_test(
|
|
|
520
552
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
521
553
|
undo: typing.Optional[bool] = None,
|
|
522
554
|
):
|
|
523
|
-
"""Test key configuration for conflicts :File: `startup/bl_operators/userpref.py\:
|
|
555
|
+
"""Test key configuration for conflicts :File: `startup/bl_operators/userpref.py\:168 <https://projects.blender.org/blender/blender/src/branch/main/scripts/startup/bl_operators/userpref.py#L168>`__
|
|
524
556
|
|
|
525
557
|
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
526
558
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
@@ -536,7 +568,7 @@ def keyitem_add(
|
|
|
536
568
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
537
569
|
undo: typing.Optional[bool] = None,
|
|
538
570
|
):
|
|
539
|
-
"""Add key map item :File: `startup/bl_operators/userpref.py\:
|
|
571
|
+
"""Add key map item :File: `startup/bl_operators/userpref.py\:367 <https://projects.blender.org/blender/blender/src/branch/main/scripts/startup/bl_operators/userpref.py#L367>`__
|
|
540
572
|
|
|
541
573
|
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
542
574
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
@@ -554,7 +586,7 @@ def keyitem_remove(
|
|
|
554
586
|
*,
|
|
555
587
|
item_id: typing.Optional[typing.Any] = 0,
|
|
556
588
|
):
|
|
557
|
-
"""Remove key map item :File: `startup/bl_operators/userpref.py\:
|
|
589
|
+
"""Remove key map item :File: `startup/bl_operators/userpref.py\:399 <https://projects.blender.org/blender/blender/src/branch/main/scripts/startup/bl_operators/userpref.py#L399>`__
|
|
558
590
|
|
|
559
591
|
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
560
592
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
@@ -574,7 +606,7 @@ def keyitem_restore(
|
|
|
574
606
|
*,
|
|
575
607
|
item_id: typing.Optional[typing.Any] = 0,
|
|
576
608
|
):
|
|
577
|
-
"""Restore key map item :File: `startup/bl_operators/userpref.py\:
|
|
609
|
+
"""Restore key map item :File: `startup/bl_operators/userpref.py\:352 <https://projects.blender.org/blender/blender/src/branch/main/scripts/startup/bl_operators/userpref.py#L352>`__
|
|
578
610
|
|
|
579
611
|
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
580
612
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
@@ -594,7 +626,7 @@ def keymap_restore(
|
|
|
594
626
|
*,
|
|
595
627
|
all: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
596
628
|
):
|
|
597
|
-
"""Restore key map(s) :File: `startup/bl_operators/userpref.py\:
|
|
629
|
+
"""Restore key map(s) :File: `startup/bl_operators/userpref.py\:323 <https://projects.blender.org/blender/blender/src/branch/main/scripts/startup/bl_operators/userpref.py#L323>`__
|
|
598
630
|
|
|
599
631
|
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
600
632
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
@@ -631,7 +663,7 @@ def script_directory_add(
|
|
|
631
663
|
directory: typing.Union[str, typing.Any] = "",
|
|
632
664
|
filter_folder: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
633
665
|
):
|
|
634
|
-
"""Undocumented, consider `contributing <https://developer.blender.org/>`__. :File: `startup/bl_operators/userpref.py\:
|
|
666
|
+
"""Undocumented, consider `contributing <https://developer.blender.org/>`__. :File: `startup/bl_operators/userpref.py\:1170 <https://projects.blender.org/blender/blender/src/branch/main/scripts/startup/bl_operators/userpref.py#L1170>`__
|
|
635
667
|
|
|
636
668
|
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
637
669
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
@@ -653,7 +685,7 @@ def script_directory_remove(
|
|
|
653
685
|
*,
|
|
654
686
|
index: typing.Optional[typing.Any] = 0,
|
|
655
687
|
):
|
|
656
|
-
"""Undocumented, consider `contributing <https://developer.blender.org/>`__. :File: `startup/bl_operators/userpref.py\:
|
|
688
|
+
"""Undocumented, consider `contributing <https://developer.blender.org/>`__. :File: `startup/bl_operators/userpref.py\:1200 <https://projects.blender.org/blender/blender/src/branch/main/scripts/startup/bl_operators/userpref.py#L1200>`__
|
|
657
689
|
|
|
658
690
|
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
659
691
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
@@ -673,7 +705,7 @@ def studiolight_copy_settings(
|
|
|
673
705
|
*,
|
|
674
706
|
index: typing.Optional[typing.Any] = 0,
|
|
675
707
|
):
|
|
676
|
-
"""Copy Studio Light settings to the Studio Light editor :File: `startup/bl_operators/userpref.py\:
|
|
708
|
+
"""Copy Studio Light settings to the Studio Light editor :File: `startup/bl_operators/userpref.py\:1125 <https://projects.blender.org/blender/blender/src/branch/main/scripts/startup/bl_operators/userpref.py#L1125>`__
|
|
677
709
|
|
|
678
710
|
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
679
711
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
@@ -699,7 +731,7 @@ def studiolight_install(
|
|
|
699
731
|
filter_glob: typing.Union[str, typing.Any] = "*.png;*.jpg;*.hdr;*.exr",
|
|
700
732
|
type: typing.Optional[typing.Any] = "MATCAP",
|
|
701
733
|
):
|
|
702
|
-
"""Install a user defined light :File: `startup/bl_operators/userpref.py\:
|
|
734
|
+
"""Install a user defined light :File: `startup/bl_operators/userpref.py\:1006 <https://projects.blender.org/blender/blender/src/branch/main/scripts/startup/bl_operators/userpref.py#L1006>`__
|
|
703
735
|
|
|
704
736
|
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
705
737
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
@@ -727,7 +759,7 @@ def studiolight_new(
|
|
|
727
759
|
*,
|
|
728
760
|
filename: typing.Union[str, typing.Any] = "StudioLight",
|
|
729
761
|
):
|
|
730
|
-
"""Save custom studio light from the studio light editor settings :File: `startup/bl_operators/userpref.py\:
|
|
762
|
+
"""Save custom studio light from the studio light editor settings :File: `startup/bl_operators/userpref.py\:1052 <https://projects.blender.org/blender/blender/src/branch/main/scripts/startup/bl_operators/userpref.py#L1052>`__
|
|
731
763
|
|
|
732
764
|
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
733
765
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
@@ -745,7 +777,7 @@ def studiolight_show(
|
|
|
745
777
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
746
778
|
undo: typing.Optional[bool] = None,
|
|
747
779
|
):
|
|
748
|
-
"""Show light preferences :File: `startup/bl_operators/userpref.py\:
|
|
780
|
+
"""Show light preferences :File: `startup/bl_operators/userpref.py\:1151 <https://projects.blender.org/blender/blender/src/branch/main/scripts/startup/bl_operators/userpref.py#L1151>`__
|
|
749
781
|
|
|
750
782
|
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
751
783
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
@@ -763,7 +795,7 @@ def studiolight_uninstall(
|
|
|
763
795
|
*,
|
|
764
796
|
index: typing.Optional[typing.Any] = 0,
|
|
765
797
|
):
|
|
766
|
-
"""Delete Studio Light :File: `startup/bl_operators/userpref.py\:
|
|
798
|
+
"""Delete Studio Light :File: `startup/bl_operators/userpref.py\:1106 <https://projects.blender.org/blender/blender/src/branch/main/scripts/startup/bl_operators/userpref.py#L1106>`__
|
|
767
799
|
|
|
768
800
|
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
769
801
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
@@ -786,7 +818,7 @@ def theme_install(
|
|
|
786
818
|
filter_folder: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
787
819
|
filter_glob: typing.Union[str, typing.Any] = "*.xml",
|
|
788
820
|
):
|
|
789
|
-
"""Load and apply a Blender XML theme file :File: `startup/bl_operators/userpref.py\:
|
|
821
|
+
"""Load and apply a Blender XML theme file :File: `startup/bl_operators/userpref.py\:527 <https://projects.blender.org/blender/blender/src/branch/main/scripts/startup/bl_operators/userpref.py#L527>`__
|
|
790
822
|
|
|
791
823
|
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
792
824
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|