fake-bpy-module 20240620__py3-none-any.whl → 20240622__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_userpref/__init__.pyi +225 -0
- bpy/ops/action/__init__.pyi +50 -50
- bpy/ops/anim/__init__.pyi +94 -94
- bpy/ops/armature/__init__.pyi +54 -54
- bpy/ops/asset/__init__.pyi +50 -50
- bpy/ops/brush/__init__.pyi +10 -10
- bpy/ops/buttons/__init__.pyi +88 -88
- bpy/ops/cachefile/__init__.pyi +88 -88
- bpy/ops/camera/__init__.pyi +14 -14
- bpy/ops/clip/__init__.pyi +175 -174
- bpy/ops/cloth/__init__.pyi +6 -6
- bpy/ops/collection/__init__.pyi +8 -8
- bpy/ops/console/__init__.pyi +26 -26
- bpy/ops/constraint/__init__.pyi +42 -42
- bpy/ops/curve/__init__.pyi +167 -122
- bpy/ops/curves/__init__.pyi +75 -58
- bpy/ops/cycles/__init__.pyi +10 -10
- bpy/ops/ed/__init__.pyi +50 -50
- bpy/ops/export_anim/__init__.pyi +14 -14
- bpy/ops/export_scene/__init__.pyi +250 -250
- bpy/ops/extensions/__init__.pyi +73 -73
- bpy/ops/file/__init__.pyi +94 -94
- bpy/ops/fluid/__init__.pyi +6 -6
- bpy/ops/font/__init__.pyi +100 -100
- bpy/ops/geometry/__init__.pyi +20 -20
- bpy/ops/gizmogroup/__init__.pyi +10 -10
- bpy/ops/gpencil/__init__.pyi +411 -410
- bpy/ops/graph/__init__.pyi +194 -194
- bpy/ops/grease_pencil/__init__.pyi +100 -100
- bpy/ops/image/__init__.pyi +399 -390
- bpy/ops/import_anim/__init__.pyi +16 -16
- bpy/ops/import_curve/__init__.pyi +4 -4
- bpy/ops/import_scene/__init__.pyi +56 -56
- bpy/ops/info/__init__.pyi +14 -14
- bpy/ops/lattice/__init__.pyi +8 -8
- bpy/ops/marker/__init__.pyi +34 -34
- bpy/ops/mask/__init__.pyi +63 -62
- bpy/ops/mball/__init__.pyi +12 -12
- bpy/ops/mesh/__init__.pyi +893 -790
- bpy/ops/nla/__init__.pyi +70 -70
- bpy/ops/node/__init__.pyi +192 -192
- bpy/ops/object/__init__.pyi +1013 -840
- bpy/ops/outliner/__init__.pyi +44 -44
- bpy/ops/paint/__init__.pyi +169 -168
- bpy/ops/paintcurve/__init__.pyi +12 -12
- bpy/ops/palette/__init__.pyi +4 -4
- bpy/ops/particle/__init__.pyi +34 -34
- bpy/ops/pose/__init__.pyi +60 -60
- bpy/ops/poselib/__init__.pyi +18 -18
- bpy/ops/preferences/__init__.pyi +150 -150
- bpy/ops/ptcache/__init__.pyi +4 -4
- bpy/ops/render/__init__.pyi +56 -56
- bpy/ops/rigidbody/__init__.pyi +8 -8
- bpy/ops/scene/__init__.pyi +20 -20
- bpy/ops/screen/__init__.pyi +128 -128
- bpy/ops/script/__init__.pyi +6 -6
- bpy/ops/sculpt/__init__.pyi +207 -202
- bpy/ops/sculpt_curves/__init__.pyi +12 -12
- bpy/ops/sequencer/__init__.pyi +465 -464
- bpy/ops/sound/__init__.pyi +154 -154
- bpy/ops/spreadsheet/__init__.pyi +6 -6
- bpy/ops/surface/__init__.pyi +109 -60
- bpy/ops/text/__init__.pyi +110 -110
- bpy/ops/text_editor/__init__.pyi +6 -6
- bpy/ops/transform/__init__.pyi +628 -566
- bpy/ops/ui/__init__.pyi +25 -24
- bpy/ops/uilist/__init__.pyi +12 -12
- bpy/ops/uv/__init__.pyi +235 -234
- bpy/ops/view2d/__init__.pyi +72 -72
- bpy/ops/view3d/__init__.pyi +144 -144
- bpy/ops/wm/__init__.pyi +1813 -1806
- bpy/ops/workspace/__init__.pyi +4 -4
- bpy/types/__init__.pyi +1614 -1805
- {fake_bpy_module-20240620.dist-info → fake_bpy_module-20240622.dist-info}/METADATA +3 -5
- {fake_bpy_module-20240620.dist-info → fake_bpy_module-20240622.dist-info}/RECORD +77 -77
- {fake_bpy_module-20240620.dist-info → fake_bpy_module-20240622.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240620.dist-info → fake_bpy_module-20240622.dist-info}/top_level.txt +0 -0
bpy/ops/paintcurve/__init__.pyi
CHANGED
|
@@ -10,7 +10,7 @@ def add_point(
|
|
|
10
10
|
execution_context: int | str | None = None,
|
|
11
11
|
undo: bool | None = None,
|
|
12
12
|
*,
|
|
13
|
-
location:
|
|
13
|
+
location: collections.abc.Iterable[int] | None = (0, 0),
|
|
14
14
|
):
|
|
15
15
|
"""Add New Paint Curve Point
|
|
16
16
|
|
|
@@ -18,7 +18,7 @@ def add_point(
|
|
|
18
18
|
:type execution_context: int | str | None
|
|
19
19
|
:type undo: bool | None
|
|
20
20
|
:param location: Location, Location of vertex in area space
|
|
21
|
-
:type location:
|
|
21
|
+
:type location: collections.abc.Iterable[int] | None
|
|
22
22
|
"""
|
|
23
23
|
|
|
24
24
|
...
|
|
@@ -105,9 +105,9 @@ def select(
|
|
|
105
105
|
execution_context: int | str | None = None,
|
|
106
106
|
undo: bool | None = None,
|
|
107
107
|
*,
|
|
108
|
-
location:
|
|
109
|
-
toggle: bool |
|
|
110
|
-
extend: bool |
|
|
108
|
+
location: collections.abc.Iterable[int] | None = (0, 0),
|
|
109
|
+
toggle: bool | None = False,
|
|
110
|
+
extend: bool | None = False,
|
|
111
111
|
):
|
|
112
112
|
"""Select a paint curve point
|
|
113
113
|
|
|
@@ -115,11 +115,11 @@ def select(
|
|
|
115
115
|
:type execution_context: int | str | None
|
|
116
116
|
:type undo: bool | None
|
|
117
117
|
:param location: Location, Location of vertex in area space
|
|
118
|
-
:type location:
|
|
118
|
+
:type location: collections.abc.Iterable[int] | None
|
|
119
119
|
:param toggle: Toggle, (De)select all
|
|
120
|
-
:type toggle: bool |
|
|
120
|
+
:type toggle: bool | None
|
|
121
121
|
:param extend: Extend, Extend selection
|
|
122
|
-
:type extend: bool |
|
|
122
|
+
:type extend: bool | None
|
|
123
123
|
"""
|
|
124
124
|
|
|
125
125
|
...
|
|
@@ -129,8 +129,8 @@ def slide(
|
|
|
129
129
|
execution_context: int | str | None = None,
|
|
130
130
|
undo: bool | None = None,
|
|
131
131
|
*,
|
|
132
|
-
align: bool |
|
|
133
|
-
select: bool |
|
|
132
|
+
align: bool | None = False,
|
|
133
|
+
select: bool | None = True,
|
|
134
134
|
):
|
|
135
135
|
"""Select and slide paint curve point
|
|
136
136
|
|
|
@@ -138,9 +138,9 @@ def slide(
|
|
|
138
138
|
:type execution_context: int | str | None
|
|
139
139
|
:type undo: bool | None
|
|
140
140
|
:param align: Align Handles, Aligns opposite point handle during transform
|
|
141
|
-
:type align: bool |
|
|
141
|
+
:type align: bool | None
|
|
142
142
|
:param select: Select, Attempt to select a point handle before transform
|
|
143
|
-
:type select: bool |
|
|
143
|
+
:type select: bool | None
|
|
144
144
|
"""
|
|
145
145
|
|
|
146
146
|
...
|
bpy/ops/palette/__init__.pyi
CHANGED
|
@@ -56,7 +56,7 @@ def extract_from_image(
|
|
|
56
56
|
execution_context: int | str | None = None,
|
|
57
57
|
undo: bool | None = None,
|
|
58
58
|
*,
|
|
59
|
-
threshold:
|
|
59
|
+
threshold: int | None = 1,
|
|
60
60
|
):
|
|
61
61
|
"""Extract all colors used in Image and create a Palette
|
|
62
62
|
|
|
@@ -64,7 +64,7 @@ def extract_from_image(
|
|
|
64
64
|
:type execution_context: int | str | None
|
|
65
65
|
:type undo: bool | None
|
|
66
66
|
:param threshold: Threshold
|
|
67
|
-
:type threshold:
|
|
67
|
+
:type threshold: int | None
|
|
68
68
|
"""
|
|
69
69
|
|
|
70
70
|
...
|
|
@@ -74,7 +74,7 @@ def join(
|
|
|
74
74
|
execution_context: int | str | None = None,
|
|
75
75
|
undo: bool | None = None,
|
|
76
76
|
*,
|
|
77
|
-
palette: str
|
|
77
|
+
palette: str = "",
|
|
78
78
|
):
|
|
79
79
|
"""Join Palette Swatches
|
|
80
80
|
|
|
@@ -82,7 +82,7 @@ def join(
|
|
|
82
82
|
:type execution_context: int | str | None
|
|
83
83
|
:type undo: bool | None
|
|
84
84
|
:param palette: Palette, Name of the Palette
|
|
85
|
-
:type palette: str
|
|
85
|
+
:type palette: str
|
|
86
86
|
"""
|
|
87
87
|
|
|
88
88
|
...
|
bpy/ops/particle/__init__.pyi
CHANGED
|
@@ -29,7 +29,7 @@ def connect_hair(
|
|
|
29
29
|
execution_context: int | str | None = None,
|
|
30
30
|
undo: bool | None = None,
|
|
31
31
|
*,
|
|
32
|
-
all: bool |
|
|
32
|
+
all: bool | None = False,
|
|
33
33
|
):
|
|
34
34
|
"""Connect hair to the emitter mesh
|
|
35
35
|
|
|
@@ -37,7 +37,7 @@ def connect_hair(
|
|
|
37
37
|
:type execution_context: int | str | None
|
|
38
38
|
:type undo: bool | None
|
|
39
39
|
:param all: All Hair, Connect all hair systems to the emitter mesh
|
|
40
|
-
:type all: bool |
|
|
40
|
+
:type all: bool | None
|
|
41
41
|
"""
|
|
42
42
|
|
|
43
43
|
...
|
|
@@ -48,8 +48,8 @@ def copy_particle_systems(
|
|
|
48
48
|
undo: bool | None = None,
|
|
49
49
|
*,
|
|
50
50
|
space: str | None = "OBJECT",
|
|
51
|
-
remove_target_particles: bool |
|
|
52
|
-
use_active: bool |
|
|
51
|
+
remove_target_particles: bool | None = True,
|
|
52
|
+
use_active: bool | None = False,
|
|
53
53
|
):
|
|
54
54
|
"""Copy particle systems from the active object to selected objects
|
|
55
55
|
|
|
@@ -65,9 +65,9 @@ def copy_particle_systems(
|
|
|
65
65
|
World -- Copy in world space.
|
|
66
66
|
:type space: str | None
|
|
67
67
|
:param remove_target_particles: Remove Target Particles, Remove particle systems on the target objects
|
|
68
|
-
:type remove_target_particles: bool |
|
|
68
|
+
:type remove_target_particles: bool | None
|
|
69
69
|
:param use_active: Use Active, Use the active particle system from the context
|
|
70
|
-
:type use_active: bool |
|
|
70
|
+
:type use_active: bool | None
|
|
71
71
|
"""
|
|
72
72
|
|
|
73
73
|
...
|
|
@@ -95,7 +95,7 @@ def disconnect_hair(
|
|
|
95
95
|
execution_context: int | str | None = None,
|
|
96
96
|
undo: bool | None = None,
|
|
97
97
|
*,
|
|
98
|
-
all: bool |
|
|
98
|
+
all: bool | None = False,
|
|
99
99
|
):
|
|
100
100
|
"""Disconnect hair from the emitter mesh
|
|
101
101
|
|
|
@@ -103,7 +103,7 @@ def disconnect_hair(
|
|
|
103
103
|
:type execution_context: int | str | None
|
|
104
104
|
:type undo: bool | None
|
|
105
105
|
:param all: All Hair, Disconnect all hair systems from the emitter mesh
|
|
106
|
-
:type all: bool |
|
|
106
|
+
:type all: bool | None
|
|
107
107
|
"""
|
|
108
108
|
|
|
109
109
|
...
|
|
@@ -113,7 +113,7 @@ def duplicate_particle_system(
|
|
|
113
113
|
execution_context: int | str | None = None,
|
|
114
114
|
undo: bool | None = None,
|
|
115
115
|
*,
|
|
116
|
-
use_duplicate_settings: bool |
|
|
116
|
+
use_duplicate_settings: bool | None = False,
|
|
117
117
|
):
|
|
118
118
|
"""Duplicate particle system within the active object
|
|
119
119
|
|
|
@@ -121,7 +121,7 @@ def duplicate_particle_system(
|
|
|
121
121
|
:type execution_context: int | str | None
|
|
122
122
|
:type undo: bool | None
|
|
123
123
|
:param use_duplicate_settings: Duplicate Settings, Duplicate settings as well, so the new particle system uses its own settings
|
|
124
|
-
:type use_duplicate_settings: bool |
|
|
124
|
+
:type use_duplicate_settings: bool | None
|
|
125
125
|
"""
|
|
126
126
|
|
|
127
127
|
...
|
|
@@ -215,9 +215,9 @@ def hair_dynamics_preset_add(
|
|
|
215
215
|
execution_context: int | str | None = None,
|
|
216
216
|
undo: bool | None = None,
|
|
217
217
|
*,
|
|
218
|
-
name: str
|
|
219
|
-
remove_name: bool |
|
|
220
|
-
remove_active: bool |
|
|
218
|
+
name: str = "",
|
|
219
|
+
remove_name: bool | None = False,
|
|
220
|
+
remove_active: bool | None = False,
|
|
221
221
|
):
|
|
222
222
|
"""Add or remove a Hair Dynamics Preset
|
|
223
223
|
|
|
@@ -225,11 +225,11 @@ def hair_dynamics_preset_add(
|
|
|
225
225
|
:type execution_context: int | str | None
|
|
226
226
|
:type undo: bool | None
|
|
227
227
|
:param name: Name, Name of the preset, used to make the path name
|
|
228
|
-
:type name: str
|
|
228
|
+
:type name: str
|
|
229
229
|
:param remove_name: remove_name
|
|
230
|
-
:type remove_name: bool |
|
|
230
|
+
:type remove_name: bool | None
|
|
231
231
|
:param remove_active: remove_active
|
|
232
|
-
:type remove_active: bool |
|
|
232
|
+
:type remove_active: bool | None
|
|
233
233
|
"""
|
|
234
234
|
|
|
235
235
|
...
|
|
@@ -239,7 +239,7 @@ def hide(
|
|
|
239
239
|
execution_context: int | str | None = None,
|
|
240
240
|
undo: bool | None = None,
|
|
241
241
|
*,
|
|
242
|
-
unselected: bool |
|
|
242
|
+
unselected: bool | None = False,
|
|
243
243
|
):
|
|
244
244
|
"""Hide selected particles
|
|
245
245
|
|
|
@@ -247,7 +247,7 @@ def hide(
|
|
|
247
247
|
:type execution_context: int | str | None
|
|
248
248
|
:type undo: bool | None
|
|
249
249
|
:param unselected: Unselected, Hide unselected rather than selected
|
|
250
|
-
:type unselected: bool |
|
|
250
|
+
:type unselected: bool | None
|
|
251
251
|
"""
|
|
252
252
|
|
|
253
253
|
...
|
|
@@ -313,7 +313,7 @@ def rekey(
|
|
|
313
313
|
execution_context: int | str | None = None,
|
|
314
314
|
undo: bool | None = None,
|
|
315
315
|
*,
|
|
316
|
-
keys_number:
|
|
316
|
+
keys_number: int | None = 2,
|
|
317
317
|
):
|
|
318
318
|
"""Change the number of keys of selected particles (root and tip keys included)
|
|
319
319
|
|
|
@@ -321,7 +321,7 @@ def rekey(
|
|
|
321
321
|
:type execution_context: int | str | None
|
|
322
322
|
:type undo: bool | None
|
|
323
323
|
:param keys_number: Number of Keys
|
|
324
|
-
:type keys_number:
|
|
324
|
+
:type keys_number: int | None
|
|
325
325
|
"""
|
|
326
326
|
|
|
327
327
|
...
|
|
@@ -331,7 +331,7 @@ def remove_doubles(
|
|
|
331
331
|
execution_context: int | str | None = None,
|
|
332
332
|
undo: bool | None = None,
|
|
333
333
|
*,
|
|
334
|
-
threshold:
|
|
334
|
+
threshold: float | None = 0.0002,
|
|
335
335
|
):
|
|
336
336
|
"""Remove selected particles close enough of others
|
|
337
337
|
|
|
@@ -339,7 +339,7 @@ def remove_doubles(
|
|
|
339
339
|
:type execution_context: int | str | None
|
|
340
340
|
:type undo: bool | None
|
|
341
341
|
:param threshold: Merge Distance, Threshold distance within which particles are removed
|
|
342
|
-
:type threshold:
|
|
342
|
+
:type threshold: float | None
|
|
343
343
|
"""
|
|
344
344
|
|
|
345
345
|
...
|
|
@@ -349,7 +349,7 @@ def reveal(
|
|
|
349
349
|
execution_context: int | str | None = None,
|
|
350
350
|
undo: bool | None = None,
|
|
351
351
|
*,
|
|
352
|
-
select: bool |
|
|
352
|
+
select: bool | None = True,
|
|
353
353
|
):
|
|
354
354
|
"""Show hidden particles
|
|
355
355
|
|
|
@@ -357,7 +357,7 @@ def reveal(
|
|
|
357
357
|
:type execution_context: int | str | None
|
|
358
358
|
:type undo: bool | None
|
|
359
359
|
:param select: Select
|
|
360
|
-
:type select: bool |
|
|
360
|
+
:type select: bool | None
|
|
361
361
|
"""
|
|
362
362
|
|
|
363
363
|
...
|
|
@@ -425,8 +425,8 @@ def select_linked_pick(
|
|
|
425
425
|
execution_context: int | str | None = None,
|
|
426
426
|
undo: bool | None = None,
|
|
427
427
|
*,
|
|
428
|
-
deselect: bool |
|
|
429
|
-
location:
|
|
428
|
+
deselect: bool | None = False,
|
|
429
|
+
location: collections.abc.Iterable[int] | None = (0, 0),
|
|
430
430
|
):
|
|
431
431
|
"""Select nearest particle from mouse pointer
|
|
432
432
|
|
|
@@ -434,9 +434,9 @@ def select_linked_pick(
|
|
|
434
434
|
:type execution_context: int | str | None
|
|
435
435
|
:type undo: bool | None
|
|
436
436
|
:param deselect: Deselect, Deselect linked keys rather than selecting them
|
|
437
|
-
:type deselect: bool |
|
|
437
|
+
:type deselect: bool | None
|
|
438
438
|
:param location: Location
|
|
439
|
-
:type location:
|
|
439
|
+
:type location: collections.abc.Iterable[int] | None
|
|
440
440
|
"""
|
|
441
441
|
|
|
442
442
|
...
|
|
@@ -460,8 +460,8 @@ def select_random(
|
|
|
460
460
|
execution_context: int | str | None = None,
|
|
461
461
|
undo: bool | None = None,
|
|
462
462
|
*,
|
|
463
|
-
ratio:
|
|
464
|
-
seed:
|
|
463
|
+
ratio: float | None = 0.5,
|
|
464
|
+
seed: int | None = 0,
|
|
465
465
|
action: str | None = "SELECT",
|
|
466
466
|
type: str | None = "HAIR",
|
|
467
467
|
):
|
|
@@ -471,9 +471,9 @@ def select_random(
|
|
|
471
471
|
:type execution_context: int | str | None
|
|
472
472
|
:type undo: bool | None
|
|
473
473
|
:param ratio: Ratio, Portion of items to select randomly
|
|
474
|
-
:type ratio:
|
|
474
|
+
:type ratio: float | None
|
|
475
475
|
:param seed: Random Seed, Seed for the random number generator
|
|
476
|
-
:type seed:
|
|
476
|
+
:type seed: int | None
|
|
477
477
|
:param action: Action, Selection action to execute
|
|
478
478
|
|
|
479
479
|
SELECT
|
|
@@ -637,7 +637,7 @@ def weight_set(
|
|
|
637
637
|
execution_context: int | str | None = None,
|
|
638
638
|
undo: bool | None = None,
|
|
639
639
|
*,
|
|
640
|
-
factor:
|
|
640
|
+
factor: float | None = 1.0,
|
|
641
641
|
):
|
|
642
642
|
"""Set the weight of selected keys
|
|
643
643
|
|
|
@@ -645,7 +645,7 @@ def weight_set(
|
|
|
645
645
|
:type execution_context: int | str | None
|
|
646
646
|
:type undo: bool | None
|
|
647
647
|
:param factor: Factor, Interpolation factor between current brush weight, and keys' weights
|
|
648
|
-
:type factor:
|
|
648
|
+
:type factor: float | None
|
|
649
649
|
"""
|
|
650
650
|
|
|
651
651
|
...
|