fake-bpy-module 20240204__py3-none-any.whl → 20240206__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.
- bl_console_utils/autocomplete/__init__.pyi +1 -1
- bl_i18n_utils/__init__.pyi +4 -4
- bl_keymap_utils/__init__.pyi +2 -2
- bl_operators/__init__.pyi +21 -21
- bl_ui/__init__.pyi +64 -64
- bl_ui/properties_grease_pencil_common/__init__.pyi +48 -0
- bl_ui/space_sequencer/__init__.pyi +1 -0
- bl_ui_utils/__init__.pyi +1 -1
- bpy/__init__.pyi +2 -2
- bpy/app/__init__.pyi +2 -2
- bpy/ops/__init__.pyi +63 -63
- bpy/ops/anim/__init__.pyi +1 -1
- bpy/ops/curve/__init__.pyi +3 -3
- bpy/ops/gpencil/__init__.pyi +2 -2
- bpy/ops/graph/__init__.pyi +2 -2
- bpy/ops/grease_pencil/__init__.pyi +44 -1
- bpy/ops/preferences/__init__.pyi +2 -2
- bpy/ops/render/__init__.pyi +2 -2
- bpy/ops/sequencer/__init__.pyi +1 -1
- bpy/props/__init__.pyi +1 -1
- bpy/types/__init__.pyi +154 -152
- bpy/utils/__init__.pyi +1 -1
- bpy_extras/__init__.pyi +2 -2
- bpy_extras/anim_utils/__init__.pyi +2 -2
- {fake_bpy_module-20240204.dist-info → fake_bpy_module-20240206.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240204.dist-info → fake_bpy_module-20240206.dist-info}/RECORD +28 -28
- {fake_bpy_module-20240204.dist-info → fake_bpy_module-20240206.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240204.dist-info → fake_bpy_module-20240206.dist-info}/top_level.txt +0 -0
bl_i18n_utils/__init__.pyi
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import sys
|
|
2
2
|
import typing
|
|
3
|
-
from . import utils_rtl
|
|
4
|
-
from . import utils_cli
|
|
5
|
-
from . import utils_languages_menu
|
|
6
3
|
from . import bl_extract_messages
|
|
7
|
-
from . import merge_po
|
|
8
4
|
from . import utils
|
|
5
|
+
from . import utils_cli
|
|
9
6
|
from . import settings
|
|
7
|
+
from . import utils_rtl
|
|
8
|
+
from . import merge_po
|
|
9
|
+
from . import utils_languages_menu
|
|
10
10
|
|
|
11
11
|
GenericType = typing.TypeVar("GenericType")
|
bl_keymap_utils/__init__.pyi
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import sys
|
|
2
2
|
import typing
|
|
3
3
|
from . import keymap_from_toolbar
|
|
4
|
-
from . import versioning
|
|
5
|
-
from . import keymap_hierarchy
|
|
6
4
|
from . import platform_helpers
|
|
5
|
+
from . import keymap_hierarchy
|
|
7
6
|
from . import io
|
|
7
|
+
from . import versioning
|
|
8
8
|
|
|
9
9
|
GenericType = typing.TypeVar("GenericType")
|
bl_operators/__init__.pyi
CHANGED
|
@@ -1,34 +1,34 @@
|
|
|
1
1
|
import sys
|
|
2
2
|
import typing
|
|
3
|
+
from . import object_align
|
|
4
|
+
from . import mesh
|
|
3
5
|
from . import uvcalc_transform
|
|
4
|
-
from . import
|
|
5
|
-
from . import
|
|
6
|
-
from . import
|
|
7
|
-
from . import node
|
|
6
|
+
from . import bmesh
|
|
7
|
+
from . import file
|
|
8
|
+
from . import view3d
|
|
8
9
|
from . import anim
|
|
9
10
|
from . import constraint
|
|
10
|
-
from . import
|
|
11
|
-
from . import
|
|
12
|
-
from . import userpref
|
|
13
|
-
from . import clip
|
|
14
|
-
from . import bmesh
|
|
11
|
+
from . import wm
|
|
12
|
+
from . import uvcalc_lightmap
|
|
15
13
|
from . import presets
|
|
16
|
-
from . import
|
|
17
|
-
from . import geometry_nodes
|
|
14
|
+
from . import freestyle
|
|
18
15
|
from . import screen_play_rendered_anim
|
|
19
|
-
from . import uvcalc_lightmap
|
|
20
|
-
from . import object_quick_effects
|
|
21
|
-
from . import assets
|
|
22
|
-
from . import object_randomize_transform
|
|
23
16
|
from . import sequencer
|
|
24
|
-
from . import view3d
|
|
25
|
-
from . import wm
|
|
26
|
-
from . import console
|
|
27
|
-
from . import freestyle
|
|
28
17
|
from . import uvcalc_follow_active
|
|
29
|
-
from . import
|
|
30
|
-
from . import
|
|
18
|
+
from . import userpref
|
|
19
|
+
from . import rigidbody
|
|
20
|
+
from . import object
|
|
21
|
+
from . import clip
|
|
22
|
+
from . import console
|
|
23
|
+
from . import add_mesh_torus
|
|
31
24
|
from . import vertexpaint_dirt
|
|
25
|
+
from . import image
|
|
26
|
+
from . import object_randomize_transform
|
|
27
|
+
from . import spreadsheet
|
|
28
|
+
from . import node
|
|
29
|
+
from . import assets
|
|
30
|
+
from . import object_quick_effects
|
|
31
|
+
from . import geometry_nodes
|
|
32
32
|
|
|
33
33
|
GenericType = typing.TypeVar("GenericType")
|
|
34
34
|
|
bl_ui/__init__.pyi
CHANGED
|
@@ -2,82 +2,82 @@ import sys
|
|
|
2
2
|
import typing
|
|
3
3
|
import bpy_types
|
|
4
4
|
|
|
5
|
-
from . import
|
|
6
|
-
from . import
|
|
5
|
+
from . import properties_grease_pencil_common
|
|
6
|
+
from . import properties_data_volume
|
|
7
|
+
from . import properties_data_shaderfx
|
|
8
|
+
from . import properties_render
|
|
9
|
+
from . import space_nla
|
|
7
10
|
from . import properties_data_camera
|
|
8
|
-
from . import
|
|
9
|
-
from . import
|
|
10
|
-
from . import
|
|
11
|
-
from . import
|
|
12
|
-
from . import
|
|
11
|
+
from . import properties_mask_common
|
|
12
|
+
from . import space_outliner
|
|
13
|
+
from . import properties_physics_dynamicpaint
|
|
14
|
+
from . import space_graph
|
|
15
|
+
from . import space_node
|
|
16
|
+
from . import space_userpref
|
|
17
|
+
from . import space_dopesheet
|
|
18
|
+
from . import properties_view_layer
|
|
19
|
+
from . import space_toolsystem_common
|
|
20
|
+
from . import properties_data_lattice
|
|
21
|
+
from . import properties_physics_rigidbody_constraint
|
|
22
|
+
from . import space_text
|
|
23
|
+
from . import space_filebrowser
|
|
24
|
+
from . import properties_data_armature
|
|
25
|
+
from . import space_sequencer
|
|
26
|
+
from . import properties_physics_common
|
|
27
|
+
from . import properties_paint_common
|
|
13
28
|
from . import properties_data_gpencil
|
|
14
29
|
from . import anim
|
|
30
|
+
from . import space_spreadsheet
|
|
31
|
+
from . import space_statusbar
|
|
32
|
+
from . import properties_world
|
|
15
33
|
from . import properties_data_curve
|
|
16
|
-
from . import
|
|
17
|
-
from . import
|
|
34
|
+
from . import space_toolsystem_toolbar
|
|
35
|
+
from . import space_image
|
|
36
|
+
from . import properties_constraint
|
|
37
|
+
from . import properties_data_grease_pencil
|
|
38
|
+
from . import properties_data_curves
|
|
39
|
+
from . import properties_animviz
|
|
40
|
+
from . import node_add_menu_shader
|
|
41
|
+
from . import node_add_menu_geometry
|
|
42
|
+
from . import space_info
|
|
18
43
|
from . import space_clip
|
|
19
|
-
from . import
|
|
44
|
+
from . import properties_data_bone
|
|
45
|
+
from . import properties_data_pointcloud
|
|
46
|
+
from . import properties_physics_rigidbody
|
|
47
|
+
from . import properties_physics_cloth
|
|
20
48
|
from . import space_topbar
|
|
21
|
-
from . import
|
|
22
|
-
from . import
|
|
23
|
-
from . import
|
|
24
|
-
from . import
|
|
25
|
-
from . import
|
|
26
|
-
from . import
|
|
27
|
-
from . import
|
|
28
|
-
from . import properties_texture
|
|
49
|
+
from . import properties_collection
|
|
50
|
+
from . import properties_data_metaball
|
|
51
|
+
from . import properties_object
|
|
52
|
+
from . import properties_freestyle
|
|
53
|
+
from . import properties_data_mesh
|
|
54
|
+
from . import properties_workspace
|
|
55
|
+
from . import generic_ui_list
|
|
29
56
|
from . import utils
|
|
30
|
-
from . import
|
|
31
|
-
from . import
|
|
32
|
-
from . import space_dopesheet
|
|
33
|
-
from . import properties_grease_pencil_common
|
|
34
|
-
from . import space_filebrowser
|
|
35
|
-
from . import properties_render
|
|
36
|
-
from . import space_console
|
|
37
|
-
from . import space_node
|
|
38
|
-
from . import space_time
|
|
39
|
-
from . import asset_shelf
|
|
57
|
+
from . import properties_data_speaker
|
|
58
|
+
from . import properties_output
|
|
40
59
|
from . import properties_physics_softbody
|
|
41
|
-
from . import generic_ui_list
|
|
42
|
-
from . import properties_physics_geometry_nodes
|
|
43
|
-
from . import space_properties
|
|
44
|
-
from . import space_outliner
|
|
45
|
-
from . import properties_data_metaball
|
|
46
|
-
from . import properties_constraint
|
|
47
|
-
from . import properties_data_lattice
|
|
48
|
-
from . import properties_physics_rigidbody
|
|
49
|
-
from . import node_add_menu_geometry
|
|
50
|
-
from . import node_add_menu_texture
|
|
51
|
-
from . import properties_particle
|
|
52
|
-
from . import properties_data_light
|
|
53
60
|
from . import properties_scene
|
|
54
|
-
from . import
|
|
55
|
-
from . import properties_data_modifier
|
|
56
|
-
from . import space_graph
|
|
57
|
-
from . import space_image
|
|
58
|
-
from . import properties_data_mesh
|
|
61
|
+
from . import properties_data_empty
|
|
59
62
|
from . import node_add_menu
|
|
60
|
-
from . import
|
|
61
|
-
from . import
|
|
62
|
-
from . import properties_data_bone
|
|
63
|
-
from . import space_toolsystem_common
|
|
64
|
-
from . import space_spreadsheet
|
|
63
|
+
from . import node_add_menu_compositor
|
|
64
|
+
from . import space_time
|
|
65
65
|
from . import properties_physics_fluid
|
|
66
|
-
from . import
|
|
67
|
-
from . import
|
|
68
|
-
from . import
|
|
69
|
-
from . import
|
|
70
|
-
from . import
|
|
71
|
-
from . import
|
|
72
|
-
from . import
|
|
73
|
-
from . import
|
|
74
|
-
from . import
|
|
66
|
+
from . import properties_particle
|
|
67
|
+
from . import properties_physics_field
|
|
68
|
+
from . import properties_data_lightprobe
|
|
69
|
+
from . import space_console
|
|
70
|
+
from . import node_add_menu_texture
|
|
71
|
+
from . import properties_texture
|
|
72
|
+
from . import properties_physics_geometry_nodes
|
|
73
|
+
from . import space_view3d
|
|
74
|
+
from . import asset_shelf
|
|
75
|
+
from . import properties_data_modifier
|
|
75
76
|
from . import properties_material
|
|
76
|
-
from . import
|
|
77
|
-
from . import
|
|
78
|
-
from . import
|
|
79
|
-
from . import
|
|
80
|
-
from . import properties_paint_common
|
|
77
|
+
from . import properties_material_gpencil
|
|
78
|
+
from . import space_view3d_toolbar
|
|
79
|
+
from . import space_properties
|
|
80
|
+
from . import properties_data_light
|
|
81
81
|
|
|
82
82
|
GenericType = typing.TypeVar("GenericType")
|
|
83
83
|
|
|
@@ -594,6 +594,54 @@ class GREASE_PENCIL_MT_layer_active(bpy_types.Menu, bpy_types._GenericUI):
|
|
|
594
594
|
def type_recast(self): ...
|
|
595
595
|
def values(self): ...
|
|
596
596
|
|
|
597
|
+
class GREASE_PENCIL_MT_move_to_layer(bpy_types.Menu, bpy_types._GenericUI):
|
|
598
|
+
bl_label: typing.Any
|
|
599
|
+
bl_rna: typing.Any
|
|
600
|
+
id_data: typing.Any
|
|
601
|
+
|
|
602
|
+
def append(self, draw_func): ...
|
|
603
|
+
def as_pointer(self): ...
|
|
604
|
+
def bl_rna_get_subclass(self): ...
|
|
605
|
+
def bl_rna_get_subclass_py(self): ...
|
|
606
|
+
def draw(self, context): ...
|
|
607
|
+
def draw_collapsible(self, context, layout): ...
|
|
608
|
+
def draw_preset(self, _context): ...
|
|
609
|
+
def driver_add(self): ...
|
|
610
|
+
def driver_remove(self): ...
|
|
611
|
+
def get(self): ...
|
|
612
|
+
def id_properties_clear(self): ...
|
|
613
|
+
def id_properties_ensure(self): ...
|
|
614
|
+
def id_properties_ui(self): ...
|
|
615
|
+
def is_extended(self): ...
|
|
616
|
+
def is_property_hidden(self): ...
|
|
617
|
+
def is_property_overridable_library(self): ...
|
|
618
|
+
def is_property_readonly(self): ...
|
|
619
|
+
def is_property_set(self): ...
|
|
620
|
+
def items(self): ...
|
|
621
|
+
def keyframe_delete(self): ...
|
|
622
|
+
def keyframe_insert(self): ...
|
|
623
|
+
def keys(self): ...
|
|
624
|
+
def path_from_id(self): ...
|
|
625
|
+
def path_menu(
|
|
626
|
+
self,
|
|
627
|
+
searchpaths,
|
|
628
|
+
operator,
|
|
629
|
+
props_default,
|
|
630
|
+
prop_filepath,
|
|
631
|
+
filter_ext,
|
|
632
|
+
filter_path,
|
|
633
|
+
display_name,
|
|
634
|
+
add_operator,
|
|
635
|
+
): ...
|
|
636
|
+
def path_resolve(self): ...
|
|
637
|
+
def pop(self): ...
|
|
638
|
+
def prepend(self, draw_func): ...
|
|
639
|
+
def property_overridable_library_set(self): ...
|
|
640
|
+
def property_unset(self): ...
|
|
641
|
+
def remove(self, draw_func): ...
|
|
642
|
+
def type_recast(self): ...
|
|
643
|
+
def values(self): ...
|
|
644
|
+
|
|
597
645
|
class GreasePencilBrushFalloff:
|
|
598
646
|
bl_label: typing.Any
|
|
599
647
|
bl_options: typing.Any
|
bl_ui_utils/__init__.pyi
CHANGED
bpy/__init__.pyi
CHANGED
|
@@ -4,11 +4,11 @@ import bpy.types
|
|
|
4
4
|
|
|
5
5
|
from . import types
|
|
6
6
|
from . import ops
|
|
7
|
+
from . import path
|
|
8
|
+
from . import app
|
|
7
9
|
from . import utils
|
|
8
10
|
from . import msgbus
|
|
9
|
-
from . import app
|
|
10
11
|
from . import props
|
|
11
|
-
from . import path
|
|
12
12
|
|
|
13
13
|
GenericType = typing.TypeVar("GenericType")
|
|
14
14
|
context: "bpy.types.Context"
|
bpy/app/__init__.pyi
CHANGED
bpy/ops/__init__.pyi
CHANGED
|
@@ -1,81 +1,81 @@
|
|
|
1
1
|
import sys
|
|
2
2
|
import typing
|
|
3
|
-
from . import mesh
|
|
4
|
-
from . import transform
|
|
5
|
-
from . import screen
|
|
6
|
-
from . import cachefile
|
|
7
|
-
from . import palette
|
|
8
|
-
from . import info
|
|
9
|
-
from . import clip
|
|
10
|
-
from . import text
|
|
11
|
-
from . import action
|
|
12
|
-
from . import spreadsheet
|
|
13
|
-
from . import uv
|
|
14
|
-
from . import gizmogroup
|
|
15
|
-
from . import file
|
|
16
|
-
from . import export_mesh
|
|
17
|
-
from . import import_curve
|
|
18
|
-
from . import anim
|
|
19
|
-
from . import render
|
|
20
|
-
from . import marker
|
|
21
|
-
from . import constraint
|
|
22
|
-
from . import font
|
|
23
|
-
from . import uilist
|
|
24
|
-
from . import outliner
|
|
25
3
|
from . import buttons
|
|
26
|
-
from . import cycles
|
|
27
|
-
from . import sculpt
|
|
28
4
|
from . import wm
|
|
29
|
-
from . import
|
|
30
|
-
from . import
|
|
31
|
-
from . import material
|
|
32
|
-
from . import import_anim
|
|
33
|
-
from . import ui
|
|
34
|
-
from . import boid
|
|
5
|
+
from . import script
|
|
6
|
+
from . import mesh
|
|
35
7
|
from . import mball
|
|
36
|
-
from . import import_mesh
|
|
37
|
-
from . import dpaint
|
|
38
|
-
from . import sequencer
|
|
39
|
-
from . import ptcache
|
|
40
|
-
from . import particle
|
|
41
|
-
from . import sculpt_curves
|
|
42
8
|
from . import console
|
|
43
|
-
from . import fluid
|
|
44
9
|
from . import lattice
|
|
45
|
-
from . import
|
|
46
|
-
from . import poselib
|
|
47
|
-
from . import view2d
|
|
48
|
-
from . import node
|
|
10
|
+
from . import mask
|
|
49
11
|
from . import gpencil
|
|
50
|
-
from . import
|
|
51
|
-
from . import
|
|
52
|
-
from . import paint
|
|
53
|
-
from . import camera
|
|
54
|
-
from . import asset
|
|
55
|
-
from . import cloth
|
|
56
|
-
from . import world
|
|
57
|
-
from . import export_scene
|
|
58
|
-
from . import geometry
|
|
59
|
-
from . import surface
|
|
12
|
+
from . import constraint
|
|
13
|
+
from . import import_mesh
|
|
60
14
|
from . import scene
|
|
61
|
-
from . import
|
|
62
|
-
from . import mask
|
|
63
|
-
from . import brush
|
|
15
|
+
from . import curves
|
|
64
16
|
from . import object
|
|
65
|
-
from . import
|
|
66
|
-
from . import paintcurve
|
|
67
|
-
from . import import_scene
|
|
68
|
-
from . import ed
|
|
17
|
+
from . import preferences
|
|
69
18
|
from . import rigidbody
|
|
19
|
+
from . import fluid
|
|
20
|
+
from . import spreadsheet
|
|
70
21
|
from . import nla
|
|
71
|
-
from . import
|
|
72
|
-
from . import
|
|
22
|
+
from . import marker
|
|
23
|
+
from . import surface
|
|
24
|
+
from . import boid
|
|
25
|
+
from . import ptcache
|
|
26
|
+
from . import dpaint
|
|
27
|
+
from . import ed
|
|
28
|
+
from . import uv
|
|
29
|
+
from . import sculpt
|
|
30
|
+
from . import paintcurve
|
|
31
|
+
from . import pose
|
|
32
|
+
from . import sequencer
|
|
33
|
+
from . import cloth
|
|
34
|
+
from . import screen
|
|
35
|
+
from . import particle
|
|
73
36
|
from . import sound
|
|
74
|
-
from . import
|
|
75
|
-
from . import
|
|
37
|
+
from . import outliner
|
|
38
|
+
from . import anim
|
|
39
|
+
from . import import_curve
|
|
40
|
+
from . import brush
|
|
41
|
+
from . import text
|
|
42
|
+
from . import view3d
|
|
43
|
+
from . import grease_pencil
|
|
44
|
+
from . import font
|
|
45
|
+
from . import paint
|
|
46
|
+
from . import export_anim
|
|
76
47
|
from . import armature
|
|
48
|
+
from . import node
|
|
49
|
+
from . import import_scene
|
|
50
|
+
from . import graph
|
|
51
|
+
from . import transform
|
|
52
|
+
from . import text_editor
|
|
53
|
+
from . import info
|
|
54
|
+
from . import curve
|
|
55
|
+
from . import cycles
|
|
56
|
+
from . import camera
|
|
57
|
+
from . import export_mesh
|
|
58
|
+
from . import clip
|
|
59
|
+
from . import cachefile
|
|
77
60
|
from . import workspace
|
|
61
|
+
from . import action
|
|
62
|
+
from . import uilist
|
|
63
|
+
from . import geometry
|
|
64
|
+
from . import import_anim
|
|
65
|
+
from . import material
|
|
66
|
+
from . import gizmogroup
|
|
67
|
+
from . import poselib
|
|
68
|
+
from . import export_scene
|
|
69
|
+
from . import world
|
|
70
|
+
from . import file
|
|
71
|
+
from . import asset
|
|
72
|
+
from . import ui
|
|
73
|
+
from . import palette
|
|
74
|
+
from . import texture
|
|
75
|
+
from . import image
|
|
76
|
+
from . import view2d
|
|
77
|
+
from . import render
|
|
78
|
+
from . import sculpt_curves
|
|
78
79
|
from . import collection
|
|
79
|
-
from . import curve
|
|
80
80
|
|
|
81
81
|
GenericType = typing.TypeVar("GenericType")
|
bpy/ops/anim/__init__.pyi
CHANGED
|
@@ -94,7 +94,7 @@ def channels_bake(
|
|
|
94
94
|
:type step: typing.Optional[typing.Any]
|
|
95
95
|
:param remove_outside_range: Remove Outside Range, Removes keys outside the given range, leaving only the newly baked
|
|
96
96
|
:type remove_outside_range: typing.Optional[typing.Union[bool, typing.Any]]
|
|
97
|
-
:param interpolation_type: Interpolation Type, Choose the interpolation type with which new keys will be added * ``BEZIER``
|
|
97
|
+
:param interpolation_type: Interpolation Type, Choose the interpolation type with which new keys will be added * ``BEZIER`` Bézier -- New keys will be Bézier. * ``LIN`` Linear -- New keys will be linear. * ``CONST`` Constant -- New keys will be constant.
|
|
98
98
|
:type interpolation_type: typing.Optional[typing.Any]
|
|
99
99
|
:param bake_modifiers: Bake Modifiers, Bake Modifiers into keyframes and delete them after
|
|
100
100
|
:type bake_modifiers: typing.Optional[typing.Union[bool, typing.Any]]
|
bpy/ops/curve/__init__.pyi
CHANGED
|
@@ -403,7 +403,7 @@ def primitive_bezier_circle_add(
|
|
|
403
403
|
rotation: typing.Optional[typing.Any] = (0.0, 0.0, 0.0),
|
|
404
404
|
scale: typing.Optional[typing.Any] = (0.0, 0.0, 0.0),
|
|
405
405
|
):
|
|
406
|
-
"""Construct a
|
|
406
|
+
"""Construct a Bézier Circle
|
|
407
407
|
|
|
408
408
|
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
409
409
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
@@ -438,7 +438,7 @@ def primitive_bezier_curve_add(
|
|
|
438
438
|
rotation: typing.Optional[typing.Any] = (0.0, 0.0, 0.0),
|
|
439
439
|
scale: typing.Optional[typing.Any] = (0.0, 0.0, 0.0),
|
|
440
440
|
):
|
|
441
|
-
"""Construct a
|
|
441
|
+
"""Construct a Bézier Curve
|
|
442
442
|
|
|
443
443
|
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
444
444
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
@@ -990,7 +990,7 @@ def spline_type_set(
|
|
|
990
990
|
:type undo: typing.Optional[bool]
|
|
991
991
|
:param type: Type, Spline type
|
|
992
992
|
:type type: typing.Optional[typing.Any]
|
|
993
|
-
:param use_handles: Handles, Use handles when converting
|
|
993
|
+
:param use_handles: Handles, Use handles when converting Bézier curves into polygons
|
|
994
994
|
:type use_handles: typing.Optional[typing.Union[bool, typing.Any]]
|
|
995
995
|
"""
|
|
996
996
|
|
bpy/ops/gpencil/__init__.pyi
CHANGED
|
@@ -280,7 +280,7 @@ def convert(
|
|
|
280
280
|
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
281
281
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
282
282
|
:type undo: typing.Optional[bool]
|
|
283
|
-
:param type: Type, Which type of curve to convert to * ``PATH`` Path -- Animation path. * ``CURVE``
|
|
283
|
+
:param type: Type, Which type of curve to convert to * ``PATH`` Path -- Animation path. * ``CURVE`` Bézier Curve -- Smooth Bézier curve. * ``POLY`` Polygon Curve -- Bézier curve with straight-line segments (vector handles).
|
|
284
284
|
:type type: typing.Optional[typing.Any]
|
|
285
285
|
:param bevel_depth: Bevel Depth
|
|
286
286
|
:type bevel_depth: typing.Optional[typing.Any]
|
|
@@ -2882,7 +2882,7 @@ def tint_flip(
|
|
|
2882
2882
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
2883
2883
|
undo: typing.Optional[bool] = None,
|
|
2884
2884
|
):
|
|
2885
|
-
"""Switch tint colors :File: `startup/bl_ui/properties_grease_pencil_common.py\:
|
|
2885
|
+
"""Switch tint colors :File: `startup/bl_ui/properties_grease_pencil_common.py\:930 <https://projects.blender.org/blender/blender/src/branch/main/scripts/startup/bl_ui/properties_grease_pencil_common.py#L930>`__
|
|
2886
2886
|
|
|
2887
2887
|
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
2888
2888
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
bpy/ops/graph/__init__.pyi
CHANGED
|
@@ -476,9 +476,9 @@ def equalize_handles(
|
|
|
476
476
|
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
477
477
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
478
478
|
:type undo: typing.Optional[bool]
|
|
479
|
-
:param side: Side, Side of the keyframes'
|
|
479
|
+
:param side: Side, Side of the keyframes' Bézier handles to affect * ``LEFT`` Left -- Equalize selected keyframes' left handles. * ``RIGHT`` Right -- Equalize selected keyframes' right handles. * ``BOTH`` Both -- Equalize both of a keyframe's handles.
|
|
480
480
|
:type side: typing.Optional[typing.Any]
|
|
481
|
-
:param handle_length: Handle Length, Length to make selected keyframes'
|
|
481
|
+
:param handle_length: Handle Length, Length to make selected keyframes' Bézier handles
|
|
482
482
|
:type handle_length: typing.Optional[typing.Any]
|
|
483
483
|
:param flatten: Flatten, Make the values of the selected keyframes' handles the same as their respective keyframes
|
|
484
484
|
:type flatten: typing.Optional[typing.Union[bool, typing.Any]]
|
|
@@ -251,7 +251,7 @@ def layer_add(
|
|
|
251
251
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
252
252
|
undo: typing.Optional[bool] = None,
|
|
253
253
|
*,
|
|
254
|
-
new_layer_name: typing.Union[str, typing.Any] = "",
|
|
254
|
+
new_layer_name: typing.Union[str, typing.Any] = "Layer",
|
|
255
255
|
):
|
|
256
256
|
"""Add a new Grease Pencil layer in the active object
|
|
257
257
|
|
|
@@ -304,6 +304,26 @@ def layer_hide(
|
|
|
304
304
|
|
|
305
305
|
...
|
|
306
306
|
|
|
307
|
+
def layer_isolate(
|
|
308
|
+
override_context: typing.Optional[
|
|
309
|
+
typing.Union[typing.Dict, "bpy.types.Context"]
|
|
310
|
+
] = None,
|
|
311
|
+
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
312
|
+
undo: typing.Optional[bool] = None,
|
|
313
|
+
*,
|
|
314
|
+
affect_visibility: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
315
|
+
):
|
|
316
|
+
"""Make only active layer visible/editable
|
|
317
|
+
|
|
318
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
319
|
+
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
320
|
+
:type undo: typing.Optional[bool]
|
|
321
|
+
:param affect_visibility: Affect Visibility, Also affect the visibility
|
|
322
|
+
:type affect_visibility: typing.Optional[typing.Union[bool, typing.Any]]
|
|
323
|
+
"""
|
|
324
|
+
|
|
325
|
+
...
|
|
326
|
+
|
|
307
327
|
def layer_remove(
|
|
308
328
|
override_context: typing.Optional[
|
|
309
329
|
typing.Union[typing.Dict, "bpy.types.Context"]
|
|
@@ -479,6 +499,29 @@ def material_unlock_all(
|
|
|
479
499
|
|
|
480
500
|
...
|
|
481
501
|
|
|
502
|
+
def move_to_layer(
|
|
503
|
+
override_context: typing.Optional[
|
|
504
|
+
typing.Union[typing.Dict, "bpy.types.Context"]
|
|
505
|
+
] = None,
|
|
506
|
+
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
507
|
+
undo: typing.Optional[bool] = None,
|
|
508
|
+
*,
|
|
509
|
+
target_layer_name: typing.Union[str, typing.Any] = "Layer",
|
|
510
|
+
add_new_layer: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
511
|
+
):
|
|
512
|
+
"""Move selected strokes to another layer
|
|
513
|
+
|
|
514
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
515
|
+
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
516
|
+
:type undo: typing.Optional[bool]
|
|
517
|
+
:param target_layer_name: Name, Target Grease Pencil Layer
|
|
518
|
+
:type target_layer_name: typing.Union[str, typing.Any]
|
|
519
|
+
:param add_new_layer: New Layer, Move selection to a new layer
|
|
520
|
+
:type add_new_layer: typing.Optional[typing.Union[bool, typing.Any]]
|
|
521
|
+
"""
|
|
522
|
+
|
|
523
|
+
...
|
|
524
|
+
|
|
482
525
|
def reorder(
|
|
483
526
|
override_context: typing.Optional[
|
|
484
527
|
typing.Union[typing.Dict, "bpy.types.Context"]
|
bpy/ops/preferences/__init__.pyi
CHANGED
|
@@ -369,7 +369,7 @@ def extension_repo_add(
|
|
|
369
369
|
remote_path: typing.Union[str, typing.Any] = "",
|
|
370
370
|
use_custom_directory: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
371
371
|
custom_directory: typing.Union[str, typing.Any] = "",
|
|
372
|
-
type: typing.Optional[typing.Any] = "
|
|
372
|
+
type: typing.Optional[typing.Any] = "REMOTE",
|
|
373
373
|
):
|
|
374
374
|
"""Add a directory to be used as a local extension repository
|
|
375
375
|
|
|
@@ -384,7 +384,7 @@ def extension_repo_add(
|
|
|
384
384
|
:type use_custom_directory: typing.Optional[typing.Union[bool, typing.Any]]
|
|
385
385
|
:param custom_directory: Directory
|
|
386
386
|
:type custom_directory: typing.Union[str, typing.Any]
|
|
387
|
-
:param type: Type, The kind of repository to add * ``
|
|
387
|
+
:param type: Type, The kind of repository to add * ``REMOTE`` Add Remote Repository -- Add a repository referencing an remote repository with support for listing and updating extensions. * ``LOCAL`` Add Local Repository -- Add a repository managed manually without referencing an external repository.
|
|
388
388
|
:type type: typing.Optional[typing.Any]
|
|
389
389
|
"""
|
|
390
390
|
|
bpy/ops/render/__init__.pyi
CHANGED
|
@@ -158,7 +158,7 @@ def opengl(
|
|
|
158
158
|
:type render_keyed_only: typing.Optional[typing.Union[bool, typing.Any]]
|
|
159
159
|
:param sequencer: Sequencer, Render using the sequencer's OpenGL display
|
|
160
160
|
:type sequencer: typing.Optional[typing.Union[bool, typing.Any]]
|
|
161
|
-
:param write_still: Write Image, Save rendered
|
|
161
|
+
:param write_still: Write Image, Save the rendered image to the output path (used only when animation is disabled)
|
|
162
162
|
:type write_still: typing.Optional[typing.Union[bool, typing.Any]]
|
|
163
163
|
:param view_context: View Context, Use the current 3D view for rendering, else use scene settings
|
|
164
164
|
:type view_context: typing.Optional[typing.Union[bool, typing.Any]]
|
|
@@ -228,7 +228,7 @@ def render(
|
|
|
228
228
|
:type undo: typing.Optional[bool]
|
|
229
229
|
:param animation: Animation, Render files from the animation range of this scene
|
|
230
230
|
:type animation: typing.Optional[typing.Union[bool, typing.Any]]
|
|
231
|
-
:param write_still: Write Image, Save rendered
|
|
231
|
+
:param write_still: Write Image, Save the rendered image to the output path (used only when animation is disabled)
|
|
232
232
|
:type write_still: typing.Optional[typing.Union[bool, typing.Any]]
|
|
233
233
|
:param use_viewport: Use 3D Viewport, When inside a 3D viewport, use layers and camera of the viewport
|
|
234
234
|
:type use_viewport: typing.Optional[typing.Union[bool, typing.Any]]
|
bpy/ops/sequencer/__init__.pyi
CHANGED
|
@@ -1220,7 +1220,7 @@ def retiming_segment_speed_set(
|
|
|
1220
1220
|
:type undo: typing.Optional[bool]
|
|
1221
1221
|
:param speed: Speed, New speed of retimed segment
|
|
1222
1222
|
:type speed: typing.Optional[typing.Any]
|
|
1223
|
-
:param keep_retiming: Preserve Current
|
|
1223
|
+
:param keep_retiming: Preserve Current Retiming, Keep speed of other segments unchanged, change strip length instead
|
|
1224
1224
|
:type keep_retiming: typing.Optional[typing.Union[bool, typing.Any]]
|
|
1225
1225
|
"""
|
|
1226
1226
|
|