fake-bpy-module 20240203__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 +2 -2
- bl_i18n_utils/__init__.pyi +4 -4
- bl_keymap_utils/__init__.pyi +3 -3
- bl_operators/__init__.pyi +20 -20
- bl_ui/__init__.pyi +59 -59
- bl_ui/properties_grease_pencil_common/__init__.pyi +48 -0
- bl_ui/space_sequencer/__init__.pyi +1 -0
- bpy/__init__.pyi +2 -2
- bpy/app/__init__.pyi +2 -2
- bpy/ops/__init__.pyi +62 -62
- 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 +151 -149
- bpy_extras/__init__.pyi +2 -2
- bpy_extras/anim_utils/__init__.pyi +2 -2
- {fake_bpy_module-20240203.dist-info → fake_bpy_module-20240206.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240203.dist-info → fake_bpy_module-20240206.dist-info}/RECORD +26 -26
- {fake_bpy_module-20240203.dist-info → fake_bpy_module-20240206.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240203.dist-info → fake_bpy_module-20240206.dist-info}/top_level.txt +0 -0
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import sys
|
|
2
2
|
import typing
|
|
3
|
-
from . import complete_import
|
|
4
|
-
from . import complete_namespace
|
|
5
3
|
from . import complete_calltip
|
|
6
4
|
from . import intellisense
|
|
5
|
+
from . import complete_import
|
|
6
|
+
from . import complete_namespace
|
|
7
7
|
|
|
8
8
|
GenericType = typing.TypeVar("GenericType")
|
bl_i18n_utils/__init__.pyi
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import sys
|
|
2
2
|
import typing
|
|
3
|
-
from . import
|
|
4
|
-
from . import utils_rtl
|
|
3
|
+
from . import bl_extract_messages
|
|
5
4
|
from . import utils
|
|
6
|
-
from . import settings
|
|
7
5
|
from . import utils_cli
|
|
8
|
-
from . import
|
|
6
|
+
from . import settings
|
|
7
|
+
from . import utils_rtl
|
|
9
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
|
-
from . import versioning
|
|
4
|
-
from . import keymap_hierarchy
|
|
5
|
-
from . import platform_helpers
|
|
6
3
|
from . import keymap_from_toolbar
|
|
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
|
|
5
|
+
from . import uvcalc_transform
|
|
6
|
+
from . import bmesh
|
|
3
7
|
from . import file
|
|
4
|
-
from . import
|
|
5
|
-
from . import freestyle
|
|
8
|
+
from . import view3d
|
|
6
9
|
from . import anim
|
|
7
|
-
from . import uvcalc_follow_active
|
|
8
|
-
from . import sequencer
|
|
9
10
|
from . import constraint
|
|
10
|
-
from . import
|
|
11
|
-
from . import screen_play_rendered_anim
|
|
12
|
-
from . import add_mesh_torus
|
|
11
|
+
from . import wm
|
|
13
12
|
from . import uvcalc_lightmap
|
|
14
|
-
from . import
|
|
15
|
-
from . import
|
|
16
|
-
from . import
|
|
17
|
-
from . import
|
|
13
|
+
from . import presets
|
|
14
|
+
from . import freestyle
|
|
15
|
+
from . import screen_play_rendered_anim
|
|
16
|
+
from . import sequencer
|
|
17
|
+
from . import uvcalc_follow_active
|
|
18
18
|
from . import userpref
|
|
19
|
-
from . import
|
|
20
|
-
from . import
|
|
21
|
-
from . import vertexpaint_dirt
|
|
22
|
-
from . import view3d
|
|
19
|
+
from . import rigidbody
|
|
20
|
+
from . import object
|
|
23
21
|
from . import clip
|
|
24
|
-
from . import object_quick_effects
|
|
25
22
|
from . import console
|
|
23
|
+
from . import add_mesh_torus
|
|
24
|
+
from . import vertexpaint_dirt
|
|
26
25
|
from . import image
|
|
27
|
-
from . import
|
|
28
|
-
from . import
|
|
29
|
-
from . import
|
|
26
|
+
from . import object_randomize_transform
|
|
27
|
+
from . import spreadsheet
|
|
28
|
+
from . import node
|
|
30
29
|
from . import assets
|
|
31
|
-
from . import
|
|
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 space_graph
|
|
7
|
-
from . import properties_output
|
|
8
|
-
from . import properties_physics_dynamicpaint
|
|
9
|
-
from . import properties_data_modifier
|
|
10
|
-
from . import node_add_menu_compositor
|
|
11
|
-
from . import properties_workspace
|
|
12
|
-
from . import anim
|
|
13
|
-
from . import properties_data_lightprobe
|
|
5
|
+
from . import properties_grease_pencil_common
|
|
14
6
|
from . import properties_data_volume
|
|
15
|
-
from . import
|
|
7
|
+
from . import properties_data_shaderfx
|
|
8
|
+
from . import properties_render
|
|
9
|
+
from . import space_nla
|
|
10
|
+
from . import properties_data_camera
|
|
11
|
+
from . import properties_mask_common
|
|
16
12
|
from . import space_outliner
|
|
17
|
-
from . import
|
|
18
|
-
from . import
|
|
13
|
+
from . import properties_physics_dynamicpaint
|
|
14
|
+
from . import space_graph
|
|
19
15
|
from . import space_node
|
|
20
|
-
from . import node_add_menu
|
|
21
|
-
from . import properties_data_bone
|
|
22
|
-
from . import properties_physics_rigidbody
|
|
23
|
-
from . import utils
|
|
24
|
-
from . import properties_freestyle
|
|
25
16
|
from . import space_userpref
|
|
26
|
-
from . import space_nla
|
|
27
|
-
from . import node_add_menu_shader
|
|
28
|
-
from . import space_filebrowser
|
|
29
|
-
from . import node_add_menu_geometry
|
|
30
17
|
from . import space_dopesheet
|
|
31
|
-
from . import
|
|
32
|
-
from . import space_info
|
|
33
|
-
from . import properties_physics_common
|
|
18
|
+
from . import properties_view_layer
|
|
34
19
|
from . import space_toolsystem_common
|
|
35
|
-
from . import
|
|
36
|
-
from . import
|
|
37
|
-
from . import
|
|
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
|
|
28
|
+
from . import properties_data_gpencil
|
|
29
|
+
from . import anim
|
|
30
|
+
from . import space_spreadsheet
|
|
31
|
+
from . import space_statusbar
|
|
32
|
+
from . import properties_world
|
|
38
33
|
from . import properties_data_curve
|
|
39
34
|
from . import space_toolsystem_toolbar
|
|
40
|
-
from . import
|
|
35
|
+
from . import space_image
|
|
41
36
|
from . import properties_constraint
|
|
42
|
-
from . import
|
|
43
|
-
from . import
|
|
44
|
-
from . import properties_data_empty
|
|
45
|
-
from . import properties_data_lattice
|
|
37
|
+
from . import properties_data_grease_pencil
|
|
38
|
+
from . import properties_data_curves
|
|
46
39
|
from . import properties_animviz
|
|
47
|
-
from . import
|
|
48
|
-
from . import
|
|
40
|
+
from . import node_add_menu_shader
|
|
41
|
+
from . import node_add_menu_geometry
|
|
42
|
+
from . import space_info
|
|
43
|
+
from . import space_clip
|
|
44
|
+
from . import properties_data_bone
|
|
45
|
+
from . import properties_data_pointcloud
|
|
46
|
+
from . import properties_physics_rigidbody
|
|
47
|
+
from . import properties_physics_cloth
|
|
48
|
+
from . import space_topbar
|
|
49
49
|
from . import properties_collection
|
|
50
|
-
from . import
|
|
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
|
|
51
55
|
from . import generic_ui_list
|
|
52
|
-
from . import
|
|
53
|
-
from . import space_spreadsheet
|
|
54
|
-
from . import properties_physics_cloth
|
|
55
|
-
from . import properties_paint_common
|
|
56
|
-
from . import space_sequencer
|
|
57
|
-
from . import properties_physics_rigidbody_constraint
|
|
58
|
-
from . import properties_data_light
|
|
59
|
-
from . import space_image
|
|
56
|
+
from . import utils
|
|
60
57
|
from . import properties_data_speaker
|
|
61
|
-
from . import
|
|
62
|
-
from . import properties_view_layer
|
|
58
|
+
from . import properties_output
|
|
63
59
|
from . import properties_physics_softbody
|
|
64
|
-
from . import
|
|
65
|
-
from . import
|
|
66
|
-
from . import
|
|
60
|
+
from . import properties_scene
|
|
61
|
+
from . import properties_data_empty
|
|
62
|
+
from . import node_add_menu
|
|
63
|
+
from . import node_add_menu_compositor
|
|
64
|
+
from . import space_time
|
|
65
|
+
from . import properties_physics_fluid
|
|
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
|
|
67
71
|
from . import properties_texture
|
|
72
|
+
from . import properties_physics_geometry_nodes
|
|
68
73
|
from . import space_view3d
|
|
69
|
-
from . import
|
|
70
|
-
from . import
|
|
71
|
-
from . import
|
|
72
|
-
from . import
|
|
74
|
+
from . import asset_shelf
|
|
75
|
+
from . import properties_data_modifier
|
|
76
|
+
from . import properties_material
|
|
77
|
+
from . import properties_material_gpencil
|
|
73
78
|
from . import space_view3d_toolbar
|
|
74
|
-
from . import
|
|
75
|
-
from . import
|
|
76
|
-
from . import space_console
|
|
77
|
-
from . import space_statusbar
|
|
78
|
-
from . import properties_data_metaball
|
|
79
|
-
from . import properties_data_grease_pencil
|
|
80
|
-
from . import properties_data_mesh
|
|
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
|
bpy/__init__.pyi
CHANGED
|
@@ -5,10 +5,10 @@ import bpy.types
|
|
|
5
5
|
from . import types
|
|
6
6
|
from . import ops
|
|
7
7
|
from . import path
|
|
8
|
-
from . import utils
|
|
9
|
-
from . import props
|
|
10
8
|
from . import app
|
|
9
|
+
from . import utils
|
|
11
10
|
from . import msgbus
|
|
11
|
+
from . import props
|
|
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 buttons
|
|
4
|
+
from . import wm
|
|
5
|
+
from . import script
|
|
6
|
+
from . import mesh
|
|
7
|
+
from . import mball
|
|
8
|
+
from . import console
|
|
9
|
+
from . import lattice
|
|
3
10
|
from . import mask
|
|
4
|
-
from . import
|
|
11
|
+
from . import gpencil
|
|
12
|
+
from . import constraint
|
|
13
|
+
from . import import_mesh
|
|
5
14
|
from . import scene
|
|
6
|
-
from . import
|
|
7
|
-
from . import
|
|
8
|
-
from . import
|
|
9
|
-
from . import
|
|
10
|
-
from . import
|
|
15
|
+
from . import curves
|
|
16
|
+
from . import object
|
|
17
|
+
from . import preferences
|
|
18
|
+
from . import rigidbody
|
|
19
|
+
from . import fluid
|
|
11
20
|
from . import spreadsheet
|
|
12
|
-
from . import
|
|
13
|
-
from . import
|
|
14
|
-
from . import
|
|
15
|
-
from . import
|
|
21
|
+
from . import nla
|
|
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
|
|
16
30
|
from . import paintcurve
|
|
17
|
-
from . import
|
|
18
|
-
from . import
|
|
31
|
+
from . import pose
|
|
32
|
+
from . import sequencer
|
|
33
|
+
from . import cloth
|
|
34
|
+
from . import screen
|
|
35
|
+
from . import particle
|
|
36
|
+
from . import sound
|
|
19
37
|
from . import outliner
|
|
20
|
-
from . import
|
|
21
|
-
from . import cachefile
|
|
22
|
-
from . import marker
|
|
23
|
-
from . import export_scene
|
|
24
|
-
from . import rigidbody
|
|
25
|
-
from . import curves
|
|
26
|
-
from . import gizmogroup
|
|
38
|
+
from . import anim
|
|
27
39
|
from . import import_curve
|
|
28
|
-
from . import
|
|
40
|
+
from . import brush
|
|
41
|
+
from . import text
|
|
42
|
+
from . import view3d
|
|
29
43
|
from . import grease_pencil
|
|
30
|
-
from . import
|
|
31
|
-
from . import
|
|
32
|
-
from . import
|
|
33
|
-
from . import palette
|
|
34
|
-
from . import cycles
|
|
35
|
-
from . import view2d
|
|
36
|
-
from . import script
|
|
44
|
+
from . import font
|
|
45
|
+
from . import paint
|
|
46
|
+
from . import export_anim
|
|
37
47
|
from . import armature
|
|
38
|
-
from . import
|
|
39
|
-
from . import collection
|
|
48
|
+
from . import node
|
|
40
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
|
|
41
56
|
from . import camera
|
|
42
|
-
from . import text
|
|
43
|
-
from . import fluid
|
|
44
|
-
from . import workspace
|
|
45
|
-
from . import mball
|
|
46
|
-
from . import lattice
|
|
47
|
-
from . import object
|
|
48
|
-
from . import ed
|
|
49
|
-
from . import ptcache
|
|
50
|
-
from . import geometry
|
|
51
57
|
from . import export_mesh
|
|
52
|
-
from . import console
|
|
53
|
-
from . import cloth
|
|
54
|
-
from . import view3d
|
|
55
|
-
from . import dpaint
|
|
56
|
-
from . import sculpt_curves
|
|
57
|
-
from . import particle
|
|
58
|
-
from . import info
|
|
59
|
-
from . import poselib
|
|
60
|
-
from . import font
|
|
61
|
-
from . import pose
|
|
62
|
-
from . import sculpt
|
|
63
58
|
from . import clip
|
|
59
|
+
from . import cachefile
|
|
60
|
+
from . import workspace
|
|
61
|
+
from . import action
|
|
62
|
+
from . import uilist
|
|
63
|
+
from . import geometry
|
|
64
64
|
from . import import_anim
|
|
65
|
-
from . import
|
|
66
|
-
from . import
|
|
67
|
-
from . import
|
|
65
|
+
from . import material
|
|
66
|
+
from . import gizmogroup
|
|
67
|
+
from . import poselib
|
|
68
|
+
from . import export_scene
|
|
68
69
|
from . import world
|
|
69
|
-
from . import preferences
|
|
70
|
-
from . import action
|
|
71
|
-
from . import texture
|
|
72
|
-
from . import sound
|
|
73
|
-
from . import uv
|
|
74
70
|
from . import file
|
|
75
|
-
from . import
|
|
76
|
-
from . import
|
|
77
|
-
from . import
|
|
78
|
-
from . import
|
|
79
|
-
from . import
|
|
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
|
|
79
|
+
from . import collection
|
|
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
|
|
bpy/props/__init__.pyi
CHANGED
|
@@ -140,7 +140,7 @@ def EnumProperty(
|
|
|
140
140
|
:type description: typing.Optional[str]
|
|
141
141
|
:param translation_context: Text used as context to disambiguate translations.
|
|
142
142
|
:type translation_context: typing.Optional[str]
|
|
143
|
-
:param default: The default value for this enum, a string from the identifiers used in *items*, or integer matching an item number. If the *ENUM_FLAG* option is used this must be a set of such string identifiers instead. WARNING: Strings
|
|
143
|
+
:param default: The default value for this enum, a string from the identifiers used in *items*, or integer matching an item number. If the *ENUM_FLAG* option is used this must be a set of such string identifiers instead. WARNING: Strings cannot be specified for dynamic enums (i.e. if a callback function is given as *items* parameter).
|
|
144
144
|
:type default: typing.Optional[typing.Union[str, typing.Set]]
|
|
145
145
|
:param options: `rna_enum_property_flag_enum_items`.
|
|
146
146
|
:type options: typing.Optional[typing.Set]
|