fake-bpy-module 20240812__py3-none-any.whl → 20240814__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/space_view3d/__init__.pyi +31 -0
- bpy/ops/action/__init__.pyi +76 -76
- bpy/ops/anim/__init__.pyi +110 -110
- 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 +166 -166
- 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 +208 -208
- bpy/ops/object/__init__.pyi +473 -473
- 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 +72 -72
- bpy/ops/sculpt_curves/__init__.pyi +8 -8
- bpy/ops/sequencer/__init__.pyi +174 -174
- 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 +64 -64
- 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 +226 -226
- bpy/ops/workspace/__init__.pyi +14 -14
- bpy/ops/world/__init__.pyi +4 -4
- bpy/types/__init__.pyi +52 -36
- {fake_bpy_module-20240812.dist-info → fake_bpy_module-20240814.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240812.dist-info → fake_bpy_module-20240814.dist-info}/RECORD +83 -83
- {fake_bpy_module-20240812.dist-info → fake_bpy_module-20240814.dist-info}/WHEEL +1 -1
- freestyle/utils/__init__.pyi +1 -1
- {fake_bpy_module-20240812.dist-info → fake_bpy_module-20240814.dist-info}/top_level.txt +0 -0
bpy/ops/ptcache/__init__.pyi
CHANGED
|
@@ -7,13 +7,13 @@ GenericType1 = typing.TypeVar("GenericType1")
|
|
|
7
7
|
GenericType2 = typing.TypeVar("GenericType2")
|
|
8
8
|
|
|
9
9
|
def add(
|
|
10
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
10
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
11
11
|
execution_context: int | str | None = None,
|
|
12
12
|
undo: bool | None = None,
|
|
13
13
|
):
|
|
14
14
|
"""Add new cache
|
|
15
15
|
|
|
16
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
16
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
17
17
|
:type execution_context: int | str | None
|
|
18
18
|
:type undo: bool | None
|
|
19
19
|
"""
|
|
@@ -21,7 +21,7 @@ def add(
|
|
|
21
21
|
...
|
|
22
22
|
|
|
23
23
|
def bake(
|
|
24
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
24
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
25
25
|
execution_context: int | str | None = None,
|
|
26
26
|
undo: bool | None = None,
|
|
27
27
|
*,
|
|
@@ -29,7 +29,7 @@ def bake(
|
|
|
29
29
|
):
|
|
30
30
|
"""Bake physics
|
|
31
31
|
|
|
32
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
32
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
33
33
|
:type execution_context: int | str | None
|
|
34
34
|
:type undo: bool | None
|
|
35
35
|
:param bake: Bake
|
|
@@ -39,7 +39,7 @@ def bake(
|
|
|
39
39
|
...
|
|
40
40
|
|
|
41
41
|
def bake_all(
|
|
42
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
42
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
43
43
|
execution_context: int | str | None = None,
|
|
44
44
|
undo: bool | None = None,
|
|
45
45
|
*,
|
|
@@ -47,7 +47,7 @@ def bake_all(
|
|
|
47
47
|
):
|
|
48
48
|
"""Bake all physics
|
|
49
49
|
|
|
50
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
50
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
51
51
|
:type execution_context: int | str | None
|
|
52
52
|
:type undo: bool | None
|
|
53
53
|
:param bake: Bake
|
|
@@ -57,13 +57,13 @@ def bake_all(
|
|
|
57
57
|
...
|
|
58
58
|
|
|
59
59
|
def bake_from_cache(
|
|
60
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
60
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
61
61
|
execution_context: int | str | None = None,
|
|
62
62
|
undo: bool | None = None,
|
|
63
63
|
):
|
|
64
64
|
"""Bake from cache
|
|
65
65
|
|
|
66
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
66
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
67
67
|
:type execution_context: int | str | None
|
|
68
68
|
:type undo: bool | None
|
|
69
69
|
"""
|
|
@@ -71,13 +71,13 @@ def bake_from_cache(
|
|
|
71
71
|
...
|
|
72
72
|
|
|
73
73
|
def free_bake(
|
|
74
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
74
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
75
75
|
execution_context: int | str | None = None,
|
|
76
76
|
undo: bool | None = None,
|
|
77
77
|
):
|
|
78
78
|
"""Delete physics bake
|
|
79
79
|
|
|
80
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
80
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
81
81
|
:type execution_context: int | str | None
|
|
82
82
|
:type undo: bool | None
|
|
83
83
|
"""
|
|
@@ -85,13 +85,13 @@ def free_bake(
|
|
|
85
85
|
...
|
|
86
86
|
|
|
87
87
|
def free_bake_all(
|
|
88
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
88
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
89
89
|
execution_context: int | str | None = None,
|
|
90
90
|
undo: bool | None = None,
|
|
91
91
|
):
|
|
92
92
|
"""Delete all baked caches of all objects in the current scene
|
|
93
93
|
|
|
94
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
94
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
95
95
|
:type execution_context: int | str | None
|
|
96
96
|
:type undo: bool | None
|
|
97
97
|
"""
|
|
@@ -99,13 +99,13 @@ def free_bake_all(
|
|
|
99
99
|
...
|
|
100
100
|
|
|
101
101
|
def remove(
|
|
102
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
102
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
103
103
|
execution_context: int | str | None = None,
|
|
104
104
|
undo: bool | None = None,
|
|
105
105
|
):
|
|
106
106
|
"""Delete current cache
|
|
107
107
|
|
|
108
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
108
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
109
109
|
:type execution_context: int | str | None
|
|
110
110
|
:type undo: bool | None
|
|
111
111
|
"""
|
bpy/ops/render/__init__.pyi
CHANGED
|
@@ -7,7 +7,7 @@ GenericType1 = typing.TypeVar("GenericType1")
|
|
|
7
7
|
GenericType2 = typing.TypeVar("GenericType2")
|
|
8
8
|
|
|
9
9
|
def color_management_white_balance_preset_add(
|
|
10
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
10
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
11
11
|
execution_context: int | str | None = None,
|
|
12
12
|
undo: bool | None = None,
|
|
13
13
|
*,
|
|
@@ -17,7 +17,7 @@ def color_management_white_balance_preset_add(
|
|
|
17
17
|
):
|
|
18
18
|
"""Add or remove a white balance preset
|
|
19
19
|
|
|
20
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
20
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
21
21
|
:type execution_context: int | str | None
|
|
22
22
|
:type undo: bool | None
|
|
23
23
|
:param name: Name, Name of the preset, used to make the path name
|
|
@@ -31,7 +31,7 @@ def color_management_white_balance_preset_add(
|
|
|
31
31
|
...
|
|
32
32
|
|
|
33
33
|
def cycles_integrator_preset_add(
|
|
34
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
34
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
35
35
|
execution_context: int | str | None = None,
|
|
36
36
|
undo: bool | None = None,
|
|
37
37
|
*,
|
|
@@ -41,7 +41,7 @@ def cycles_integrator_preset_add(
|
|
|
41
41
|
):
|
|
42
42
|
"""Add an Integrator Preset
|
|
43
43
|
|
|
44
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
44
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
45
45
|
:type execution_context: int | str | None
|
|
46
46
|
:type undo: bool | None
|
|
47
47
|
:param name: Name, Name of the preset, used to make the path name
|
|
@@ -55,7 +55,7 @@ def cycles_integrator_preset_add(
|
|
|
55
55
|
...
|
|
56
56
|
|
|
57
57
|
def cycles_performance_preset_add(
|
|
58
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
58
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
59
59
|
execution_context: int | str | None = None,
|
|
60
60
|
undo: bool | None = None,
|
|
61
61
|
*,
|
|
@@ -65,7 +65,7 @@ def cycles_performance_preset_add(
|
|
|
65
65
|
):
|
|
66
66
|
"""Add an Performance Preset
|
|
67
67
|
|
|
68
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
68
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
69
69
|
:type execution_context: int | str | None
|
|
70
70
|
:type undo: bool | None
|
|
71
71
|
:param name: Name, Name of the preset, used to make the path name
|
|
@@ -79,7 +79,7 @@ def cycles_performance_preset_add(
|
|
|
79
79
|
...
|
|
80
80
|
|
|
81
81
|
def cycles_sampling_preset_add(
|
|
82
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
82
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
83
83
|
execution_context: int | str | None = None,
|
|
84
84
|
undo: bool | None = None,
|
|
85
85
|
*,
|
|
@@ -89,7 +89,7 @@ def cycles_sampling_preset_add(
|
|
|
89
89
|
):
|
|
90
90
|
"""Add a Sampling Preset
|
|
91
91
|
|
|
92
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
92
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
93
93
|
:type execution_context: int | str | None
|
|
94
94
|
:type undo: bool | None
|
|
95
95
|
:param name: Name, Name of the preset, used to make the path name
|
|
@@ -103,7 +103,7 @@ def cycles_sampling_preset_add(
|
|
|
103
103
|
...
|
|
104
104
|
|
|
105
105
|
def cycles_viewport_sampling_preset_add(
|
|
106
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
106
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
107
107
|
execution_context: int | str | None = None,
|
|
108
108
|
undo: bool | None = None,
|
|
109
109
|
*,
|
|
@@ -113,7 +113,7 @@ def cycles_viewport_sampling_preset_add(
|
|
|
113
113
|
):
|
|
114
114
|
"""Add a Viewport Sampling Preset
|
|
115
115
|
|
|
116
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
116
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
117
117
|
:type execution_context: int | str | None
|
|
118
118
|
:type undo: bool | None
|
|
119
119
|
:param name: Name, Name of the preset, used to make the path name
|
|
@@ -127,7 +127,7 @@ def cycles_viewport_sampling_preset_add(
|
|
|
127
127
|
...
|
|
128
128
|
|
|
129
129
|
def eevee_raytracing_preset_add(
|
|
130
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
130
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
131
131
|
execution_context: int | str | None = None,
|
|
132
132
|
undo: bool | None = None,
|
|
133
133
|
*,
|
|
@@ -137,7 +137,7 @@ def eevee_raytracing_preset_add(
|
|
|
137
137
|
):
|
|
138
138
|
"""Add or remove an EEVEE ray-tracing preset
|
|
139
139
|
|
|
140
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
140
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
141
141
|
:type execution_context: int | str | None
|
|
142
142
|
:type undo: bool | None
|
|
143
143
|
:param name: Name, Name of the preset, used to make the path name
|
|
@@ -151,7 +151,7 @@ def eevee_raytracing_preset_add(
|
|
|
151
151
|
...
|
|
152
152
|
|
|
153
153
|
def opengl(
|
|
154
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
154
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
155
155
|
execution_context: int | str | None = None,
|
|
156
156
|
undo: bool | None = None,
|
|
157
157
|
*,
|
|
@@ -163,7 +163,7 @@ def opengl(
|
|
|
163
163
|
):
|
|
164
164
|
"""Take a snapshot of the active viewport
|
|
165
165
|
|
|
166
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
166
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
167
167
|
:type execution_context: int | str | None
|
|
168
168
|
:type undo: bool | None
|
|
169
169
|
:param animation: Animation, Render files from the animation range of this scene
|
|
@@ -181,13 +181,13 @@ def opengl(
|
|
|
181
181
|
...
|
|
182
182
|
|
|
183
183
|
def play_rendered_anim(
|
|
184
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
184
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
185
185
|
execution_context: int | str | None = None,
|
|
186
186
|
undo: bool | None = None,
|
|
187
187
|
):
|
|
188
188
|
"""Play back rendered frames/movies using an external player
|
|
189
189
|
|
|
190
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
190
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
191
191
|
:type execution_context: int | str | None
|
|
192
192
|
:type undo: bool | None
|
|
193
193
|
"""
|
|
@@ -195,7 +195,7 @@ def play_rendered_anim(
|
|
|
195
195
|
...
|
|
196
196
|
|
|
197
197
|
def preset_add(
|
|
198
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
198
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
199
199
|
execution_context: int | str | None = None,
|
|
200
200
|
undo: bool | None = None,
|
|
201
201
|
*,
|
|
@@ -205,7 +205,7 @@ def preset_add(
|
|
|
205
205
|
):
|
|
206
206
|
"""Add or remove a Render Preset
|
|
207
207
|
|
|
208
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
208
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
209
209
|
:type execution_context: int | str | None
|
|
210
210
|
:type undo: bool | None
|
|
211
211
|
:param name: Name, Name of the preset, used to make the path name
|
|
@@ -219,7 +219,7 @@ def preset_add(
|
|
|
219
219
|
...
|
|
220
220
|
|
|
221
221
|
def render(
|
|
222
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
222
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
223
223
|
execution_context: int | str | None = None,
|
|
224
224
|
undo: bool | None = None,
|
|
225
225
|
*,
|
|
@@ -231,7 +231,7 @@ def render(
|
|
|
231
231
|
):
|
|
232
232
|
"""Render active scene
|
|
233
233
|
|
|
234
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
234
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
235
235
|
:type execution_context: int | str | None
|
|
236
236
|
:type undo: bool | None
|
|
237
237
|
:param animation: Animation, Render files from the animation range of this scene
|
|
@@ -249,7 +249,7 @@ def render(
|
|
|
249
249
|
...
|
|
250
250
|
|
|
251
251
|
def shutter_curve_preset(
|
|
252
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
252
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
253
253
|
execution_context: int | str | None = None,
|
|
254
254
|
undo: bool | None = None,
|
|
255
255
|
*,
|
|
@@ -258,7 +258,7 @@ def shutter_curve_preset(
|
|
|
258
258
|
):
|
|
259
259
|
"""Set shutter curve
|
|
260
260
|
|
|
261
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
261
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
262
262
|
:type execution_context: int | str | None
|
|
263
263
|
:type undo: bool | None
|
|
264
264
|
:param shape: Mode
|
|
@@ -268,13 +268,13 @@ def shutter_curve_preset(
|
|
|
268
268
|
...
|
|
269
269
|
|
|
270
270
|
def view_cancel(
|
|
271
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
271
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
272
272
|
execution_context: int | str | None = None,
|
|
273
273
|
undo: bool | None = None,
|
|
274
274
|
):
|
|
275
275
|
"""Cancel show render view
|
|
276
276
|
|
|
277
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
277
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
278
278
|
:type execution_context: int | str | None
|
|
279
279
|
:type undo: bool | None
|
|
280
280
|
"""
|
|
@@ -282,13 +282,13 @@ def view_cancel(
|
|
|
282
282
|
...
|
|
283
283
|
|
|
284
284
|
def view_show(
|
|
285
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
285
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
286
286
|
execution_context: int | str | None = None,
|
|
287
287
|
undo: bool | None = None,
|
|
288
288
|
):
|
|
289
289
|
"""Toggle show render view
|
|
290
290
|
|
|
291
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
291
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
292
292
|
:type execution_context: int | str | None
|
|
293
293
|
:type undo: bool | None
|
|
294
294
|
"""
|
bpy/ops/rigidbody/__init__.pyi
CHANGED
|
@@ -7,7 +7,7 @@ GenericType1 = typing.TypeVar("GenericType1")
|
|
|
7
7
|
GenericType2 = typing.TypeVar("GenericType2")
|
|
8
8
|
|
|
9
9
|
def bake_to_keyframes(
|
|
10
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
10
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
11
11
|
execution_context: int | str | None = None,
|
|
12
12
|
undo: bool | None = None,
|
|
13
13
|
*,
|
|
@@ -17,7 +17,7 @@ def bake_to_keyframes(
|
|
|
17
17
|
):
|
|
18
18
|
"""Bake rigid body transformations of selected objects to keyframes
|
|
19
19
|
|
|
20
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
20
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
21
21
|
:type execution_context: int | str | None
|
|
22
22
|
:type undo: bool | None
|
|
23
23
|
:param frame_start: Start Frame, Start frame for baking
|
|
@@ -31,7 +31,7 @@ def bake_to_keyframes(
|
|
|
31
31
|
...
|
|
32
32
|
|
|
33
33
|
def connect(
|
|
34
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
34
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
35
35
|
execution_context: int | str | None = None,
|
|
36
36
|
undo: bool | None = None,
|
|
37
37
|
*,
|
|
@@ -52,7 +52,7 @@ def connect(
|
|
|
52
52
|
):
|
|
53
53
|
"""Create rigid body constraints between selected rigid bodies
|
|
54
54
|
|
|
55
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
55
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
56
56
|
:type execution_context: int | str | None
|
|
57
57
|
:type undo: bool | None
|
|
58
58
|
:param con_type: Type, Type of generated constraint
|
|
@@ -105,7 +105,7 @@ def connect(
|
|
|
105
105
|
...
|
|
106
106
|
|
|
107
107
|
def constraint_add(
|
|
108
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
108
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
109
109
|
execution_context: int | str | None = None,
|
|
110
110
|
undo: bool | None = None,
|
|
111
111
|
*,
|
|
@@ -123,7 +123,7 @@ def constraint_add(
|
|
|
123
123
|
):
|
|
124
124
|
"""Add Rigid Body Constraint to active object
|
|
125
125
|
|
|
126
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
126
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
127
127
|
:type execution_context: int | str | None
|
|
128
128
|
:type undo: bool | None
|
|
129
129
|
:param type: Rigid Body Constraint Type
|
|
@@ -133,13 +133,13 @@ def constraint_add(
|
|
|
133
133
|
...
|
|
134
134
|
|
|
135
135
|
def constraint_remove(
|
|
136
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
136
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
137
137
|
execution_context: int | str | None = None,
|
|
138
138
|
undo: bool | None = None,
|
|
139
139
|
):
|
|
140
140
|
"""Remove Rigid Body Constraint from Object
|
|
141
141
|
|
|
142
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
142
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
143
143
|
:type execution_context: int | str | None
|
|
144
144
|
:type undo: bool | None
|
|
145
145
|
"""
|
|
@@ -147,7 +147,7 @@ def constraint_remove(
|
|
|
147
147
|
...
|
|
148
148
|
|
|
149
149
|
def mass_calculate(
|
|
150
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
150
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
151
151
|
execution_context: int | str | None = None,
|
|
152
152
|
undo: bool | None = None,
|
|
153
153
|
*,
|
|
@@ -156,7 +156,7 @@ def mass_calculate(
|
|
|
156
156
|
):
|
|
157
157
|
"""Automatically calculate mass values for Rigid Body Objects based on volume
|
|
158
158
|
|
|
159
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
159
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
160
160
|
:type execution_context: int | str | None
|
|
161
161
|
:type undo: bool | None
|
|
162
162
|
:param material: Material Preset, Type of material that objects are made of (determines material density)
|
|
@@ -168,7 +168,7 @@ def mass_calculate(
|
|
|
168
168
|
...
|
|
169
169
|
|
|
170
170
|
def object_add(
|
|
171
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
171
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
172
172
|
execution_context: int | str | None = None,
|
|
173
173
|
undo: bool | None = None,
|
|
174
174
|
*,
|
|
@@ -176,7 +176,7 @@ def object_add(
|
|
|
176
176
|
):
|
|
177
177
|
"""Add active object as Rigid Body
|
|
178
178
|
|
|
179
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
179
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
180
180
|
:type execution_context: int | str | None
|
|
181
181
|
:type undo: bool | None
|
|
182
182
|
:param type: Rigid Body Type
|
|
@@ -186,13 +186,13 @@ def object_add(
|
|
|
186
186
|
...
|
|
187
187
|
|
|
188
188
|
def object_remove(
|
|
189
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
189
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
190
190
|
execution_context: int | str | None = None,
|
|
191
191
|
undo: bool | None = None,
|
|
192
192
|
):
|
|
193
193
|
"""Remove Rigid Body settings from Object
|
|
194
194
|
|
|
195
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
195
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
196
196
|
:type execution_context: int | str | None
|
|
197
197
|
:type undo: bool | None
|
|
198
198
|
"""
|
|
@@ -200,13 +200,13 @@ def object_remove(
|
|
|
200
200
|
...
|
|
201
201
|
|
|
202
202
|
def object_settings_copy(
|
|
203
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
203
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
204
204
|
execution_context: int | str | None = None,
|
|
205
205
|
undo: bool | None = None,
|
|
206
206
|
):
|
|
207
207
|
"""Copy Rigid Body settings from active object to selected
|
|
208
208
|
|
|
209
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
209
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
210
210
|
:type execution_context: int | str | None
|
|
211
211
|
:type undo: bool | None
|
|
212
212
|
"""
|
|
@@ -214,7 +214,7 @@ def object_settings_copy(
|
|
|
214
214
|
...
|
|
215
215
|
|
|
216
216
|
def objects_add(
|
|
217
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
217
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
218
218
|
execution_context: int | str | None = None,
|
|
219
219
|
undo: bool | None = None,
|
|
220
220
|
*,
|
|
@@ -222,7 +222,7 @@ def objects_add(
|
|
|
222
222
|
):
|
|
223
223
|
"""Add selected objects as Rigid Bodies
|
|
224
224
|
|
|
225
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
225
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
226
226
|
:type execution_context: int | str | None
|
|
227
227
|
:type undo: bool | None
|
|
228
228
|
:param type: Rigid Body Type
|
|
@@ -232,13 +232,13 @@ def objects_add(
|
|
|
232
232
|
...
|
|
233
233
|
|
|
234
234
|
def objects_remove(
|
|
235
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
235
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
236
236
|
execution_context: int | str | None = None,
|
|
237
237
|
undo: bool | None = None,
|
|
238
238
|
):
|
|
239
239
|
"""Remove selected objects from Rigid Body simulation
|
|
240
240
|
|
|
241
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
241
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
242
242
|
:type execution_context: int | str | None
|
|
243
243
|
:type undo: bool | None
|
|
244
244
|
"""
|
|
@@ -246,7 +246,7 @@ def objects_remove(
|
|
|
246
246
|
...
|
|
247
247
|
|
|
248
248
|
def shape_change(
|
|
249
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
249
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
250
250
|
execution_context: int | str | None = None,
|
|
251
251
|
undo: bool | None = None,
|
|
252
252
|
*,
|
|
@@ -264,7 +264,7 @@ def shape_change(
|
|
|
264
264
|
):
|
|
265
265
|
"""Change collision shapes for selected Rigid Body Objects
|
|
266
266
|
|
|
267
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
267
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
268
268
|
:type execution_context: int | str | None
|
|
269
269
|
:type undo: bool | None
|
|
270
270
|
:param type: Rigid Body Shape
|
|
@@ -274,13 +274,13 @@ def shape_change(
|
|
|
274
274
|
...
|
|
275
275
|
|
|
276
276
|
def world_add(
|
|
277
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
277
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
278
278
|
execution_context: int | str | None = None,
|
|
279
279
|
undo: bool | None = None,
|
|
280
280
|
):
|
|
281
281
|
"""Add Rigid Body simulation world to the current scene
|
|
282
282
|
|
|
283
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
283
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
284
284
|
:type execution_context: int | str | None
|
|
285
285
|
:type undo: bool | None
|
|
286
286
|
"""
|
|
@@ -288,13 +288,13 @@ def world_add(
|
|
|
288
288
|
...
|
|
289
289
|
|
|
290
290
|
def world_remove(
|
|
291
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
291
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
292
292
|
execution_context: int | str | None = None,
|
|
293
293
|
undo: bool | None = None,
|
|
294
294
|
):
|
|
295
295
|
"""Remove Rigid Body simulation world from the current scene
|
|
296
296
|
|
|
297
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
297
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
298
298
|
:type execution_context: int | str | None
|
|
299
299
|
:type undo: bool | None
|
|
300
300
|
"""
|