fake-bpy-module 20240404__py3-none-any.whl → 20240406__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_operators/geometry_nodes/__init__.pyi +45 -45
- bl_operators/node/__init__.pyi +9 -9
- bl_ui/properties_data_curve/__init__.pyi +59 -59
- bl_ui/properties_data_mesh/__init__.pyi +96 -96
- bl_ui/properties_freestyle/__init__.pyi +10 -10
- bl_ui/properties_paint_common/__init__.pyi +205 -205
- bl_ui/properties_scene/__init__.pyi +12 -12
- bl_ui/properties_texture/__init__.pyi +12 -12
- bl_ui/space_image/__init__.pyi +893 -893
- bl_ui/space_userpref/__init__.pyi +2 -2
- bl_ui/space_view3d/__init__.pyi +1278 -1099
- bl_ui/space_view3d_toolbar/__init__.pyi +1201 -1201
- bpy/ops/curves/__init__.pyi +62 -0
- bpy/ops/export_scene/__init__.pyi +3 -3
- bpy/ops/nla/__init__.pyi +3 -3
- bpy/ops/sculpt/__init__.pyi +2 -2
- bpy/types/__init__.pyi +38677 -38619
- bpy/utils/previews/__init__.pyi +0 -45
- bpy_types/__init__.pyi +543 -543
- {fake_bpy_module-20240404.dist-info → fake_bpy_module-20240406.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240404.dist-info → fake_bpy_module-20240406.dist-info}/RECORD +23 -23
- {fake_bpy_module-20240404.dist-info → fake_bpy_module-20240406.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240404.dist-info → fake_bpy_module-20240406.dist-info}/top_level.txt +0 -0
bpy/ops/curves/__init__.pyi
CHANGED
|
@@ -66,6 +66,37 @@ def convert_to_particle_system(
|
|
|
66
66
|
|
|
67
67
|
...
|
|
68
68
|
|
|
69
|
+
def curve_type_set(
|
|
70
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
71
|
+
execution_context: str = None,
|
|
72
|
+
undo: bool = None,
|
|
73
|
+
type: typing.Union[str, int] = "POLY",
|
|
74
|
+
):
|
|
75
|
+
"""Set type of selected curves
|
|
76
|
+
|
|
77
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
78
|
+
:type execution_context: str
|
|
79
|
+
:type undo: bool
|
|
80
|
+
:param type: Type, Curve type
|
|
81
|
+
:type type: typing.Union[str, int]
|
|
82
|
+
"""
|
|
83
|
+
|
|
84
|
+
...
|
|
85
|
+
|
|
86
|
+
def cyclic_toggle(
|
|
87
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
88
|
+
execution_context: str = None,
|
|
89
|
+
undo: bool = None,
|
|
90
|
+
):
|
|
91
|
+
"""Make active curve closed/opened loop
|
|
92
|
+
|
|
93
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
94
|
+
:type execution_context: str
|
|
95
|
+
:type undo: bool
|
|
96
|
+
"""
|
|
97
|
+
|
|
98
|
+
...
|
|
99
|
+
|
|
69
100
|
def delete(
|
|
70
101
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
71
102
|
execution_context: str = None,
|
|
@@ -351,6 +382,23 @@ def snap_curves_to_surface(
|
|
|
351
382
|
|
|
352
383
|
...
|
|
353
384
|
|
|
385
|
+
def subdivide(
|
|
386
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
387
|
+
execution_context: str = None,
|
|
388
|
+
undo: bool = None,
|
|
389
|
+
number_cuts: typing.Any = 1,
|
|
390
|
+
):
|
|
391
|
+
"""Subdivide selected curve segments
|
|
392
|
+
|
|
393
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
394
|
+
:type execution_context: str
|
|
395
|
+
:type undo: bool
|
|
396
|
+
:param number_cuts: Number of Cuts
|
|
397
|
+
:type number_cuts: typing.Any
|
|
398
|
+
"""
|
|
399
|
+
|
|
400
|
+
...
|
|
401
|
+
|
|
354
402
|
def surface_set(
|
|
355
403
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
356
404
|
execution_context: str = None,
|
|
@@ -365,6 +413,20 @@ def surface_set(
|
|
|
365
413
|
|
|
366
414
|
...
|
|
367
415
|
|
|
416
|
+
def switch_direction(
|
|
417
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
418
|
+
execution_context: str = None,
|
|
419
|
+
undo: bool = None,
|
|
420
|
+
):
|
|
421
|
+
"""Reverse the direction of the selected curves
|
|
422
|
+
|
|
423
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
424
|
+
:type execution_context: str
|
|
425
|
+
:type undo: bool
|
|
426
|
+
"""
|
|
427
|
+
|
|
428
|
+
...
|
|
429
|
+
|
|
368
430
|
def tilt_clear(
|
|
369
431
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
370
432
|
execution_context: str = None,
|
|
@@ -20,11 +20,11 @@ def fbx(
|
|
|
20
20
|
bake_space_transform: typing.Union[bool, typing.Any] = False,
|
|
21
21
|
object_types: typing.Any = {
|
|
22
22
|
'"CAMERA"',
|
|
23
|
-
'"EMPTY"',
|
|
24
|
-
'"OTHER"',
|
|
25
23
|
'"ARMATURE"',
|
|
26
|
-
'"
|
|
24
|
+
'"EMPTY"',
|
|
27
25
|
'"MESH"',
|
|
26
|
+
'"LIGHT"',
|
|
27
|
+
'"OTHER"',
|
|
28
28
|
},
|
|
29
29
|
use_mesh_modifiers: typing.Union[bool, typing.Any] = True,
|
|
30
30
|
use_mesh_modifiers_render: typing.Union[bool, typing.Any] = True,
|
bpy/ops/nla/__init__.pyi
CHANGED
|
@@ -101,10 +101,10 @@ def bake(
|
|
|
101
101
|
bake_types: typing.Any = {'"POSE"'},
|
|
102
102
|
channel_types: typing.Any = {
|
|
103
103
|
'"LOCATION"',
|
|
104
|
-
'"ROTATION"',
|
|
105
|
-
'"PROPS"',
|
|
106
104
|
'"SCALE"',
|
|
105
|
+
'"ROTATION"',
|
|
107
106
|
'"BBONE"',
|
|
107
|
+
'"PROPS"',
|
|
108
108
|
},
|
|
109
109
|
):
|
|
110
110
|
"""Bake all selected objects location/scale/rotation animation to an action
|
|
@@ -350,7 +350,7 @@ def make_single_user(
|
|
|
350
350
|
undo: bool = None,
|
|
351
351
|
confirm: typing.Union[bool, typing.Any] = True,
|
|
352
352
|
):
|
|
353
|
-
"""
|
|
353
|
+
"""Make linked action local to each strip
|
|
354
354
|
|
|
355
355
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
356
356
|
:type execution_context: str
|
bpy/ops/sculpt/__init__.pyi
CHANGED
|
@@ -47,7 +47,7 @@ def cloth_filter(
|
|
|
47
47
|
bpy.types.OperatorStrokeElement
|
|
48
48
|
] = None,
|
|
49
49
|
type: typing.Any = "GRAVITY",
|
|
50
|
-
force_axis: typing.Any = {'"
|
|
50
|
+
force_axis: typing.Any = {'"X"', '"Z"', '"Y"'},
|
|
51
51
|
orientation: typing.Any = "LOCAL",
|
|
52
52
|
cloth_mass: typing.Any = 1.0,
|
|
53
53
|
cloth_damping: typing.Any = 0.0,
|
|
@@ -599,7 +599,7 @@ def mesh_filter(
|
|
|
599
599
|
bpy.types.OperatorStrokeElement
|
|
600
600
|
] = None,
|
|
601
601
|
type: typing.Any = "INFLATE",
|
|
602
|
-
deform_axis: typing.Any = {'"
|
|
602
|
+
deform_axis: typing.Any = {'"X"', '"Z"', '"Y"'},
|
|
603
603
|
orientation: typing.Any = "LOCAL",
|
|
604
604
|
surface_smooth_shape_preservation: typing.Any = 0.5,
|
|
605
605
|
surface_smooth_current_vertex: typing.Any = 0.5,
|