fake-bpy-module 20241208__py3-none-any.whl → 20241209__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.
- bpy/ops/action/__init__.pyi +38 -138
- bpy/ops/anim/__init__.pyi +61 -179
- bpy/ops/armature/__init__.pyi +48 -147
- bpy/ops/asset/__init__.pyi +16 -71
- bpy/ops/boid/__init__.pyi +8 -41
- bpy/ops/brush/__init__.pyi +13 -39
- bpy/ops/buttons/__init__.pyi +6 -29
- bpy/ops/cachefile/__init__.pyi +5 -19
- bpy/ops/camera/__init__.pyi +2 -5
- bpy/ops/clip/__init__.pyi +92 -290
- bpy/ops/cloth/__init__.pyi +1 -3
- bpy/ops/collection/__init__.pyi +9 -25
- bpy/ops/console/__init__.pyi +21 -79
- bpy/ops/constraint/__init__.pyi +18 -45
- bpy/ops/curve/__init__.pyi +51 -180
- bpy/ops/curves/__init__.pyi +28 -100
- bpy/ops/cycles/__init__.pyi +3 -9
- bpy/ops/dpaint/__init__.pyi +5 -19
- bpy/ops/ed/__init__.pyi +12 -53
- bpy/ops/export_anim/__init__.pyi +1 -3
- bpy/ops/export_scene/__init__.pyi +2 -5
- bpy/ops/extensions/__init__.pyi +34 -110
- bpy/ops/file/__init__.pyi +40 -167
- bpy/ops/fluid/__init__.pyi +14 -77
- bpy/ops/font/__init__.pyi +23 -85
- bpy/ops/geometry/__init__.pyi +10 -27
- bpy/ops/gizmogroup/__init__.pyi +2 -9
- bpy/ops/gpencil/__init__.pyi +8 -32
- bpy/ops/graph/__init__.pyi +65 -184
- bpy/ops/grease_pencil/__init__.pyi +108 -290
- bpy/ops/image/__init__.pyi +49 -154
- bpy/ops/import_anim/__init__.pyi +1 -3
- bpy/ops/import_curve/__init__.pyi +1 -3
- bpy/ops/import_scene/__init__.pyi +2 -4
- bpy/ops/info/__init__.pyi +7 -29
- bpy/ops/lattice/__init__.pyi +8 -29
- bpy/ops/marker/__init__.pyi +11 -31
- bpy/ops/mask/__init__.pyi +39 -132
- bpy/ops/material/__init__.pyi +3 -19
- bpy/ops/mball/__init__.pyi +8 -19
- bpy/ops/mesh/__init__.pyi +164 -401
- bpy/ops/nla/__init__.pyi +39 -147
- bpy/ops/node/__init__.pyi +115 -390
- bpy/ops/object/__init__.pyi +237 -630
- bpy/ops/outliner/__init__.pyi +71 -263
- bpy/ops/paint/__init__.pyi +54 -140
- bpy/ops/paintcurve/__init__.pyi +8 -33
- bpy/ops/palette/__init__.pyi +7 -27
- bpy/ops/particle/__init__.pyi +36 -134
- bpy/ops/pose/__init__.pyi +51 -169
- bpy/ops/poselib/__init__.pyi +9 -33
- bpy/ops/preferences/__init__.pyi +35 -94
- bpy/ops/ptcache/__init__.pyi +7 -33
- bpy/ops/render/__init__.pyi +13 -37
- bpy/ops/rigidbody/__init__.pyi +13 -45
- bpy/ops/scene/__init__.pyi +37 -121
- bpy/ops/screen/__init__.pyi +39 -137
- bpy/ops/script/__init__.pyi +3 -11
- bpy/ops/sculpt/__init__.pyi +37 -94
- bpy/ops/sculpt_curves/__init__.pyi +4 -10
- bpy/ops/sequencer/__init__.pyi +89 -284
- bpy/ops/sound/__init__.pyi +7 -23
- bpy/ops/spreadsheet/__init__.pyi +4 -15
- bpy/ops/surface/__init__.pyi +6 -13
- bpy/ops/text/__init__.pyi +43 -175
- bpy/ops/text_editor/__init__.pyi +1 -3
- bpy/ops/texture/__init__.pyi +4 -21
- bpy/ops/transform/__init__.pyi +27 -61
- bpy/ops/ui/__init__.pyi +34 -117
- bpy/ops/uilist/__init__.pyi +3 -7
- bpy/ops/uv/__init__.pyi +49 -134
- bpy/ops/view2d/__init__.pyi +14 -39
- bpy/ops/view3d/__init__.pyi +67 -232
- bpy/ops/wm/__init__.pyi +114 -298
- bpy/ops/workspace/__init__.pyi +7 -33
- bpy/ops/world/__init__.pyi +2 -11
- {fake_bpy_module-20241208.dist-info → fake_bpy_module-20241209.dist-info}/METADATA +1 -1
- {fake_bpy_module-20241208.dist-info → fake_bpy_module-20241209.dist-info}/RECORD +80 -80
- {fake_bpy_module-20241208.dist-info → fake_bpy_module-20241209.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20241208.dist-info → fake_bpy_module-20241209.dist-info}/top_level.txt +0 -0
bpy/ops/particle/__init__.pyi
CHANGED
|
@@ -4,16 +4,15 @@ 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 = None,
|
|
8
7
|
execution_context: int | str | None = None,
|
|
9
8
|
undo: bool | None = None,
|
|
9
|
+
/,
|
|
10
10
|
*,
|
|
11
11
|
stroke: bpy.types.bpy_prop_collection[bpy.types.OperatorStrokeElement]
|
|
12
12
|
| None = None,
|
|
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] | None
|
|
17
16
|
:type execution_context: int | str | None
|
|
18
17
|
:type undo: bool | None
|
|
19
18
|
:param stroke: Stroke
|
|
@@ -21,15 +20,14 @@ def brush_edit(
|
|
|
21
20
|
"""
|
|
22
21
|
|
|
23
22
|
def connect_hair(
|
|
24
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
25
23
|
execution_context: int | str | None = None,
|
|
26
24
|
undo: bool | None = None,
|
|
25
|
+
/,
|
|
27
26
|
*,
|
|
28
27
|
all: bool | None = False,
|
|
29
28
|
):
|
|
30
29
|
"""Connect hair to the emitter mesh
|
|
31
30
|
|
|
32
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
33
31
|
:type execution_context: int | str | None
|
|
34
32
|
:type undo: bool | None
|
|
35
33
|
:param all: All Hair, Connect all hair systems to the emitter mesh
|
|
@@ -37,9 +35,9 @@ def connect_hair(
|
|
|
37
35
|
"""
|
|
38
36
|
|
|
39
37
|
def copy_particle_systems(
|
|
40
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
41
38
|
execution_context: int | str | None = None,
|
|
42
39
|
undo: bool | None = None,
|
|
40
|
+
/,
|
|
43
41
|
*,
|
|
44
42
|
space: typing.Literal["OBJECT", "WORLD"] | None = "OBJECT",
|
|
45
43
|
remove_target_particles: bool | None = True,
|
|
@@ -47,7 +45,6 @@ def copy_particle_systems(
|
|
|
47
45
|
):
|
|
48
46
|
"""Copy particle systems from the active object to selected objects
|
|
49
47
|
|
|
50
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
51
48
|
:type execution_context: int | str | None
|
|
52
49
|
:type undo: bool | None
|
|
53
50
|
:param space: Space, Space transform for copying from one object to another
|
|
@@ -65,15 +62,14 @@ def copy_particle_systems(
|
|
|
65
62
|
"""
|
|
66
63
|
|
|
67
64
|
def delete(
|
|
68
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
69
65
|
execution_context: int | str | None = None,
|
|
70
66
|
undo: bool | None = None,
|
|
67
|
+
/,
|
|
71
68
|
*,
|
|
72
69
|
type: typing.Literal["PARTICLE", "KEY"] | None = "PARTICLE",
|
|
73
70
|
):
|
|
74
71
|
"""Delete selected particles or keys
|
|
75
72
|
|
|
76
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
77
73
|
:type execution_context: int | str | None
|
|
78
74
|
:type undo: bool | None
|
|
79
75
|
:param type: Type, Delete a full particle or only keys
|
|
@@ -81,15 +77,14 @@ def delete(
|
|
|
81
77
|
"""
|
|
82
78
|
|
|
83
79
|
def disconnect_hair(
|
|
84
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
85
80
|
execution_context: int | str | None = None,
|
|
86
81
|
undo: bool | None = None,
|
|
82
|
+
/,
|
|
87
83
|
*,
|
|
88
84
|
all: bool | None = False,
|
|
89
85
|
):
|
|
90
86
|
"""Disconnect hair from the emitter mesh
|
|
91
87
|
|
|
92
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
93
88
|
:type execution_context: int | str | None
|
|
94
89
|
:type undo: bool | None
|
|
95
90
|
:param all: All Hair, Disconnect all hair systems from the emitter mesh
|
|
@@ -97,97 +92,74 @@ def disconnect_hair(
|
|
|
97
92
|
"""
|
|
98
93
|
|
|
99
94
|
def duplicate_particle_system(
|
|
100
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
101
95
|
execution_context: int | str | None = None,
|
|
102
96
|
undo: bool | None = None,
|
|
97
|
+
/,
|
|
103
98
|
*,
|
|
104
99
|
use_duplicate_settings: bool | None = False,
|
|
105
100
|
):
|
|
106
101
|
"""Duplicate particle system within the active object
|
|
107
102
|
|
|
108
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
109
103
|
:type execution_context: int | str | None
|
|
110
104
|
:type undo: bool | None
|
|
111
105
|
:param use_duplicate_settings: Duplicate Settings, Duplicate settings as well, so the new particle system uses its own settings
|
|
112
106
|
:type use_duplicate_settings: bool | None
|
|
113
107
|
"""
|
|
114
108
|
|
|
115
|
-
def dupliob_copy(
|
|
116
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
117
|
-
execution_context: int | str | None = None,
|
|
118
|
-
undo: bool | None = None,
|
|
119
|
-
):
|
|
109
|
+
def dupliob_copy(execution_context: int | str | None = None, undo: bool | None = None):
|
|
120
110
|
"""Duplicate the current instance object
|
|
121
111
|
|
|
122
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
123
112
|
:type execution_context: int | str | None
|
|
124
113
|
:type undo: bool | None
|
|
125
114
|
"""
|
|
126
115
|
|
|
127
116
|
def dupliob_move_down(
|
|
128
|
-
|
|
129
|
-
execution_context: int | str | None = None,
|
|
130
|
-
undo: bool | None = None,
|
|
117
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
131
118
|
):
|
|
132
119
|
"""Move instance object down in the list
|
|
133
120
|
|
|
134
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
135
121
|
:type execution_context: int | str | None
|
|
136
122
|
:type undo: bool | None
|
|
137
123
|
"""
|
|
138
124
|
|
|
139
125
|
def dupliob_move_up(
|
|
140
|
-
|
|
141
|
-
execution_context: int | str | None = None,
|
|
142
|
-
undo: bool | None = None,
|
|
126
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
143
127
|
):
|
|
144
128
|
"""Move instance object up in the list
|
|
145
129
|
|
|
146
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
147
130
|
:type execution_context: int | str | None
|
|
148
131
|
:type undo: bool | None
|
|
149
132
|
"""
|
|
150
133
|
|
|
151
134
|
def dupliob_refresh(
|
|
152
|
-
|
|
153
|
-
execution_context: int | str | None = None,
|
|
154
|
-
undo: bool | None = None,
|
|
135
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
155
136
|
):
|
|
156
137
|
"""Refresh list of instance objects and their weights
|
|
157
138
|
|
|
158
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
159
139
|
:type execution_context: int | str | None
|
|
160
140
|
:type undo: bool | None
|
|
161
141
|
"""
|
|
162
142
|
|
|
163
143
|
def dupliob_remove(
|
|
164
|
-
|
|
165
|
-
execution_context: int | str | None = None,
|
|
166
|
-
undo: bool | None = None,
|
|
144
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
167
145
|
):
|
|
168
146
|
"""Remove the selected instance object
|
|
169
147
|
|
|
170
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
171
148
|
:type execution_context: int | str | None
|
|
172
149
|
:type undo: bool | None
|
|
173
150
|
"""
|
|
174
151
|
|
|
175
|
-
def edited_clear(
|
|
176
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
177
|
-
execution_context: int | str | None = None,
|
|
178
|
-
undo: bool | None = None,
|
|
179
|
-
):
|
|
152
|
+
def edited_clear(execution_context: int | str | None = None, undo: bool | None = None):
|
|
180
153
|
"""Undo all edition performed on the particle system
|
|
181
154
|
|
|
182
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
183
155
|
:type execution_context: int | str | None
|
|
184
156
|
:type undo: bool | None
|
|
185
157
|
"""
|
|
186
158
|
|
|
187
159
|
def hair_dynamics_preset_add(
|
|
188
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
189
160
|
execution_context: int | str | None = None,
|
|
190
161
|
undo: bool | None = None,
|
|
162
|
+
/,
|
|
191
163
|
*,
|
|
192
164
|
name: str = "",
|
|
193
165
|
remove_name: bool | None = False,
|
|
@@ -195,7 +167,6 @@ def hair_dynamics_preset_add(
|
|
|
195
167
|
):
|
|
196
168
|
"""Add or remove a Hair Dynamics Preset
|
|
197
169
|
|
|
198
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
199
170
|
:type execution_context: int | str | None
|
|
200
171
|
:type undo: bool | None
|
|
201
172
|
:param name: Name, Name of the preset, used to make the path name
|
|
@@ -207,79 +178,59 @@ def hair_dynamics_preset_add(
|
|
|
207
178
|
"""
|
|
208
179
|
|
|
209
180
|
def hide(
|
|
210
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
211
181
|
execution_context: int | str | None = None,
|
|
212
182
|
undo: bool | None = None,
|
|
183
|
+
/,
|
|
213
184
|
*,
|
|
214
185
|
unselected: bool | None = False,
|
|
215
186
|
):
|
|
216
187
|
"""Hide selected particles
|
|
217
188
|
|
|
218
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
219
189
|
:type execution_context: int | str | None
|
|
220
190
|
:type undo: bool | None
|
|
221
191
|
:param unselected: Unselected, Hide unselected rather than selected
|
|
222
192
|
:type unselected: bool | None
|
|
223
193
|
"""
|
|
224
194
|
|
|
225
|
-
def mirror(
|
|
226
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
227
|
-
execution_context: int | str | None = None,
|
|
228
|
-
undo: bool | None = None,
|
|
229
|
-
):
|
|
195
|
+
def mirror(execution_context: int | str | None = None, undo: bool | None = None):
|
|
230
196
|
"""Duplicate and mirror the selected particles along the local X axis
|
|
231
197
|
|
|
232
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
233
198
|
:type execution_context: int | str | None
|
|
234
199
|
:type undo: bool | None
|
|
235
200
|
"""
|
|
236
201
|
|
|
237
|
-
def new(
|
|
238
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
239
|
-
execution_context: int | str | None = None,
|
|
240
|
-
undo: bool | None = None,
|
|
241
|
-
):
|
|
202
|
+
def new(execution_context: int | str | None = None, undo: bool | None = None):
|
|
242
203
|
"""Add new particle settings
|
|
243
204
|
|
|
244
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
245
205
|
:type execution_context: int | str | None
|
|
246
206
|
:type undo: bool | None
|
|
247
207
|
"""
|
|
248
208
|
|
|
249
|
-
def new_target(
|
|
250
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
251
|
-
execution_context: int | str | None = None,
|
|
252
|
-
undo: bool | None = None,
|
|
253
|
-
):
|
|
209
|
+
def new_target(execution_context: int | str | None = None, undo: bool | None = None):
|
|
254
210
|
"""Add a new particle target
|
|
255
211
|
|
|
256
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
257
212
|
:type execution_context: int | str | None
|
|
258
213
|
:type undo: bool | None
|
|
259
214
|
"""
|
|
260
215
|
|
|
261
216
|
def particle_edit_toggle(
|
|
262
|
-
|
|
263
|
-
execution_context: int | str | None = None,
|
|
264
|
-
undo: bool | None = None,
|
|
217
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
265
218
|
):
|
|
266
219
|
"""Toggle particle edit mode
|
|
267
220
|
|
|
268
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
269
221
|
:type execution_context: int | str | None
|
|
270
222
|
:type undo: bool | None
|
|
271
223
|
"""
|
|
272
224
|
|
|
273
225
|
def rekey(
|
|
274
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
275
226
|
execution_context: int | str | None = None,
|
|
276
227
|
undo: bool | None = None,
|
|
228
|
+
/,
|
|
277
229
|
*,
|
|
278
230
|
keys_number: int | None = 2,
|
|
279
231
|
):
|
|
280
232
|
"""Change the number of keys of selected particles (root and tip keys included)
|
|
281
233
|
|
|
282
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
283
234
|
:type execution_context: int | str | None
|
|
284
235
|
:type undo: bool | None
|
|
285
236
|
:param keys_number: Number of Keys
|
|
@@ -287,15 +238,14 @@ def rekey(
|
|
|
287
238
|
"""
|
|
288
239
|
|
|
289
240
|
def remove_doubles(
|
|
290
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
291
241
|
execution_context: int | str | None = None,
|
|
292
242
|
undo: bool | None = None,
|
|
243
|
+
/,
|
|
293
244
|
*,
|
|
294
245
|
threshold: float | None = 0.0002,
|
|
295
246
|
):
|
|
296
247
|
"""Remove selected particles close enough of others
|
|
297
248
|
|
|
298
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
299
249
|
:type execution_context: int | str | None
|
|
300
250
|
:type undo: bool | None
|
|
301
251
|
:param threshold: Merge Distance, Threshold distance within which particles are removed
|
|
@@ -303,15 +253,14 @@ def remove_doubles(
|
|
|
303
253
|
"""
|
|
304
254
|
|
|
305
255
|
def reveal(
|
|
306
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
307
256
|
execution_context: int | str | None = None,
|
|
308
257
|
undo: bool | None = None,
|
|
258
|
+
/,
|
|
309
259
|
*,
|
|
310
260
|
select: bool | None = True,
|
|
311
261
|
):
|
|
312
262
|
"""Show hidden particles
|
|
313
263
|
|
|
314
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
315
264
|
:type execution_context: int | str | None
|
|
316
265
|
:type undo: bool | None
|
|
317
266
|
:param select: Select
|
|
@@ -319,15 +268,14 @@ def reveal(
|
|
|
319
268
|
"""
|
|
320
269
|
|
|
321
270
|
def select_all(
|
|
322
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
323
271
|
execution_context: int | str | None = None,
|
|
324
272
|
undo: bool | None = None,
|
|
273
|
+
/,
|
|
325
274
|
*,
|
|
326
275
|
action: typing.Literal["TOGGLE", "SELECT", "DESELECT", "INVERT"] | None = "TOGGLE",
|
|
327
276
|
):
|
|
328
277
|
"""(De)select all particles' keys
|
|
329
278
|
|
|
330
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
331
279
|
:type execution_context: int | str | None
|
|
332
280
|
:type undo: bool | None
|
|
333
281
|
:param action: Action, Selection action to execute
|
|
@@ -346,41 +294,30 @@ def select_all(
|
|
|
346
294
|
:type action: typing.Literal['TOGGLE','SELECT','DESELECT','INVERT'] | None
|
|
347
295
|
"""
|
|
348
296
|
|
|
349
|
-
def select_less(
|
|
350
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
351
|
-
execution_context: int | str | None = None,
|
|
352
|
-
undo: bool | None = None,
|
|
353
|
-
):
|
|
297
|
+
def select_less(execution_context: int | str | None = None, undo: bool | None = None):
|
|
354
298
|
"""Deselect boundary selected keys of each particle
|
|
355
299
|
|
|
356
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
357
300
|
:type execution_context: int | str | None
|
|
358
301
|
:type undo: bool | None
|
|
359
302
|
"""
|
|
360
303
|
|
|
361
|
-
def select_linked(
|
|
362
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
363
|
-
execution_context: int | str | None = None,
|
|
364
|
-
undo: bool | None = None,
|
|
365
|
-
):
|
|
304
|
+
def select_linked(execution_context: int | str | None = None, undo: bool | None = None):
|
|
366
305
|
"""Select all keys linked to already selected ones
|
|
367
306
|
|
|
368
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
369
307
|
:type execution_context: int | str | None
|
|
370
308
|
:type undo: bool | None
|
|
371
309
|
"""
|
|
372
310
|
|
|
373
311
|
def select_linked_pick(
|
|
374
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
375
312
|
execution_context: int | str | None = None,
|
|
376
313
|
undo: bool | None = None,
|
|
314
|
+
/,
|
|
377
315
|
*,
|
|
378
316
|
deselect: bool | None = False,
|
|
379
317
|
location: collections.abc.Iterable[int] | None = (0, 0),
|
|
380
318
|
):
|
|
381
319
|
"""Select nearest particle from mouse pointer
|
|
382
320
|
|
|
383
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
384
321
|
:type execution_context: int | str | None
|
|
385
322
|
:type undo: bool | None
|
|
386
323
|
:param deselect: Deselect, Deselect linked keys rather than selecting them
|
|
@@ -389,22 +326,17 @@ def select_linked_pick(
|
|
|
389
326
|
:type location: collections.abc.Iterable[int] | None
|
|
390
327
|
"""
|
|
391
328
|
|
|
392
|
-
def select_more(
|
|
393
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
394
|
-
execution_context: int | str | None = None,
|
|
395
|
-
undo: bool | None = None,
|
|
396
|
-
):
|
|
329
|
+
def select_more(execution_context: int | str | None = None, undo: bool | None = None):
|
|
397
330
|
"""Select keys linked to boundary selected keys of each particle
|
|
398
331
|
|
|
399
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
400
332
|
:type execution_context: int | str | None
|
|
401
333
|
:type undo: bool | None
|
|
402
334
|
"""
|
|
403
335
|
|
|
404
336
|
def select_random(
|
|
405
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
406
337
|
execution_context: int | str | None = None,
|
|
407
338
|
undo: bool | None = None,
|
|
339
|
+
/,
|
|
408
340
|
*,
|
|
409
341
|
ratio: float | None = 0.5,
|
|
410
342
|
seed: int | None = 0,
|
|
@@ -413,7 +345,6 @@ def select_random(
|
|
|
413
345
|
):
|
|
414
346
|
"""Select a randomly distributed set of hair or points
|
|
415
347
|
|
|
416
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
417
348
|
:type execution_context: int | str | None
|
|
418
349
|
:type undo: bool | None
|
|
419
350
|
:param ratio: Ratio, Portion of items to select randomly
|
|
@@ -433,15 +364,14 @@ def select_random(
|
|
|
433
364
|
"""
|
|
434
365
|
|
|
435
366
|
def select_roots(
|
|
436
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
437
367
|
execution_context: int | str | None = None,
|
|
438
368
|
undo: bool | None = None,
|
|
369
|
+
/,
|
|
439
370
|
*,
|
|
440
371
|
action: typing.Literal["TOGGLE", "SELECT", "DESELECT", "INVERT"] | None = "SELECT",
|
|
441
372
|
):
|
|
442
373
|
"""Select roots of all visible particles
|
|
443
374
|
|
|
444
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
445
375
|
:type execution_context: int | str | None
|
|
446
376
|
:type undo: bool | None
|
|
447
377
|
:param action: Action, Selection action to execute
|
|
@@ -461,15 +391,14 @@ def select_roots(
|
|
|
461
391
|
"""
|
|
462
392
|
|
|
463
393
|
def select_tips(
|
|
464
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
465
394
|
execution_context: int | str | None = None,
|
|
466
395
|
undo: bool | None = None,
|
|
396
|
+
/,
|
|
467
397
|
*,
|
|
468
398
|
action: typing.Literal["TOGGLE", "SELECT", "DESELECT", "INVERT"] | None = "SELECT",
|
|
469
399
|
):
|
|
470
400
|
"""Select tips of all visible particles
|
|
471
401
|
|
|
472
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
473
402
|
:type execution_context: int | str | None
|
|
474
403
|
:type undo: bool | None
|
|
475
404
|
:param action: Action, Selection action to execute
|
|
@@ -488,88 +417,61 @@ def select_tips(
|
|
|
488
417
|
:type action: typing.Literal['TOGGLE','SELECT','DESELECT','INVERT'] | None
|
|
489
418
|
"""
|
|
490
419
|
|
|
491
|
-
def shape_cut(
|
|
492
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
493
|
-
execution_context: int | str | None = None,
|
|
494
|
-
undo: bool | None = None,
|
|
495
|
-
):
|
|
420
|
+
def shape_cut(execution_context: int | str | None = None, undo: bool | None = None):
|
|
496
421
|
"""Cut hair to conform to the set shape object
|
|
497
422
|
|
|
498
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
499
423
|
:type execution_context: int | str | None
|
|
500
424
|
:type undo: bool | None
|
|
501
425
|
"""
|
|
502
426
|
|
|
503
|
-
def subdivide(
|
|
504
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
505
|
-
execution_context: int | str | None = None,
|
|
506
|
-
undo: bool | None = None,
|
|
507
|
-
):
|
|
427
|
+
def subdivide(execution_context: int | str | None = None, undo: bool | None = None):
|
|
508
428
|
"""Subdivide selected particles segments (adds keys)
|
|
509
429
|
|
|
510
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
511
430
|
:type execution_context: int | str | None
|
|
512
431
|
:type undo: bool | None
|
|
513
432
|
"""
|
|
514
433
|
|
|
515
434
|
def target_move_down(
|
|
516
|
-
|
|
517
|
-
execution_context: int | str | None = None,
|
|
518
|
-
undo: bool | None = None,
|
|
435
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
519
436
|
):
|
|
520
437
|
"""Move particle target down in the list
|
|
521
438
|
|
|
522
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
523
439
|
:type execution_context: int | str | None
|
|
524
440
|
:type undo: bool | None
|
|
525
441
|
"""
|
|
526
442
|
|
|
527
443
|
def target_move_up(
|
|
528
|
-
|
|
529
|
-
execution_context: int | str | None = None,
|
|
530
|
-
undo: bool | None = None,
|
|
444
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
531
445
|
):
|
|
532
446
|
"""Move particle target up in the list
|
|
533
447
|
|
|
534
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
535
448
|
:type execution_context: int | str | None
|
|
536
449
|
:type undo: bool | None
|
|
537
450
|
"""
|
|
538
451
|
|
|
539
|
-
def target_remove(
|
|
540
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
541
|
-
execution_context: int | str | None = None,
|
|
542
|
-
undo: bool | None = None,
|
|
543
|
-
):
|
|
452
|
+
def target_remove(execution_context: int | str | None = None, undo: bool | None = None):
|
|
544
453
|
"""Remove the selected particle target
|
|
545
454
|
|
|
546
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
547
455
|
:type execution_context: int | str | None
|
|
548
456
|
:type undo: bool | None
|
|
549
457
|
"""
|
|
550
458
|
|
|
551
|
-
def unify_length(
|
|
552
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
553
|
-
execution_context: int | str | None = None,
|
|
554
|
-
undo: bool | None = None,
|
|
555
|
-
):
|
|
459
|
+
def unify_length(execution_context: int | str | None = None, undo: bool | None = None):
|
|
556
460
|
"""Make selected hair the same length
|
|
557
461
|
|
|
558
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
559
462
|
:type execution_context: int | str | None
|
|
560
463
|
:type undo: bool | None
|
|
561
464
|
"""
|
|
562
465
|
|
|
563
466
|
def weight_set(
|
|
564
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
565
467
|
execution_context: int | str | None = None,
|
|
566
468
|
undo: bool | None = None,
|
|
469
|
+
/,
|
|
567
470
|
*,
|
|
568
471
|
factor: float | None = 1.0,
|
|
569
472
|
):
|
|
570
473
|
"""Set the weight of selected keys
|
|
571
474
|
|
|
572
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
573
475
|
:type execution_context: int | str | None
|
|
574
476
|
:type undo: bool | None
|
|
575
477
|
:param factor: Factor, Interpolation factor between current brush weight, and keys' weights
|