fake-bpy-module 20240928__py3-none-any.whl → 20240930__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_ui/generic_ui_list/__init__.pyi +2 -2
- bmesh/types/__init__.pyi +2 -2
- bpy/__init__.pyi +1 -1
- bpy/ops/action/__init__.pyi +76 -76
- bpy/ops/anim/__init__.pyi +124 -124
- bpy/ops/armature/__init__.pyi +96 -96
- bpy/ops/asset/__init__.pyi +32 -32
- bpy/ops/boid/__init__.pyi +16 -16
- bpy/ops/brush/__init__.pyi +26 -26
- bpy/ops/buttons/__init__.pyi +12 -12
- bpy/ops/cachefile/__init__.pyi +10 -10
- bpy/ops/camera/__init__.pyi +4 -4
- bpy/ops/clip/__init__.pyi +184 -184
- bpy/ops/cloth/__init__.pyi +2 -2
- bpy/ops/collection/__init__.pyi +18 -18
- bpy/ops/console/__init__.pyi +42 -42
- bpy/ops/constraint/__init__.pyi +36 -36
- bpy/ops/curve/__init__.pyi +102 -102
- bpy/ops/curves/__init__.pyi +54 -54
- bpy/ops/cycles/__init__.pyi +6 -6
- bpy/ops/dpaint/__init__.pyi +10 -10
- bpy/ops/ed/__init__.pyi +24 -24
- bpy/ops/export_anim/__init__.pyi +2 -2
- bpy/ops/export_scene/__init__.pyi +4 -4
- bpy/ops/extensions/__init__.pyi +68 -68
- bpy/ops/file/__init__.pyi +80 -80
- bpy/ops/fluid/__init__.pyi +28 -28
- bpy/ops/font/__init__.pyi +46 -46
- bpy/ops/geometry/__init__.pyi +20 -20
- bpy/ops/gizmogroup/__init__.pyi +4 -4
- bpy/ops/gpencil/__init__.pyi +284 -284
- bpy/ops/graph/__init__.pyi +130 -130
- bpy/ops/grease_pencil/__init__.pyi +202 -202
- bpy/ops/image/__init__.pyi +98 -98
- bpy/ops/import_anim/__init__.pyi +2 -2
- bpy/ops/import_curve/__init__.pyi +2 -2
- bpy/ops/import_scene/__init__.pyi +4 -4
- bpy/ops/info/__init__.pyi +14 -14
- bpy/ops/lattice/__init__.pyi +16 -16
- bpy/ops/marker/__init__.pyi +22 -22
- bpy/ops/mask/__init__.pyi +78 -78
- bpy/ops/material/__init__.pyi +6 -6
- bpy/ops/mball/__init__.pyi +16 -16
- bpy/ops/mesh/__init__.pyi +326 -326
- bpy/ops/nla/__init__.pyi +78 -78
- bpy/ops/node/__init__.pyi +230 -230
- bpy/ops/object/__init__.pyi +476 -476
- bpy/ops/outliner/__init__.pyi +142 -142
- bpy/ops/paint/__init__.pyi +108 -108
- bpy/ops/paintcurve/__init__.pyi +16 -16
- bpy/ops/palette/__init__.pyi +14 -14
- bpy/ops/particle/__init__.pyi +72 -72
- bpy/ops/pose/__init__.pyi +102 -102
- bpy/ops/poselib/__init__.pyi +18 -18
- bpy/ops/preferences/__init__.pyi +70 -70
- bpy/ops/ptcache/__init__.pyi +14 -14
- bpy/ops/render/__init__.pyi +26 -26
- bpy/ops/rigidbody/__init__.pyi +26 -26
- bpy/ops/scene/__init__.pyi +74 -74
- bpy/ops/screen/__init__.pyi +78 -78
- bpy/ops/script/__init__.pyi +6 -6
- bpy/ops/sculpt/__init__.pyi +74 -74
- bpy/ops/sculpt_curves/__init__.pyi +8 -8
- bpy/ops/sequencer/__init__.pyi +178 -178
- bpy/ops/sound/__init__.pyi +14 -14
- bpy/ops/spreadsheet/__init__.pyi +8 -8
- bpy/ops/surface/__init__.pyi +12 -12
- bpy/ops/text/__init__.pyi +86 -86
- bpy/ops/text_editor/__init__.pyi +2 -2
- bpy/ops/texture/__init__.pyi +8 -8
- bpy/ops/transform/__init__.pyi +54 -54
- bpy/ops/ui/__init__.pyi +68 -68
- bpy/ops/uilist/__init__.pyi +6 -6
- bpy/ops/uv/__init__.pyi +98 -98
- bpy/ops/view2d/__init__.pyi +28 -28
- bpy/ops/view3d/__init__.pyi +134 -134
- bpy/ops/wm/__init__.pyi +232 -232
- bpy/ops/workspace/__init__.pyi +14 -14
- bpy/ops/world/__init__.pyi +4 -4
- bpy/types/__init__.pyi +333 -298
- bpy_extras/object_utils/__init__.pyi +4 -4
- {fake_bpy_module-20240928.dist-info → fake_bpy_module-20240930.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240928.dist-info → fake_bpy_module-20240930.dist-info}/RECORD +85 -85
- {fake_bpy_module-20240928.dist-info → fake_bpy_module-20240930.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240928.dist-info → fake_bpy_module-20240930.dist-info}/top_level.txt +0 -0
bpy/ops/import_anim/__init__.pyi
CHANGED
|
@@ -4,7 +4,7 @@ import typing_extensions
|
|
|
4
4
|
import bpy.types
|
|
5
5
|
|
|
6
6
|
def bvh(
|
|
7
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
7
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
8
8
|
execution_context: int | str | None = None,
|
|
9
9
|
undo: bool | None = None,
|
|
10
10
|
*,
|
|
@@ -26,7 +26,7 @@ def bvh(
|
|
|
26
26
|
):
|
|
27
27
|
"""Load a BVH motion capture file
|
|
28
28
|
|
|
29
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
29
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
30
30
|
:type execution_context: int | str | None
|
|
31
31
|
:type undo: bool | None
|
|
32
32
|
:param filepath: File Path, Filepath used for importing the file
|
|
@@ -4,7 +4,7 @@ import typing_extensions
|
|
|
4
4
|
import bpy.types
|
|
5
5
|
|
|
6
6
|
def svg(
|
|
7
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
7
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
8
8
|
execution_context: int | str | None = None,
|
|
9
9
|
undo: bool | None = None,
|
|
10
10
|
*,
|
|
@@ -13,7 +13,7 @@ def svg(
|
|
|
13
13
|
):
|
|
14
14
|
"""Load a SVG file
|
|
15
15
|
|
|
16
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
16
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
17
17
|
:type execution_context: int | str | None
|
|
18
18
|
:type undo: bool | None
|
|
19
19
|
:param filepath: File Path, Filepath used for importing the file
|
|
@@ -4,7 +4,7 @@ import typing_extensions
|
|
|
4
4
|
import bpy.types
|
|
5
5
|
|
|
6
6
|
def fbx(
|
|
7
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
7
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
8
8
|
execution_context: int | str | None = None,
|
|
9
9
|
undo: bool | None = None,
|
|
10
10
|
*,
|
|
@@ -38,7 +38,7 @@ def fbx(
|
|
|
38
38
|
):
|
|
39
39
|
"""Load a FBX file
|
|
40
40
|
|
|
41
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
41
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
42
42
|
:type execution_context: int | str | None
|
|
43
43
|
:type undo: bool | None
|
|
44
44
|
:param filepath: File Path, Filepath used for importing the file
|
|
@@ -111,7 +111,7 @@ def fbx(
|
|
|
111
111
|
"""
|
|
112
112
|
|
|
113
113
|
def gltf(
|
|
114
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
114
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
115
115
|
execution_context: int | str | None = None,
|
|
116
116
|
undo: bool | None = None,
|
|
117
117
|
*,
|
|
@@ -134,7 +134,7 @@ def gltf(
|
|
|
134
134
|
):
|
|
135
135
|
"""Load a glTF 2.0 file
|
|
136
136
|
|
|
137
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
137
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
138
138
|
:type execution_context: int | str | None
|
|
139
139
|
:type undo: bool | None
|
|
140
140
|
:param filepath: File Path, Filepath used for importing the file
|
bpy/ops/info/__init__.pyi
CHANGED
|
@@ -4,55 +4,55 @@ import typing_extensions
|
|
|
4
4
|
import bpy.types
|
|
5
5
|
|
|
6
6
|
def report_copy(
|
|
7
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
7
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
8
8
|
execution_context: int | str | None = None,
|
|
9
9
|
undo: bool | None = None,
|
|
10
10
|
):
|
|
11
11
|
"""Copy selected reports to clipboard
|
|
12
12
|
|
|
13
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
13
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
14
14
|
:type execution_context: int | str | None
|
|
15
15
|
:type undo: bool | None
|
|
16
16
|
"""
|
|
17
17
|
|
|
18
18
|
def report_delete(
|
|
19
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
19
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
20
20
|
execution_context: int | str | None = None,
|
|
21
21
|
undo: bool | None = None,
|
|
22
22
|
):
|
|
23
23
|
"""Delete selected reports
|
|
24
24
|
|
|
25
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
25
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
26
26
|
:type execution_context: int | str | None
|
|
27
27
|
:type undo: bool | None
|
|
28
28
|
"""
|
|
29
29
|
|
|
30
30
|
def report_replay(
|
|
31
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
31
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
32
32
|
execution_context: int | str | None = None,
|
|
33
33
|
undo: bool | None = None,
|
|
34
34
|
):
|
|
35
35
|
"""Replay selected reports
|
|
36
36
|
|
|
37
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
37
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
38
38
|
:type execution_context: int | str | None
|
|
39
39
|
:type undo: bool | None
|
|
40
40
|
"""
|
|
41
41
|
|
|
42
42
|
def reports_display_update(
|
|
43
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
43
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
44
44
|
execution_context: int | str | None = None,
|
|
45
45
|
undo: bool | None = None,
|
|
46
46
|
):
|
|
47
47
|
"""Update the display of reports in Blender UI (internal use)
|
|
48
48
|
|
|
49
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
49
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
50
50
|
:type execution_context: int | str | None
|
|
51
51
|
:type undo: bool | None
|
|
52
52
|
"""
|
|
53
53
|
|
|
54
54
|
def select_all(
|
|
55
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
55
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
56
56
|
execution_context: int | str | None = None,
|
|
57
57
|
undo: bool | None = None,
|
|
58
58
|
*,
|
|
@@ -60,7 +60,7 @@ def select_all(
|
|
|
60
60
|
):
|
|
61
61
|
"""Change selection of all visible reports
|
|
62
62
|
|
|
63
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
63
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
64
64
|
:type execution_context: int | str | None
|
|
65
65
|
:type undo: bool | None
|
|
66
66
|
:param action: Action, Selection action to execute
|
|
@@ -80,7 +80,7 @@ def select_all(
|
|
|
80
80
|
"""
|
|
81
81
|
|
|
82
82
|
def select_box(
|
|
83
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
83
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
84
84
|
execution_context: int | str | None = None,
|
|
85
85
|
undo: bool | None = None,
|
|
86
86
|
*,
|
|
@@ -93,7 +93,7 @@ def select_box(
|
|
|
93
93
|
):
|
|
94
94
|
"""Toggle box selection
|
|
95
95
|
|
|
96
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
96
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
97
97
|
:type execution_context: int | str | None
|
|
98
98
|
:type undo: bool | None
|
|
99
99
|
:param xmin: X Min
|
|
@@ -120,7 +120,7 @@ def select_box(
|
|
|
120
120
|
"""
|
|
121
121
|
|
|
122
122
|
def select_pick(
|
|
123
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
123
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
124
124
|
execution_context: int | str | None = None,
|
|
125
125
|
undo: bool | None = None,
|
|
126
126
|
*,
|
|
@@ -129,7 +129,7 @@ def select_pick(
|
|
|
129
129
|
):
|
|
130
130
|
"""Select reports by index
|
|
131
131
|
|
|
132
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
132
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
133
133
|
:type execution_context: int | str | None
|
|
134
134
|
:type undo: bool | None
|
|
135
135
|
:param report_index: Report, Index of the report
|
bpy/ops/lattice/__init__.pyi
CHANGED
|
@@ -5,7 +5,7 @@ import bpy.types
|
|
|
5
5
|
import bpy.typing
|
|
6
6
|
|
|
7
7
|
def flip(
|
|
8
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
8
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
9
9
|
execution_context: int | str | None = None,
|
|
10
10
|
undo: bool | None = None,
|
|
11
11
|
*,
|
|
@@ -13,7 +13,7 @@ def flip(
|
|
|
13
13
|
):
|
|
14
14
|
"""Mirror all control points without inverting the lattice deform
|
|
15
15
|
|
|
16
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
16
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
17
17
|
:type execution_context: int | str | None
|
|
18
18
|
:type undo: bool | None
|
|
19
19
|
:param axis: Flip Axis, Coordinates along this axis get flipped
|
|
@@ -21,19 +21,19 @@ def flip(
|
|
|
21
21
|
"""
|
|
22
22
|
|
|
23
23
|
def make_regular(
|
|
24
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
24
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
25
25
|
execution_context: int | str | None = None,
|
|
26
26
|
undo: bool | None = None,
|
|
27
27
|
):
|
|
28
28
|
"""Set UVW control points a uniform distance apart
|
|
29
29
|
|
|
30
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
30
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
31
31
|
:type execution_context: int | str | None
|
|
32
32
|
:type undo: bool | None
|
|
33
33
|
"""
|
|
34
34
|
|
|
35
35
|
def select_all(
|
|
36
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
36
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
37
37
|
execution_context: int | str | None = None,
|
|
38
38
|
undo: bool | None = None,
|
|
39
39
|
*,
|
|
@@ -41,7 +41,7 @@ def select_all(
|
|
|
41
41
|
):
|
|
42
42
|
"""Change selection of all UVW control points
|
|
43
43
|
|
|
44
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
44
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
45
45
|
:type execution_context: int | str | None
|
|
46
46
|
:type undo: bool | None
|
|
47
47
|
:param action: Action, Selection action to execute
|
|
@@ -61,19 +61,19 @@ def select_all(
|
|
|
61
61
|
"""
|
|
62
62
|
|
|
63
63
|
def select_less(
|
|
64
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
64
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
65
65
|
execution_context: int | str | None = None,
|
|
66
66
|
undo: bool | None = None,
|
|
67
67
|
):
|
|
68
68
|
"""Deselect vertices at the boundary of each selection region
|
|
69
69
|
|
|
70
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
70
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
71
71
|
:type execution_context: int | str | None
|
|
72
72
|
:type undo: bool | None
|
|
73
73
|
"""
|
|
74
74
|
|
|
75
75
|
def select_mirror(
|
|
76
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
76
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
77
77
|
execution_context: int | str | None = None,
|
|
78
78
|
undo: bool | None = None,
|
|
79
79
|
*,
|
|
@@ -82,7 +82,7 @@ def select_mirror(
|
|
|
82
82
|
):
|
|
83
83
|
"""Select mirrored lattice points
|
|
84
84
|
|
|
85
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
85
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
86
86
|
:type execution_context: int | str | None
|
|
87
87
|
:type undo: bool | None
|
|
88
88
|
:param axis: Axis
|
|
@@ -92,19 +92,19 @@ def select_mirror(
|
|
|
92
92
|
"""
|
|
93
93
|
|
|
94
94
|
def select_more(
|
|
95
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
95
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
96
96
|
execution_context: int | str | None = None,
|
|
97
97
|
undo: bool | None = None,
|
|
98
98
|
):
|
|
99
99
|
"""Select vertex directly linked to already selected ones
|
|
100
100
|
|
|
101
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
101
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
102
102
|
:type execution_context: int | str | None
|
|
103
103
|
:type undo: bool | None
|
|
104
104
|
"""
|
|
105
105
|
|
|
106
106
|
def select_random(
|
|
107
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
107
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
108
108
|
execution_context: int | str | None = None,
|
|
109
109
|
undo: bool | None = None,
|
|
110
110
|
*,
|
|
@@ -114,7 +114,7 @@ def select_random(
|
|
|
114
114
|
):
|
|
115
115
|
"""Randomly select UVW control points
|
|
116
116
|
|
|
117
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
117
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
118
118
|
:type execution_context: int | str | None
|
|
119
119
|
:type undo: bool | None
|
|
120
120
|
:param ratio: Ratio, Portion of items to select randomly
|
|
@@ -132,7 +132,7 @@ def select_random(
|
|
|
132
132
|
"""
|
|
133
133
|
|
|
134
134
|
def select_ungrouped(
|
|
135
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
135
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
136
136
|
execution_context: int | str | None = None,
|
|
137
137
|
undo: bool | None = None,
|
|
138
138
|
*,
|
|
@@ -140,7 +140,7 @@ def select_ungrouped(
|
|
|
140
140
|
):
|
|
141
141
|
"""Select vertices without a group
|
|
142
142
|
|
|
143
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
143
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
144
144
|
:type execution_context: int | str | None
|
|
145
145
|
:type undo: bool | None
|
|
146
146
|
:param extend: Extend, Extend the selection
|
bpy/ops/marker/__init__.pyi
CHANGED
|
@@ -4,31 +4,31 @@ import typing_extensions
|
|
|
4
4
|
import bpy.types
|
|
5
5
|
|
|
6
6
|
def add(
|
|
7
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
7
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
8
8
|
execution_context: int | str | None = None,
|
|
9
9
|
undo: bool | None = None,
|
|
10
10
|
):
|
|
11
11
|
"""Add a new time marker
|
|
12
12
|
|
|
13
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
13
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
14
14
|
:type execution_context: int | str | None
|
|
15
15
|
:type undo: bool | None
|
|
16
16
|
"""
|
|
17
17
|
|
|
18
18
|
def camera_bind(
|
|
19
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
19
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
20
20
|
execution_context: int | str | None = None,
|
|
21
21
|
undo: bool | None = None,
|
|
22
22
|
):
|
|
23
23
|
"""Bind the selected camera to a marker on the current frame
|
|
24
24
|
|
|
25
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
25
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
26
26
|
:type execution_context: int | str | None
|
|
27
27
|
:type undo: bool | None
|
|
28
28
|
"""
|
|
29
29
|
|
|
30
30
|
def delete(
|
|
31
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
31
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
32
32
|
execution_context: int | str | None = None,
|
|
33
33
|
undo: bool | None = None,
|
|
34
34
|
*,
|
|
@@ -36,7 +36,7 @@ def delete(
|
|
|
36
36
|
):
|
|
37
37
|
"""Delete selected time marker(s)
|
|
38
38
|
|
|
39
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
39
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
40
40
|
:type execution_context: int | str | None
|
|
41
41
|
:type undo: bool | None
|
|
42
42
|
:param confirm: Confirm, Prompt for confirmation
|
|
@@ -44,7 +44,7 @@ def delete(
|
|
|
44
44
|
"""
|
|
45
45
|
|
|
46
46
|
def duplicate(
|
|
47
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
47
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
48
48
|
execution_context: int | str | None = None,
|
|
49
49
|
undo: bool | None = None,
|
|
50
50
|
*,
|
|
@@ -52,7 +52,7 @@ def duplicate(
|
|
|
52
52
|
):
|
|
53
53
|
"""Duplicate selected time marker(s)
|
|
54
54
|
|
|
55
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
55
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
56
56
|
:type execution_context: int | str | None
|
|
57
57
|
:type undo: bool | None
|
|
58
58
|
:param frames: Frames
|
|
@@ -60,7 +60,7 @@ def duplicate(
|
|
|
60
60
|
"""
|
|
61
61
|
|
|
62
62
|
def make_links_scene(
|
|
63
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
63
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
64
64
|
execution_context: int | str | None = None,
|
|
65
65
|
undo: bool | None = None,
|
|
66
66
|
*,
|
|
@@ -68,7 +68,7 @@ def make_links_scene(
|
|
|
68
68
|
):
|
|
69
69
|
"""Copy selected markers to another scene
|
|
70
70
|
|
|
71
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
71
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
72
72
|
:type execution_context: int | str | None
|
|
73
73
|
:type undo: bool | None
|
|
74
74
|
:param scene: Scene
|
|
@@ -76,7 +76,7 @@ def make_links_scene(
|
|
|
76
76
|
"""
|
|
77
77
|
|
|
78
78
|
def move(
|
|
79
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
79
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
80
80
|
execution_context: int | str | None = None,
|
|
81
81
|
undo: bool | None = None,
|
|
82
82
|
*,
|
|
@@ -85,7 +85,7 @@ def move(
|
|
|
85
85
|
):
|
|
86
86
|
"""Move selected time marker(s)
|
|
87
87
|
|
|
88
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
88
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
89
89
|
:type execution_context: int | str | None
|
|
90
90
|
:type undo: bool | None
|
|
91
91
|
:param frames: Frames
|
|
@@ -95,7 +95,7 @@ def move(
|
|
|
95
95
|
"""
|
|
96
96
|
|
|
97
97
|
def rename(
|
|
98
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
98
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
99
99
|
execution_context: int | str | None = None,
|
|
100
100
|
undo: bool | None = None,
|
|
101
101
|
*,
|
|
@@ -103,7 +103,7 @@ def rename(
|
|
|
103
103
|
):
|
|
104
104
|
"""Rename first selected time marker
|
|
105
105
|
|
|
106
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
106
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
107
107
|
:type execution_context: int | str | None
|
|
108
108
|
:type undo: bool | None
|
|
109
109
|
:param name: Name, New name for marker
|
|
@@ -111,7 +111,7 @@ def rename(
|
|
|
111
111
|
"""
|
|
112
112
|
|
|
113
113
|
def select(
|
|
114
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
114
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
115
115
|
execution_context: int | str | None = None,
|
|
116
116
|
undo: bool | None = None,
|
|
117
117
|
*,
|
|
@@ -123,7 +123,7 @@ def select(
|
|
|
123
123
|
):
|
|
124
124
|
"""Select time marker(s)
|
|
125
125
|
|
|
126
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
126
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
127
127
|
:type execution_context: int | str | None
|
|
128
128
|
:type undo: bool | None
|
|
129
129
|
:param wait_to_deselect_others: Wait to Deselect Others
|
|
@@ -139,7 +139,7 @@ def select(
|
|
|
139
139
|
"""
|
|
140
140
|
|
|
141
141
|
def select_all(
|
|
142
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
142
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
143
143
|
execution_context: int | str | None = None,
|
|
144
144
|
undo: bool | None = None,
|
|
145
145
|
*,
|
|
@@ -147,7 +147,7 @@ def select_all(
|
|
|
147
147
|
):
|
|
148
148
|
"""Change selection of all time markers
|
|
149
149
|
|
|
150
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
150
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
151
151
|
:type execution_context: int | str | None
|
|
152
152
|
:type undo: bool | None
|
|
153
153
|
:param action: Action, Selection action to execute
|
|
@@ -167,7 +167,7 @@ def select_all(
|
|
|
167
167
|
"""
|
|
168
168
|
|
|
169
169
|
def select_box(
|
|
170
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
170
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
171
171
|
execution_context: int | str | None = None,
|
|
172
172
|
undo: bool | None = None,
|
|
173
173
|
*,
|
|
@@ -181,7 +181,7 @@ def select_box(
|
|
|
181
181
|
):
|
|
182
182
|
"""Select all time markers using box selection
|
|
183
183
|
|
|
184
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
184
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
185
185
|
:type execution_context: int | str | None
|
|
186
186
|
:type undo: bool | None
|
|
187
187
|
:param xmin: X Min
|
|
@@ -210,7 +210,7 @@ def select_box(
|
|
|
210
210
|
"""
|
|
211
211
|
|
|
212
212
|
def select_leftright(
|
|
213
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
213
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
214
214
|
execution_context: int | str | None = None,
|
|
215
215
|
undo: bool | None = None,
|
|
216
216
|
*,
|
|
@@ -219,7 +219,7 @@ def select_leftright(
|
|
|
219
219
|
):
|
|
220
220
|
"""Select markers on and left/right of the current frame
|
|
221
221
|
|
|
222
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
222
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
223
223
|
:type execution_context: int | str | None
|
|
224
224
|
:type undo: bool | None
|
|
225
225
|
:param mode: Mode
|