fake-bpy-module 20240927__py3-none-any.whl → 20240929__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
- bl_ui/space_dopesheet/__init__.pyi +25 -0
- bl_ui/space_view3d/__init__.pyi +36 -0
- bpy/__init__.pyi +1 -1
- bpy/ops/action/__init__.pyi +76 -76
- bpy/ops/anim/__init__.pyi +144 -120
- 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 +220 -200
- 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 +449 -226
- bpy/typing/__init__.pyi +1 -0
- bpy_extras/object_utils/__init__.pyi +4 -4
- {fake_bpy_module-20240927.dist-info → fake_bpy_module-20240929.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240927.dist-info → fake_bpy_module-20240929.dist-info}/RECORD +87 -87
- {fake_bpy_module-20240927.dist-info → fake_bpy_module-20240929.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240927.dist-info → fake_bpy_module-20240929.dist-info}/top_level.txt +0 -0
bpy/ops/particle/__init__.pyi
CHANGED
|
@@ -4,7 +4,7 @@ import typing_extensions
|
|
|
4
4
|
import bpy.types
|
|
5
5
|
|
|
6
6
|
def brush_edit(
|
|
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 brush_edit(
|
|
|
13
13
|
):
|
|
14
14
|
"""Apply a stroke of brush to the particles
|
|
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 stroke: Stroke
|
|
@@ -21,7 +21,7 @@ def brush_edit(
|
|
|
21
21
|
"""
|
|
22
22
|
|
|
23
23
|
def connect_hair(
|
|
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
|
*,
|
|
@@ -29,7 +29,7 @@ def connect_hair(
|
|
|
29
29
|
):
|
|
30
30
|
"""Connect hair to the emitter mesh
|
|
31
31
|
|
|
32
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
32
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
33
33
|
:type execution_context: int | str | None
|
|
34
34
|
:type undo: bool | None
|
|
35
35
|
:param all: All Hair, Connect all hair systems to the emitter mesh
|
|
@@ -37,7 +37,7 @@ def connect_hair(
|
|
|
37
37
|
"""
|
|
38
38
|
|
|
39
39
|
def copy_particle_systems(
|
|
40
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
40
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
41
41
|
execution_context: int | str | None = None,
|
|
42
42
|
undo: bool | None = None,
|
|
43
43
|
*,
|
|
@@ -47,7 +47,7 @@ def copy_particle_systems(
|
|
|
47
47
|
):
|
|
48
48
|
"""Copy particle systems from the active object to selected objects
|
|
49
49
|
|
|
50
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
50
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
51
51
|
:type execution_context: int | str | None
|
|
52
52
|
:type undo: bool | None
|
|
53
53
|
:param space: Space, Space transform for copying from one object to another
|
|
@@ -65,7 +65,7 @@ def copy_particle_systems(
|
|
|
65
65
|
"""
|
|
66
66
|
|
|
67
67
|
def delete(
|
|
68
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
68
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
69
69
|
execution_context: int | str | None = None,
|
|
70
70
|
undo: bool | None = None,
|
|
71
71
|
*,
|
|
@@ -73,7 +73,7 @@ def delete(
|
|
|
73
73
|
):
|
|
74
74
|
"""Delete selected particles or keys
|
|
75
75
|
|
|
76
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
76
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
77
77
|
:type execution_context: int | str | None
|
|
78
78
|
:type undo: bool | None
|
|
79
79
|
:param type: Type, Delete a full particle or only keys
|
|
@@ -81,7 +81,7 @@ def delete(
|
|
|
81
81
|
"""
|
|
82
82
|
|
|
83
83
|
def disconnect_hair(
|
|
84
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
84
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
85
85
|
execution_context: int | str | None = None,
|
|
86
86
|
undo: bool | None = None,
|
|
87
87
|
*,
|
|
@@ -89,7 +89,7 @@ def disconnect_hair(
|
|
|
89
89
|
):
|
|
90
90
|
"""Disconnect hair from the emitter mesh
|
|
91
91
|
|
|
92
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
92
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
93
93
|
:type execution_context: int | str | None
|
|
94
94
|
:type undo: bool | None
|
|
95
95
|
:param all: All Hair, Disconnect all hair systems from the emitter mesh
|
|
@@ -97,7 +97,7 @@ def disconnect_hair(
|
|
|
97
97
|
"""
|
|
98
98
|
|
|
99
99
|
def duplicate_particle_system(
|
|
100
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
100
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
101
101
|
execution_context: int | str | None = None,
|
|
102
102
|
undo: bool | None = None,
|
|
103
103
|
*,
|
|
@@ -105,7 +105,7 @@ def duplicate_particle_system(
|
|
|
105
105
|
):
|
|
106
106
|
"""Duplicate particle system within the active object
|
|
107
107
|
|
|
108
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
108
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
109
109
|
:type execution_context: int | str | None
|
|
110
110
|
:type undo: bool | None
|
|
111
111
|
:param use_duplicate_settings: Duplicate Settings, Duplicate settings as well, so the new particle system uses its own settings
|
|
@@ -113,79 +113,79 @@ def duplicate_particle_system(
|
|
|
113
113
|
"""
|
|
114
114
|
|
|
115
115
|
def dupliob_copy(
|
|
116
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
116
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
117
117
|
execution_context: int | str | None = None,
|
|
118
118
|
undo: bool | None = None,
|
|
119
119
|
):
|
|
120
120
|
"""Duplicate the current instance object
|
|
121
121
|
|
|
122
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
122
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
123
123
|
:type execution_context: int | str | None
|
|
124
124
|
:type undo: bool | None
|
|
125
125
|
"""
|
|
126
126
|
|
|
127
127
|
def dupliob_move_down(
|
|
128
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
128
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
129
129
|
execution_context: int | str | None = None,
|
|
130
130
|
undo: bool | None = None,
|
|
131
131
|
):
|
|
132
132
|
"""Move instance object down in the list
|
|
133
133
|
|
|
134
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
134
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
135
135
|
:type execution_context: int | str | None
|
|
136
136
|
:type undo: bool | None
|
|
137
137
|
"""
|
|
138
138
|
|
|
139
139
|
def dupliob_move_up(
|
|
140
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
140
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
141
141
|
execution_context: int | str | None = None,
|
|
142
142
|
undo: bool | None = None,
|
|
143
143
|
):
|
|
144
144
|
"""Move instance object up in the list
|
|
145
145
|
|
|
146
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
146
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
147
147
|
:type execution_context: int | str | None
|
|
148
148
|
:type undo: bool | None
|
|
149
149
|
"""
|
|
150
150
|
|
|
151
151
|
def dupliob_refresh(
|
|
152
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
152
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
153
153
|
execution_context: int | str | None = None,
|
|
154
154
|
undo: bool | None = None,
|
|
155
155
|
):
|
|
156
156
|
"""Refresh list of instance objects and their weights
|
|
157
157
|
|
|
158
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
158
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
159
159
|
:type execution_context: int | str | None
|
|
160
160
|
:type undo: bool | None
|
|
161
161
|
"""
|
|
162
162
|
|
|
163
163
|
def dupliob_remove(
|
|
164
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
164
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
165
165
|
execution_context: int | str | None = None,
|
|
166
166
|
undo: bool | None = None,
|
|
167
167
|
):
|
|
168
168
|
"""Remove the selected instance object
|
|
169
169
|
|
|
170
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
170
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
171
171
|
:type execution_context: int | str | None
|
|
172
172
|
:type undo: bool | None
|
|
173
173
|
"""
|
|
174
174
|
|
|
175
175
|
def edited_clear(
|
|
176
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
176
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
177
177
|
execution_context: int | str | None = None,
|
|
178
178
|
undo: bool | None = None,
|
|
179
179
|
):
|
|
180
180
|
"""Undo all edition performed on the particle system
|
|
181
181
|
|
|
182
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
182
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
183
183
|
:type execution_context: int | str | None
|
|
184
184
|
:type undo: bool | None
|
|
185
185
|
"""
|
|
186
186
|
|
|
187
187
|
def hair_dynamics_preset_add(
|
|
188
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
188
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
189
189
|
execution_context: int | str | None = None,
|
|
190
190
|
undo: bool | None = None,
|
|
191
191
|
*,
|
|
@@ -195,7 +195,7 @@ def hair_dynamics_preset_add(
|
|
|
195
195
|
):
|
|
196
196
|
"""Add or remove a Hair Dynamics Preset
|
|
197
197
|
|
|
198
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
198
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
199
199
|
:type execution_context: int | str | None
|
|
200
200
|
:type undo: bool | None
|
|
201
201
|
:param name: Name, Name of the preset, used to make the path name
|
|
@@ -207,7 +207,7 @@ def hair_dynamics_preset_add(
|
|
|
207
207
|
"""
|
|
208
208
|
|
|
209
209
|
def hide(
|
|
210
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
210
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
211
211
|
execution_context: int | str | None = None,
|
|
212
212
|
undo: bool | None = None,
|
|
213
213
|
*,
|
|
@@ -215,7 +215,7 @@ def hide(
|
|
|
215
215
|
):
|
|
216
216
|
"""Hide selected particles
|
|
217
217
|
|
|
218
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
218
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
219
219
|
:type execution_context: int | str | None
|
|
220
220
|
:type undo: bool | None
|
|
221
221
|
:param unselected: Unselected, Hide unselected rather than selected
|
|
@@ -223,55 +223,55 @@ def hide(
|
|
|
223
223
|
"""
|
|
224
224
|
|
|
225
225
|
def mirror(
|
|
226
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
226
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
227
227
|
execution_context: int | str | None = None,
|
|
228
228
|
undo: bool | None = None,
|
|
229
229
|
):
|
|
230
230
|
"""Duplicate and mirror the selected particles along the local X axis
|
|
231
231
|
|
|
232
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
232
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
233
233
|
:type execution_context: int | str | None
|
|
234
234
|
:type undo: bool | None
|
|
235
235
|
"""
|
|
236
236
|
|
|
237
237
|
def new(
|
|
238
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
238
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
239
239
|
execution_context: int | str | None = None,
|
|
240
240
|
undo: bool | None = None,
|
|
241
241
|
):
|
|
242
242
|
"""Add new particle settings
|
|
243
243
|
|
|
244
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
244
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
245
245
|
:type execution_context: int | str | None
|
|
246
246
|
:type undo: bool | None
|
|
247
247
|
"""
|
|
248
248
|
|
|
249
249
|
def new_target(
|
|
250
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
250
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
251
251
|
execution_context: int | str | None = None,
|
|
252
252
|
undo: bool | None = None,
|
|
253
253
|
):
|
|
254
254
|
"""Add a new particle target
|
|
255
255
|
|
|
256
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
256
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
257
257
|
:type execution_context: int | str | None
|
|
258
258
|
:type undo: bool | None
|
|
259
259
|
"""
|
|
260
260
|
|
|
261
261
|
def particle_edit_toggle(
|
|
262
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
262
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
263
263
|
execution_context: int | str | None = None,
|
|
264
264
|
undo: bool | None = None,
|
|
265
265
|
):
|
|
266
266
|
"""Toggle particle edit mode
|
|
267
267
|
|
|
268
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
268
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
269
269
|
:type execution_context: int | str | None
|
|
270
270
|
:type undo: bool | None
|
|
271
271
|
"""
|
|
272
272
|
|
|
273
273
|
def rekey(
|
|
274
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
274
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
275
275
|
execution_context: int | str | None = None,
|
|
276
276
|
undo: bool | None = None,
|
|
277
277
|
*,
|
|
@@ -279,7 +279,7 @@ def rekey(
|
|
|
279
279
|
):
|
|
280
280
|
"""Change the number of keys of selected particles (root and tip keys included)
|
|
281
281
|
|
|
282
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
282
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
283
283
|
:type execution_context: int | str | None
|
|
284
284
|
:type undo: bool | None
|
|
285
285
|
:param keys_number: Number of Keys
|
|
@@ -287,7 +287,7 @@ def rekey(
|
|
|
287
287
|
"""
|
|
288
288
|
|
|
289
289
|
def remove_doubles(
|
|
290
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
290
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
291
291
|
execution_context: int | str | None = None,
|
|
292
292
|
undo: bool | None = None,
|
|
293
293
|
*,
|
|
@@ -295,7 +295,7 @@ def remove_doubles(
|
|
|
295
295
|
):
|
|
296
296
|
"""Remove selected particles close enough of others
|
|
297
297
|
|
|
298
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
298
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
299
299
|
:type execution_context: int | str | None
|
|
300
300
|
:type undo: bool | None
|
|
301
301
|
:param threshold: Merge Distance, Threshold distance within which particles are removed
|
|
@@ -303,7 +303,7 @@ def remove_doubles(
|
|
|
303
303
|
"""
|
|
304
304
|
|
|
305
305
|
def reveal(
|
|
306
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
306
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
307
307
|
execution_context: int | str | None = None,
|
|
308
308
|
undo: bool | None = None,
|
|
309
309
|
*,
|
|
@@ -311,7 +311,7 @@ def reveal(
|
|
|
311
311
|
):
|
|
312
312
|
"""Show hidden particles
|
|
313
313
|
|
|
314
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
314
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
315
315
|
:type execution_context: int | str | None
|
|
316
316
|
:type undo: bool | None
|
|
317
317
|
:param select: Select
|
|
@@ -319,7 +319,7 @@ def reveal(
|
|
|
319
319
|
"""
|
|
320
320
|
|
|
321
321
|
def select_all(
|
|
322
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
322
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
323
323
|
execution_context: int | str | None = None,
|
|
324
324
|
undo: bool | None = None,
|
|
325
325
|
*,
|
|
@@ -327,7 +327,7 @@ def select_all(
|
|
|
327
327
|
):
|
|
328
328
|
"""(De)select all particles' keys
|
|
329
329
|
|
|
330
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
330
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
331
331
|
:type execution_context: int | str | None
|
|
332
332
|
:type undo: bool | None
|
|
333
333
|
:param action: Action, Selection action to execute
|
|
@@ -347,31 +347,31 @@ def select_all(
|
|
|
347
347
|
"""
|
|
348
348
|
|
|
349
349
|
def select_less(
|
|
350
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
350
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
351
351
|
execution_context: int | str | None = None,
|
|
352
352
|
undo: bool | None = None,
|
|
353
353
|
):
|
|
354
354
|
"""Deselect boundary selected keys of each particle
|
|
355
355
|
|
|
356
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
356
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
357
357
|
:type execution_context: int | str | None
|
|
358
358
|
:type undo: bool | None
|
|
359
359
|
"""
|
|
360
360
|
|
|
361
361
|
def select_linked(
|
|
362
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
362
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
363
363
|
execution_context: int | str | None = None,
|
|
364
364
|
undo: bool | None = None,
|
|
365
365
|
):
|
|
366
366
|
"""Select all keys linked to already selected ones
|
|
367
367
|
|
|
368
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
368
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
369
369
|
:type execution_context: int | str | None
|
|
370
370
|
:type undo: bool | None
|
|
371
371
|
"""
|
|
372
372
|
|
|
373
373
|
def select_linked_pick(
|
|
374
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
374
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
375
375
|
execution_context: int | str | None = None,
|
|
376
376
|
undo: bool | None = None,
|
|
377
377
|
*,
|
|
@@ -380,7 +380,7 @@ def select_linked_pick(
|
|
|
380
380
|
):
|
|
381
381
|
"""Select nearest particle from mouse pointer
|
|
382
382
|
|
|
383
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
383
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
384
384
|
:type execution_context: int | str | None
|
|
385
385
|
:type undo: bool | None
|
|
386
386
|
:param deselect: Deselect, Deselect linked keys rather than selecting them
|
|
@@ -390,19 +390,19 @@ def select_linked_pick(
|
|
|
390
390
|
"""
|
|
391
391
|
|
|
392
392
|
def select_more(
|
|
393
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
393
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
394
394
|
execution_context: int | str | None = None,
|
|
395
395
|
undo: bool | None = None,
|
|
396
396
|
):
|
|
397
397
|
"""Select keys linked to boundary selected keys of each particle
|
|
398
398
|
|
|
399
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
399
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
400
400
|
:type execution_context: int | str | None
|
|
401
401
|
:type undo: bool | None
|
|
402
402
|
"""
|
|
403
403
|
|
|
404
404
|
def select_random(
|
|
405
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
405
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
406
406
|
execution_context: int | str | None = None,
|
|
407
407
|
undo: bool | None = None,
|
|
408
408
|
*,
|
|
@@ -413,7 +413,7 @@ def select_random(
|
|
|
413
413
|
):
|
|
414
414
|
"""Select a randomly distributed set of hair or points
|
|
415
415
|
|
|
416
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
416
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
417
417
|
:type execution_context: int | str | None
|
|
418
418
|
:type undo: bool | None
|
|
419
419
|
:param ratio: Ratio, Portion of items to select randomly
|
|
@@ -433,7 +433,7 @@ def select_random(
|
|
|
433
433
|
"""
|
|
434
434
|
|
|
435
435
|
def select_roots(
|
|
436
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
436
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
437
437
|
execution_context: int | str | None = None,
|
|
438
438
|
undo: bool | None = None,
|
|
439
439
|
*,
|
|
@@ -441,7 +441,7 @@ def select_roots(
|
|
|
441
441
|
):
|
|
442
442
|
"""Select roots of all visible particles
|
|
443
443
|
|
|
444
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
444
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
445
445
|
:type execution_context: int | str | None
|
|
446
446
|
:type undo: bool | None
|
|
447
447
|
:param action: Action, Selection action to execute
|
|
@@ -461,7 +461,7 @@ def select_roots(
|
|
|
461
461
|
"""
|
|
462
462
|
|
|
463
463
|
def select_tips(
|
|
464
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
464
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
465
465
|
execution_context: int | str | None = None,
|
|
466
466
|
undo: bool | None = None,
|
|
467
467
|
*,
|
|
@@ -469,7 +469,7 @@ def select_tips(
|
|
|
469
469
|
):
|
|
470
470
|
"""Select tips of all visible particles
|
|
471
471
|
|
|
472
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
472
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
473
473
|
:type execution_context: int | str | None
|
|
474
474
|
:type undo: bool | None
|
|
475
475
|
:param action: Action, Selection action to execute
|
|
@@ -489,79 +489,79 @@ def select_tips(
|
|
|
489
489
|
"""
|
|
490
490
|
|
|
491
491
|
def shape_cut(
|
|
492
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
492
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
493
493
|
execution_context: int | str | None = None,
|
|
494
494
|
undo: bool | None = None,
|
|
495
495
|
):
|
|
496
496
|
"""Cut hair to conform to the set shape object
|
|
497
497
|
|
|
498
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
498
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
499
499
|
:type execution_context: int | str | None
|
|
500
500
|
:type undo: bool | None
|
|
501
501
|
"""
|
|
502
502
|
|
|
503
503
|
def subdivide(
|
|
504
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
504
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
505
505
|
execution_context: int | str | None = None,
|
|
506
506
|
undo: bool | None = None,
|
|
507
507
|
):
|
|
508
508
|
"""Subdivide selected particles segments (adds keys)
|
|
509
509
|
|
|
510
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
510
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
511
511
|
:type execution_context: int | str | None
|
|
512
512
|
:type undo: bool | None
|
|
513
513
|
"""
|
|
514
514
|
|
|
515
515
|
def target_move_down(
|
|
516
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
516
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
517
517
|
execution_context: int | str | None = None,
|
|
518
518
|
undo: bool | None = None,
|
|
519
519
|
):
|
|
520
520
|
"""Move particle target down in the list
|
|
521
521
|
|
|
522
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
522
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
523
523
|
:type execution_context: int | str | None
|
|
524
524
|
:type undo: bool | None
|
|
525
525
|
"""
|
|
526
526
|
|
|
527
527
|
def target_move_up(
|
|
528
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
528
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
529
529
|
execution_context: int | str | None = None,
|
|
530
530
|
undo: bool | None = None,
|
|
531
531
|
):
|
|
532
532
|
"""Move particle target up in the list
|
|
533
533
|
|
|
534
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
534
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
535
535
|
:type execution_context: int | str | None
|
|
536
536
|
:type undo: bool | None
|
|
537
537
|
"""
|
|
538
538
|
|
|
539
539
|
def target_remove(
|
|
540
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
540
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
541
541
|
execution_context: int | str | None = None,
|
|
542
542
|
undo: bool | None = None,
|
|
543
543
|
):
|
|
544
544
|
"""Remove the selected particle target
|
|
545
545
|
|
|
546
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
546
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
547
547
|
:type execution_context: int | str | None
|
|
548
548
|
:type undo: bool | None
|
|
549
549
|
"""
|
|
550
550
|
|
|
551
551
|
def unify_length(
|
|
552
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
552
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
553
553
|
execution_context: int | str | None = None,
|
|
554
554
|
undo: bool | None = None,
|
|
555
555
|
):
|
|
556
556
|
"""Make selected hair the same length
|
|
557
557
|
|
|
558
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
558
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
559
559
|
:type execution_context: int | str | None
|
|
560
560
|
:type undo: bool | None
|
|
561
561
|
"""
|
|
562
562
|
|
|
563
563
|
def weight_set(
|
|
564
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
564
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
565
565
|
execution_context: int | str | None = None,
|
|
566
566
|
undo: bool | None = None,
|
|
567
567
|
*,
|
|
@@ -569,7 +569,7 @@ def weight_set(
|
|
|
569
569
|
):
|
|
570
570
|
"""Set the weight of selected keys
|
|
571
571
|
|
|
572
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
572
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
573
573
|
:type execution_context: int | str | None
|
|
574
574
|
:type undo: bool | None
|
|
575
575
|
:param factor: Factor, Interpolation factor between current brush weight, and keys' weights
|