fake-bpy-module 20240216__py3-none-any.whl → 20240217__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_console_utils/autocomplete/__init__.pyi +3 -3
- bl_i18n_utils/__init__.pyi +4 -4
- bl_keymap_utils/__init__.pyi +3 -3
- bl_operators/__init__.pyi +20 -20
- bl_ui/__init__.pyi +64 -64
- bpy/__init__.pyi +3 -3
- bpy/app/__init__.pyi +2 -2
- bpy/ops/__init__.pyi +61 -61
- bpy/ops/grease_pencil/__init__.pyi +20 -0
- bpy/ops/object/__init__.pyi +1 -1
- bpy/types/__init__.pyi +439 -87
- bpy_extras/__init__.pyi +1 -1
- {fake_bpy_module-20240216.dist-info → fake_bpy_module-20240217.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240216.dist-info → fake_bpy_module-20240217.dist-info}/RECORD +16 -16
- {fake_bpy_module-20240216.dist-info → fake_bpy_module-20240217.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240216.dist-info → fake_bpy_module-20240217.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_calltip
|
|
5
|
-
from . import intellisense
|
|
6
3
|
from . import complete_namespace
|
|
4
|
+
from . import intellisense
|
|
5
|
+
from . import complete_calltip
|
|
6
|
+
from . import complete_import
|
|
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 merge_po
|
|
4
|
-
from . import utils_cli
|
|
5
|
-
from . import utils_languages_menu
|
|
6
|
-
from . import utils
|
|
7
3
|
from . import settings
|
|
8
4
|
from . import bl_extract_messages
|
|
5
|
+
from . import utils_cli
|
|
6
|
+
from . import merge_po
|
|
7
|
+
from . import utils
|
|
8
|
+
from . import utils_languages_menu
|
|
9
9
|
from . import utils_rtl
|
|
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
|
|
4
|
-
from . import platform_helpers
|
|
3
|
+
from . import versioning
|
|
5
4
|
from . import keymap_from_toolbar
|
|
5
|
+
from . import platform_helpers
|
|
6
6
|
from . import keymap_hierarchy
|
|
7
|
-
from . import
|
|
7
|
+
from . import io
|
|
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
|
|
3
|
+
from . import node
|
|
4
|
+
from . import spreadsheet
|
|
5
|
+
from . import uvcalc_transform
|
|
6
|
+
from . import anim
|
|
7
|
+
from . import userpref
|
|
8
|
+
from . import object
|
|
4
9
|
from . import presets
|
|
10
|
+
from . import sequencer
|
|
11
|
+
from . import vertexpaint_dirt
|
|
12
|
+
from . import mesh
|
|
5
13
|
from . import freestyle
|
|
6
|
-
from . import
|
|
14
|
+
from . import console
|
|
15
|
+
from . import geometry_nodes
|
|
7
16
|
from . import add_mesh_torus
|
|
8
|
-
from . import
|
|
9
|
-
from . import
|
|
17
|
+
from . import object_randomize_transform
|
|
18
|
+
from . import bmesh
|
|
19
|
+
from . import uvcalc_follow_active
|
|
10
20
|
from . import screen_play_rendered_anim
|
|
21
|
+
from . import uvcalc_lightmap
|
|
22
|
+
from . import assets
|
|
11
23
|
from . import file
|
|
12
|
-
from . import userpref
|
|
13
|
-
from . import image
|
|
14
24
|
from . import constraint
|
|
15
25
|
from . import view3d
|
|
16
|
-
from . import wm
|
|
17
|
-
from . import clip
|
|
18
26
|
from . import object_align
|
|
19
|
-
from . import uvcalc_lightmap
|
|
20
|
-
from . import geometry_nodes
|
|
21
|
-
from . import uvcalc_follow_active
|
|
22
|
-
from . import vertexpaint_dirt
|
|
23
|
-
from . import rigidbody
|
|
24
|
-
from . import sequencer
|
|
25
|
-
from . import uvcalc_transform
|
|
26
|
-
from . import bmesh
|
|
27
|
-
from . import console
|
|
28
|
-
from . import node
|
|
29
|
-
from . import assets
|
|
30
27
|
from . import object_quick_effects
|
|
31
|
-
from . import
|
|
28
|
+
from . import rigidbody
|
|
29
|
+
from . import wm
|
|
30
|
+
from . import clip
|
|
31
|
+
from . import image
|
|
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 properties_data_bone
|
|
6
|
-
from . import properties_world
|
|
7
|
-
from . import properties_physics_softbody
|
|
8
5
|
from . import properties_data_mesh
|
|
9
|
-
from . import
|
|
10
|
-
from . import
|
|
11
|
-
from . import
|
|
12
|
-
from . import properties_data_lattice
|
|
6
|
+
from . import space_toolsystem_common
|
|
7
|
+
from . import space_toolsystem_toolbar
|
|
8
|
+
from . import space_nla
|
|
13
9
|
from . import properties_particle
|
|
14
|
-
from . import
|
|
15
|
-
from . import properties_object
|
|
16
|
-
from . import anim
|
|
17
|
-
from . import node_add_menu_texture
|
|
18
|
-
from . import properties_physics_common
|
|
10
|
+
from . import properties_paint_common
|
|
19
11
|
from . import generic_ui_list
|
|
20
|
-
from . import space_filebrowser
|
|
21
|
-
from . import properties_view_layer
|
|
22
|
-
from . import node_add_menu_geometry
|
|
23
|
-
from . import properties_workspace
|
|
24
|
-
from . import node_add_menu_compositor
|
|
25
|
-
from . import properties_data_modifier
|
|
26
12
|
from . import space_statusbar
|
|
27
|
-
from . import
|
|
28
|
-
from . import
|
|
29
|
-
from . import
|
|
13
|
+
from . import anim
|
|
14
|
+
from . import properties_data_pointcloud
|
|
15
|
+
from . import space_outliner
|
|
16
|
+
from . import space_graph
|
|
17
|
+
from . import space_dopesheet
|
|
18
|
+
from . import properties_object
|
|
19
|
+
from . import space_clip
|
|
20
|
+
from . import properties_physics_fluid
|
|
21
|
+
from . import properties_data_camera
|
|
22
|
+
from . import properties_render
|
|
23
|
+
from . import space_time
|
|
24
|
+
from . import properties_scene
|
|
30
25
|
from . import properties_collection
|
|
31
|
-
from . import
|
|
32
|
-
from . import
|
|
26
|
+
from . import properties_data_speaker
|
|
27
|
+
from . import properties_data_lattice
|
|
28
|
+
from . import properties_mask_common
|
|
29
|
+
from . import properties_physics_dynamicpaint
|
|
30
|
+
from . import node_add_menu
|
|
31
|
+
from . import space_view3d
|
|
32
|
+
from . import space_image
|
|
33
|
+
from . import properties_physics_cloth
|
|
34
|
+
from . import utils
|
|
35
|
+
from . import properties_data_empty
|
|
36
|
+
from . import properties_data_gpencil
|
|
37
|
+
from . import space_sequencer
|
|
38
|
+
from . import space_filebrowser
|
|
39
|
+
from . import properties_physics_field
|
|
40
|
+
from . import properties_grease_pencil_common
|
|
33
41
|
from . import space_userpref
|
|
34
|
-
from . import
|
|
35
|
-
from . import space_time
|
|
36
|
-
from . import properties_data_armature
|
|
42
|
+
from . import space_info
|
|
37
43
|
from . import space_topbar
|
|
38
|
-
from . import
|
|
39
|
-
from . import
|
|
40
|
-
from . import properties_grease_pencil_common
|
|
41
|
-
from . import properties_data_metaball
|
|
42
|
-
from . import asset_shelf
|
|
44
|
+
from . import properties_data_curves
|
|
45
|
+
from . import properties_data_modifier
|
|
43
46
|
from . import properties_data_volume
|
|
44
|
-
from . import
|
|
45
|
-
from . import
|
|
46
|
-
from . import
|
|
47
|
-
from . import
|
|
47
|
+
from . import properties_data_light
|
|
48
|
+
from . import properties_data_metaball
|
|
49
|
+
from . import properties_view_layer
|
|
50
|
+
from . import properties_physics_geometry_nodes
|
|
51
|
+
from . import node_add_menu_shader
|
|
52
|
+
from . import properties_animviz
|
|
53
|
+
from . import properties_material
|
|
54
|
+
from . import properties_data_curve
|
|
55
|
+
from . import properties_output
|
|
56
|
+
from . import properties_workspace
|
|
48
57
|
from . import properties_data_lightprobe
|
|
49
|
-
from . import
|
|
58
|
+
from . import properties_world
|
|
50
59
|
from . import space_node
|
|
51
|
-
from . import
|
|
52
|
-
from . import
|
|
53
|
-
from . import
|
|
54
|
-
from . import properties_data_gpencil
|
|
55
|
-
from . import properties_data_pointcloud
|
|
56
|
-
from . import properties_output
|
|
57
|
-
from . import space_view3d_toolbar
|
|
58
|
-
from . import properties_physics_field
|
|
59
|
-
from . import properties_render
|
|
60
|
-
from . import space_sequencer
|
|
61
|
-
from . import properties_data_empty
|
|
62
|
-
from . import properties_material
|
|
63
|
-
from . import properties_data_grease_pencil
|
|
64
|
-
from . import properties_animviz
|
|
65
|
-
from . import space_clip
|
|
66
|
-
from . import properties_physics_cloth
|
|
60
|
+
from . import properties_data_bone
|
|
61
|
+
from . import properties_data_shaderfx
|
|
62
|
+
from . import space_text
|
|
67
63
|
from . import space_spreadsheet
|
|
68
|
-
from . import node_add_menu_shader
|
|
69
|
-
from . import properties_physics_fluid
|
|
70
|
-
from . import properties_scene
|
|
71
|
-
from . import space_outliner
|
|
72
|
-
from . import space_view3d
|
|
73
|
-
from . import node_add_menu
|
|
74
|
-
from . import space_console
|
|
75
|
-
from . import space_toolsystem_common
|
|
76
|
-
from . import properties_mask_common
|
|
77
|
-
from . import properties_data_curve
|
|
78
|
-
from . import space_dopesheet
|
|
79
64
|
from . import properties_physics_rigidbody_constraint
|
|
80
|
-
from . import
|
|
65
|
+
from . import space_console
|
|
66
|
+
from . import space_properties
|
|
67
|
+
from . import properties_data_grease_pencil
|
|
68
|
+
from . import properties_texture
|
|
69
|
+
from . import properties_physics_softbody
|
|
70
|
+
from . import properties_freestyle
|
|
71
|
+
from . import node_add_menu_compositor
|
|
72
|
+
from . import node_add_menu_texture
|
|
73
|
+
from . import node_add_menu_geometry
|
|
74
|
+
from . import space_view3d_toolbar
|
|
75
|
+
from . import asset_shelf
|
|
76
|
+
from . import properties_physics_common
|
|
77
|
+
from . import properties_constraint
|
|
78
|
+
from . import properties_material_gpencil
|
|
79
|
+
from . import properties_physics_rigidbody
|
|
80
|
+
from . import properties_data_armature
|
|
81
81
|
|
|
82
82
|
GenericType = typing.TypeVar("GenericType")
|
|
83
83
|
|
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 utils
|
|
9
|
-
from . import msgbus
|
|
10
7
|
from . import app
|
|
8
|
+
from . import utils
|
|
9
|
+
from . import path
|
|
11
10
|
from . import props
|
|
11
|
+
from . import msgbus
|
|
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
|
|
4
|
-
from . import
|
|
5
|
-
from . import
|
|
6
|
-
from . import rigidbody
|
|
7
|
-
from . import cloth
|
|
8
|
-
from . import collection
|
|
9
|
-
from . import file
|
|
10
|
-
from . import cachefile
|
|
11
|
-
from . import spreadsheet
|
|
12
|
-
from . import image
|
|
13
|
-
from . import anim
|
|
14
|
-
from . import uilist
|
|
15
|
-
from . import pose
|
|
16
|
-
from . import grease_pencil
|
|
17
|
-
from . import marker
|
|
3
|
+
from . import text
|
|
4
|
+
from . import curve
|
|
5
|
+
from . import nla
|
|
18
6
|
from . import surface
|
|
19
|
-
from . import
|
|
7
|
+
from . import cachefile
|
|
8
|
+
from . import camera
|
|
20
9
|
from . import clip
|
|
21
|
-
from . import
|
|
10
|
+
from . import sculpt
|
|
11
|
+
from . import anim
|
|
12
|
+
from . import geometry
|
|
22
13
|
from . import screen
|
|
14
|
+
from . import collection
|
|
15
|
+
from . import export_scene
|
|
16
|
+
from . import console
|
|
17
|
+
from . import export_mesh
|
|
18
|
+
from . import view2d
|
|
19
|
+
from . import import_anim
|
|
20
|
+
from . import constraint
|
|
23
21
|
from . import wm
|
|
24
|
-
from . import
|
|
25
|
-
from . import
|
|
26
|
-
from . import
|
|
22
|
+
from . import gizmogroup
|
|
23
|
+
from . import scene
|
|
24
|
+
from . import grease_pencil
|
|
25
|
+
from . import transform
|
|
27
26
|
from . import palette
|
|
27
|
+
from . import script
|
|
28
|
+
from . import poselib
|
|
29
|
+
from . import sound
|
|
30
|
+
from . import sequencer
|
|
31
|
+
from . import node
|
|
28
32
|
from . import particle
|
|
29
|
-
from . import
|
|
33
|
+
from . import info
|
|
34
|
+
from . import paintcurve
|
|
35
|
+
from . import workspace
|
|
36
|
+
from . import object
|
|
37
|
+
from . import sculpt_curves
|
|
38
|
+
from . import dpaint
|
|
39
|
+
from . import cycles
|
|
40
|
+
from . import mask
|
|
41
|
+
from . import gpencil
|
|
30
42
|
from . import graph
|
|
31
|
-
from . import
|
|
43
|
+
from . import world
|
|
44
|
+
from . import curves
|
|
45
|
+
from . import text_editor
|
|
46
|
+
from . import ui
|
|
47
|
+
from . import image
|
|
32
48
|
from . import fluid
|
|
49
|
+
from . import render
|
|
50
|
+
from . import mball
|
|
51
|
+
from . import preferences
|
|
52
|
+
from . import ptcache
|
|
33
53
|
from . import material
|
|
34
|
-
from . import
|
|
54
|
+
from . import outliner
|
|
55
|
+
from . import action
|
|
35
56
|
from . import import_mesh
|
|
36
|
-
from . import
|
|
37
|
-
from . import font
|
|
38
|
-
from . import boid
|
|
39
|
-
from . import preferences
|
|
57
|
+
from . import armature
|
|
40
58
|
from . import view3d
|
|
41
|
-
from . import gpencil
|
|
42
|
-
from . import camera
|
|
43
|
-
from . import texture
|
|
44
|
-
from . import outliner
|
|
45
|
-
from . import text
|
|
46
|
-
from . import paintcurve
|
|
47
|
-
from . import gizmogroup
|
|
48
|
-
from . import curves
|
|
49
|
-
from . import paint
|
|
50
|
-
from . import object
|
|
51
59
|
from . import ed
|
|
52
|
-
from . import
|
|
60
|
+
from . import uilist
|
|
53
61
|
from . import lattice
|
|
54
|
-
from . import
|
|
55
|
-
from . import
|
|
62
|
+
from . import import_scene
|
|
63
|
+
from . import mesh
|
|
64
|
+
from . import pose
|
|
65
|
+
from . import spreadsheet
|
|
66
|
+
from . import uv
|
|
67
|
+
from . import rigidbody
|
|
68
|
+
from . import import_curve
|
|
69
|
+
from . import cloth
|
|
70
|
+
from . import boid
|
|
71
|
+
from . import export_anim
|
|
56
72
|
from . import brush
|
|
73
|
+
from . import paint
|
|
57
74
|
from . import asset
|
|
58
75
|
from . import buttons
|
|
59
|
-
from . import
|
|
60
|
-
from . import
|
|
61
|
-
from . import
|
|
62
|
-
from . import
|
|
63
|
-
from . import dpaint
|
|
64
|
-
from . import sound
|
|
65
|
-
from . import ui
|
|
66
|
-
from . import sequencer
|
|
67
|
-
from . import cycles
|
|
68
|
-
from . import render
|
|
69
|
-
from . import mesh
|
|
70
|
-
from . import uv
|
|
71
|
-
from . import curve
|
|
72
|
-
from . import console
|
|
73
|
-
from . import sculpt
|
|
74
|
-
from . import info
|
|
75
|
-
from . import mask
|
|
76
|
-
from . import action
|
|
77
|
-
from . import nla
|
|
78
|
-
from . import transform
|
|
79
|
-
from . import ptcache
|
|
76
|
+
from . import texture
|
|
77
|
+
from . import font
|
|
78
|
+
from . import marker
|
|
79
|
+
from . import file
|
|
80
80
|
|
|
81
81
|
GenericType = typing.TypeVar("GenericType")
|
|
@@ -264,6 +264,26 @@ def layer_add(
|
|
|
264
264
|
|
|
265
265
|
...
|
|
266
266
|
|
|
267
|
+
def layer_duplicate(
|
|
268
|
+
override_context: typing.Optional[
|
|
269
|
+
typing.Union[typing.Dict, "bpy.types.Context"]
|
|
270
|
+
] = None,
|
|
271
|
+
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
272
|
+
undo: typing.Optional[bool] = None,
|
|
273
|
+
*,
|
|
274
|
+
empty_keyframes: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
275
|
+
):
|
|
276
|
+
"""Make a copy of the active Grease Pencil layer
|
|
277
|
+
|
|
278
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
279
|
+
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
280
|
+
:type undo: typing.Optional[bool]
|
|
281
|
+
:param empty_keyframes: Empty Keyframes, Add Empty Keyframes
|
|
282
|
+
:type empty_keyframes: typing.Optional[typing.Union[bool, typing.Any]]
|
|
283
|
+
"""
|
|
284
|
+
|
|
285
|
+
...
|
|
286
|
+
|
|
267
287
|
def layer_group_add(
|
|
268
288
|
override_context: typing.Optional[
|
|
269
289
|
typing.Union[typing.Dict, "bpy.types.Context"]
|
bpy/ops/object/__init__.pyi
CHANGED
|
@@ -50,7 +50,7 @@ def add_modifier_menu(
|
|
|
50
50
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
51
51
|
undo: typing.Optional[bool] = None,
|
|
52
52
|
):
|
|
53
|
-
"""Undocumented, consider `contributing <https://developer.blender.org/>`__. :File: `startup/bl_ui/properties_data_modifier.py\:
|
|
53
|
+
"""Undocumented, consider `contributing <https://developer.blender.org/>`__. :File: `startup/bl_ui/properties_data_modifier.py\:268 <https://projects.blender.org/blender/blender/src/branch/main/scripts/startup/bl_ui/properties_data_modifier.py#L268>`__
|
|
54
54
|
|
|
55
55
|
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
56
56
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
bpy/types/__init__.pyi
CHANGED
|
@@ -2,94 +2,94 @@ import sys
|
|
|
2
2
|
import typing
|
|
3
3
|
import mathutils
|
|
4
4
|
import bpy
|
|
5
|
-
import bl_operators.presets
|
|
6
|
-
import bl_ui.properties_data_bone
|
|
7
|
-
import bl_ui.properties_world
|
|
8
|
-
import bl_operators.freestyle
|
|
9
|
-
import bl_ui.properties_physics_softbody
|
|
10
5
|
import bl_ui.properties_data_mesh
|
|
11
|
-
import bl_ui.
|
|
12
|
-
import
|
|
13
|
-
import
|
|
14
|
-
import bl_ui.
|
|
15
|
-
import bl_ui.properties_data_lattice
|
|
16
|
-
import bl_ui
|
|
6
|
+
import bl_ui.space_toolsystem_common
|
|
7
|
+
import bl_ui.space_toolsystem_toolbar
|
|
8
|
+
import bl_operators.node
|
|
9
|
+
import bl_ui.space_nla
|
|
17
10
|
import bl_ui.properties_particle
|
|
18
|
-
import bl_ui.
|
|
19
|
-
import bl_operators.
|
|
20
|
-
import bl_ui.properties_object
|
|
21
|
-
import bl_ui.anim
|
|
22
|
-
import bl_ui.node_add_menu_texture
|
|
23
|
-
import bl_ui.properties_physics_common
|
|
11
|
+
import bl_ui.properties_paint_common
|
|
12
|
+
import bl_operators.spreadsheet
|
|
24
13
|
import bl_ui.generic_ui_list
|
|
25
|
-
import bl_ui.space_filebrowser
|
|
26
|
-
import bl_ui.properties_view_layer
|
|
27
|
-
import bl_ui.node_add_menu_geometry
|
|
28
|
-
import bl_ui.properties_workspace
|
|
29
|
-
import bl_ui.node_add_menu_compositor
|
|
30
|
-
import bl_operators.file
|
|
31
|
-
import bl_ui.properties_data_modifier
|
|
32
14
|
import bl_ui.space_statusbar
|
|
33
|
-
import bl_ui.
|
|
34
|
-
import bl_ui.
|
|
35
|
-
import bl_ui.
|
|
15
|
+
import bl_ui.anim
|
|
16
|
+
import bl_ui.properties_data_pointcloud
|
|
17
|
+
import bl_ui.space_outliner
|
|
18
|
+
import bl_ui.space_graph
|
|
19
|
+
import bl_ui.space_dopesheet
|
|
20
|
+
import bl_ui.properties_object
|
|
21
|
+
import bl_ui.space_clip
|
|
22
|
+
import bl_operators.anim
|
|
36
23
|
import bl_operators.userpref
|
|
24
|
+
import bl_operators.object
|
|
25
|
+
import bl_ui.properties_physics_fluid
|
|
26
|
+
import bl_ui.properties_data_camera
|
|
27
|
+
import bl_operators.presets
|
|
28
|
+
import bl_ui.properties_render
|
|
29
|
+
import bl_ui.space_time
|
|
30
|
+
import bl_ui.properties_scene
|
|
31
|
+
import bl_operators.freestyle
|
|
37
32
|
import bl_ui.properties_collection
|
|
38
|
-
import bl_ui.
|
|
39
|
-
import bl_ui.
|
|
40
|
-
import
|
|
33
|
+
import bl_ui.properties_data_speaker
|
|
34
|
+
import bl_ui.properties_data_lattice
|
|
35
|
+
import bl_ui.properties_mask_common
|
|
36
|
+
import bl_ui.properties_physics_dynamicpaint
|
|
37
|
+
import bl_ui.node_add_menu
|
|
38
|
+
import bl_ui.space_view3d
|
|
39
|
+
import bl_ui.space_image
|
|
40
|
+
import bl_ui.properties_physics_cloth
|
|
41
|
+
import bl_ui.properties_data_empty
|
|
42
|
+
import bl_ui.properties_data_gpencil
|
|
43
|
+
import bl_ui.space_sequencer
|
|
44
|
+
import bl_ui.space_filebrowser
|
|
45
|
+
import bl_ui.properties_physics_field
|
|
46
|
+
import bl_ui.properties_grease_pencil_common
|
|
47
|
+
import bl_operators.assets
|
|
48
|
+
import bl_operators.file
|
|
41
49
|
import bl_ui.space_userpref
|
|
42
|
-
import bl_ui.
|
|
43
|
-
import bl_ui.space_time
|
|
44
|
-
import bl_ui.properties_data_armature
|
|
50
|
+
import bl_ui.space_info
|
|
45
51
|
import bl_ui.space_topbar
|
|
46
|
-
import
|
|
47
|
-
import bl_ui.
|
|
48
|
-
import bl_ui.properties_texture
|
|
49
|
-
import bl_ui.properties_grease_pencil_common
|
|
50
|
-
import bl_ui.properties_data_metaball
|
|
51
|
-
import bl_ui.asset_shelf
|
|
52
|
-
import bl_operators.wm
|
|
53
|
-
import bl_operators.clip
|
|
52
|
+
import bl_ui.properties_data_curves
|
|
53
|
+
import bl_ui.properties_data_modifier
|
|
54
54
|
import bl_ui.properties_data_volume
|
|
55
|
-
import bl_ui.
|
|
56
|
-
import
|
|
57
|
-
import bl_ui.
|
|
55
|
+
import bl_ui.properties_data_light
|
|
56
|
+
import bl_operators.constraint
|
|
57
|
+
import bl_ui.properties_data_metaball
|
|
58
|
+
import bl_ui.properties_view_layer
|
|
59
|
+
import bl_operators.view3d
|
|
60
|
+
import bl_ui.properties_physics_geometry_nodes
|
|
61
|
+
import bl_ui.node_add_menu_shader
|
|
62
|
+
import bl_ui.properties_material
|
|
63
|
+
import bl_ui.properties_data_curve
|
|
64
|
+
import bl_ui.properties_output
|
|
65
|
+
import bl_ui.properties_workspace
|
|
58
66
|
import bl_ui.properties_data_lightprobe
|
|
59
|
-
import bl_ui.
|
|
67
|
+
import bl_ui.properties_world
|
|
68
|
+
import bl_ui
|
|
69
|
+
import bl_operators.wm
|
|
60
70
|
import bl_ui.space_node
|
|
61
|
-
import bl_ui.
|
|
62
|
-
import bl_ui.
|
|
63
|
-
import bl_ui.
|
|
64
|
-
import bl_ui.properties_data_gpencil
|
|
65
|
-
import bl_ui.properties_data_pointcloud
|
|
66
|
-
import bl_ui.properties_output
|
|
67
|
-
import bl_ui.space_view3d_toolbar
|
|
68
|
-
import bl_ui.properties_physics_field
|
|
69
|
-
import bl_ui.properties_render
|
|
70
|
-
import bl_operators.node
|
|
71
|
-
import bl_ui.space_sequencer
|
|
72
|
-
import bl_ui.properties_data_empty
|
|
73
|
-
import bl_ui.properties_material
|
|
74
|
-
import bl_ui.properties_data_grease_pencil
|
|
75
|
-
import bl_ui.space_clip
|
|
76
|
-
import bl_ui.properties_physics_cloth
|
|
71
|
+
import bl_ui.properties_data_bone
|
|
72
|
+
import bl_ui.properties_data_shaderfx
|
|
73
|
+
import bl_ui.space_text
|
|
77
74
|
import bl_ui.space_spreadsheet
|
|
78
|
-
import bl_ui.node_add_menu_shader
|
|
79
|
-
import bl_operators.assets
|
|
80
|
-
import bl_ui.properties_physics_fluid
|
|
81
|
-
import bl_ui.properties_scene
|
|
82
|
-
import bl_ui.space_outliner
|
|
83
|
-
import bl_ui.space_view3d
|
|
84
|
-
import bl_operators.spreadsheet
|
|
85
|
-
import bl_ui.node_add_menu
|
|
86
|
-
import bl_ui.space_console
|
|
87
|
-
import bl_ui.space_toolsystem_common
|
|
88
|
-
import bl_ui.properties_mask_common
|
|
89
|
-
import bl_ui.properties_data_curve
|
|
90
|
-
import bl_ui.space_dopesheet
|
|
91
75
|
import bl_ui.properties_physics_rigidbody_constraint
|
|
92
|
-
import bl_ui.
|
|
76
|
+
import bl_ui.space_console
|
|
77
|
+
import bl_operators.clip
|
|
78
|
+
import bl_ui.space_properties
|
|
79
|
+
import bl_ui.properties_data_grease_pencil
|
|
80
|
+
import bl_ui.properties_texture
|
|
81
|
+
import bl_ui.properties_physics_softbody
|
|
82
|
+
import bl_ui.properties_freestyle
|
|
83
|
+
import bl_ui.node_add_menu_compositor
|
|
84
|
+
import bl_ui.node_add_menu_texture
|
|
85
|
+
import bl_ui.node_add_menu_geometry
|
|
86
|
+
import bl_ui.space_view3d_toolbar
|
|
87
|
+
import bl_ui.asset_shelf
|
|
88
|
+
import bl_ui.properties_physics_common
|
|
89
|
+
import bl_ui.properties_constraint
|
|
90
|
+
import bl_ui.properties_material_gpencil
|
|
91
|
+
import bl_ui.properties_physics_rigidbody
|
|
92
|
+
import bl_ui.properties_data_armature
|
|
93
93
|
|
|
94
94
|
GenericType = typing.TypeVar("GenericType")
|
|
95
95
|
|
|
@@ -878,12 +878,6 @@ class AnimViz(bpy_struct):
|
|
|
878
878
|
class AnimVizMotionPaths(bpy_struct):
|
|
879
879
|
"""Motion Path settings for animation visualization"""
|
|
880
880
|
|
|
881
|
-
bake_in_camera_space: bool
|
|
882
|
-
""" Motion path points will be baked into the camera space of the active camera. This means they will only look right when looking through that camera. Switching cameras using markers is not supported
|
|
883
|
-
|
|
884
|
-
:type: bool
|
|
885
|
-
"""
|
|
886
|
-
|
|
887
881
|
bake_location: typing.Union[str, int]
|
|
888
882
|
""" When calculating Bone Paths, use Head or Tips
|
|
889
883
|
|
|
@@ -962,6 +956,12 @@ class AnimVizMotionPaths(bpy_struct):
|
|
|
962
956
|
:type: typing.Union[str, int]
|
|
963
957
|
"""
|
|
964
958
|
|
|
959
|
+
use_camera_space_bake: bool
|
|
960
|
+
""" Motion path points will be baked into the camera space of the active camera. This means they will only look right when looking through that camera. Switching cameras using markers is not supported
|
|
961
|
+
|
|
962
|
+
:type: bool
|
|
963
|
+
"""
|
|
964
|
+
|
|
965
965
|
@classmethod
|
|
966
966
|
def bl_rna_get_subclass(cls, id: typing.Optional[str], default=None) -> "Struct":
|
|
967
967
|
"""
|
|
@@ -69041,6 +69041,211 @@ class FluidModifier(Modifier, bpy_struct):
|
|
|
69041
69041
|
"""
|
|
69042
69042
|
...
|
|
69043
69043
|
|
|
69044
|
+
class GreasePencilArrayModifier(Modifier, bpy_struct):
|
|
69045
|
+
"""Create grid of duplicate instances"""
|
|
69046
|
+
|
|
69047
|
+
constant_offset: typing.Union[
|
|
69048
|
+
typing.List[float], typing.Tuple[float, float, float], "mathutils.Vector"
|
|
69049
|
+
]
|
|
69050
|
+
""" Value for the distance between items
|
|
69051
|
+
|
|
69052
|
+
:type: typing.Union[typing.List[float], typing.Tuple[float, float, float], 'mathutils.Vector']
|
|
69053
|
+
"""
|
|
69054
|
+
|
|
69055
|
+
count: int
|
|
69056
|
+
""" Number of items
|
|
69057
|
+
|
|
69058
|
+
:type: int
|
|
69059
|
+
"""
|
|
69060
|
+
|
|
69061
|
+
invert_layer_filter: bool
|
|
69062
|
+
""" Invert layer filter
|
|
69063
|
+
|
|
69064
|
+
:type: bool
|
|
69065
|
+
"""
|
|
69066
|
+
|
|
69067
|
+
invert_layer_pass_filter: bool
|
|
69068
|
+
""" Invert layer pass filter
|
|
69069
|
+
|
|
69070
|
+
:type: bool
|
|
69071
|
+
"""
|
|
69072
|
+
|
|
69073
|
+
invert_material_filter: bool
|
|
69074
|
+
""" Invert material filter
|
|
69075
|
+
|
|
69076
|
+
:type: bool
|
|
69077
|
+
"""
|
|
69078
|
+
|
|
69079
|
+
invert_material_pass_filter: bool
|
|
69080
|
+
""" Invert material pass filter
|
|
69081
|
+
|
|
69082
|
+
:type: bool
|
|
69083
|
+
"""
|
|
69084
|
+
|
|
69085
|
+
layer_filter: typing.Union[str, typing.Any]
|
|
69086
|
+
""" Layer name
|
|
69087
|
+
|
|
69088
|
+
:type: typing.Union[str, typing.Any]
|
|
69089
|
+
"""
|
|
69090
|
+
|
|
69091
|
+
layer_pass_filter: int
|
|
69092
|
+
""" Layer pass filter
|
|
69093
|
+
|
|
69094
|
+
:type: int
|
|
69095
|
+
"""
|
|
69096
|
+
|
|
69097
|
+
material_filter: "Material"
|
|
69098
|
+
""" Material used for filtering
|
|
69099
|
+
|
|
69100
|
+
:type: 'Material'
|
|
69101
|
+
"""
|
|
69102
|
+
|
|
69103
|
+
material_pass_filter: int
|
|
69104
|
+
""" Material pass
|
|
69105
|
+
|
|
69106
|
+
:type: int
|
|
69107
|
+
"""
|
|
69108
|
+
|
|
69109
|
+
offset_object: "Object"
|
|
69110
|
+
""" Use the location and rotation of another object to determine the distance and rotational change between arrayed items
|
|
69111
|
+
|
|
69112
|
+
:type: 'Object'
|
|
69113
|
+
"""
|
|
69114
|
+
|
|
69115
|
+
open_constant_offset_panel: bool
|
|
69116
|
+
"""
|
|
69117
|
+
|
|
69118
|
+
:type: bool
|
|
69119
|
+
"""
|
|
69120
|
+
|
|
69121
|
+
open_influence_panel: bool
|
|
69122
|
+
"""
|
|
69123
|
+
|
|
69124
|
+
:type: bool
|
|
69125
|
+
"""
|
|
69126
|
+
|
|
69127
|
+
open_object_offset_panel: bool
|
|
69128
|
+
"""
|
|
69129
|
+
|
|
69130
|
+
:type: bool
|
|
69131
|
+
"""
|
|
69132
|
+
|
|
69133
|
+
open_randomize_panel: bool
|
|
69134
|
+
"""
|
|
69135
|
+
|
|
69136
|
+
:type: bool
|
|
69137
|
+
"""
|
|
69138
|
+
|
|
69139
|
+
open_relative_offset_panel: bool
|
|
69140
|
+
"""
|
|
69141
|
+
|
|
69142
|
+
:type: bool
|
|
69143
|
+
"""
|
|
69144
|
+
|
|
69145
|
+
random_offset: typing.Union[
|
|
69146
|
+
typing.List[float], typing.Tuple[float, float, float], "mathutils.Vector"
|
|
69147
|
+
]
|
|
69148
|
+
""" Value for changes in location
|
|
69149
|
+
|
|
69150
|
+
:type: typing.Union[typing.List[float], typing.Tuple[float, float, float], 'mathutils.Vector']
|
|
69151
|
+
"""
|
|
69152
|
+
|
|
69153
|
+
random_rotation: typing.Union[
|
|
69154
|
+
typing.List[float], typing.Tuple[float, float, float], "mathutils.Euler"
|
|
69155
|
+
]
|
|
69156
|
+
""" Value for changes in rotation
|
|
69157
|
+
|
|
69158
|
+
:type: typing.Union[typing.List[float], typing.Tuple[float, float, float], 'mathutils.Euler']
|
|
69159
|
+
"""
|
|
69160
|
+
|
|
69161
|
+
random_scale: typing.Union[
|
|
69162
|
+
typing.List[float], typing.Tuple[float, float, float], "mathutils.Vector"
|
|
69163
|
+
]
|
|
69164
|
+
""" Value for changes in scale
|
|
69165
|
+
|
|
69166
|
+
:type: typing.Union[typing.List[float], typing.Tuple[float, float, float], 'mathutils.Vector']
|
|
69167
|
+
"""
|
|
69168
|
+
|
|
69169
|
+
relative_offset: typing.Union[
|
|
69170
|
+
typing.List[float], typing.Tuple[float, float, float], "mathutils.Vector"
|
|
69171
|
+
]
|
|
69172
|
+
""" The size of the geometry will determine the distance between arrayed items
|
|
69173
|
+
|
|
69174
|
+
:type: typing.Union[typing.List[float], typing.Tuple[float, float, float], 'mathutils.Vector']
|
|
69175
|
+
"""
|
|
69176
|
+
|
|
69177
|
+
replace_material: int
|
|
69178
|
+
""" Index of the material used for generated strokes (0 keep original material)
|
|
69179
|
+
|
|
69180
|
+
:type: int
|
|
69181
|
+
"""
|
|
69182
|
+
|
|
69183
|
+
seed: int
|
|
69184
|
+
""" Random seed
|
|
69185
|
+
|
|
69186
|
+
:type: int
|
|
69187
|
+
"""
|
|
69188
|
+
|
|
69189
|
+
use_constant_offset: bool
|
|
69190
|
+
""" Enable offset
|
|
69191
|
+
|
|
69192
|
+
:type: bool
|
|
69193
|
+
"""
|
|
69194
|
+
|
|
69195
|
+
use_layer_pass_filter: bool
|
|
69196
|
+
""" Use layer pass filter
|
|
69197
|
+
|
|
69198
|
+
:type: bool
|
|
69199
|
+
"""
|
|
69200
|
+
|
|
69201
|
+
use_material_pass_filter: bool
|
|
69202
|
+
""" Use material pass filter
|
|
69203
|
+
|
|
69204
|
+
:type: bool
|
|
69205
|
+
"""
|
|
69206
|
+
|
|
69207
|
+
use_object_offset: bool
|
|
69208
|
+
""" Enable object offset
|
|
69209
|
+
|
|
69210
|
+
:type: bool
|
|
69211
|
+
"""
|
|
69212
|
+
|
|
69213
|
+
use_relative_offset: bool
|
|
69214
|
+
""" Enable shift
|
|
69215
|
+
|
|
69216
|
+
:type: bool
|
|
69217
|
+
"""
|
|
69218
|
+
|
|
69219
|
+
use_uniform_random_scale: bool
|
|
69220
|
+
""" Use the same random seed for each scale axis for a uniform scale
|
|
69221
|
+
|
|
69222
|
+
:type: bool
|
|
69223
|
+
"""
|
|
69224
|
+
|
|
69225
|
+
@classmethod
|
|
69226
|
+
def bl_rna_get_subclass(cls, id: typing.Optional[str], default=None) -> "Struct":
|
|
69227
|
+
"""
|
|
69228
|
+
|
|
69229
|
+
:param id: The RNA type identifier.
|
|
69230
|
+
:type id: typing.Optional[str]
|
|
69231
|
+
:rtype: 'Struct'
|
|
69232
|
+
:return: The RNA type or default when not found.
|
|
69233
|
+
"""
|
|
69234
|
+
...
|
|
69235
|
+
|
|
69236
|
+
@classmethod
|
|
69237
|
+
def bl_rna_get_subclass_py(
|
|
69238
|
+
cls, id: typing.Optional[str], default=None
|
|
69239
|
+
) -> typing.Any:
|
|
69240
|
+
"""
|
|
69241
|
+
|
|
69242
|
+
:param id: The RNA type identifier.
|
|
69243
|
+
:type id: typing.Optional[str]
|
|
69244
|
+
:rtype: typing.Any
|
|
69245
|
+
:return: The class or default when not found.
|
|
69246
|
+
"""
|
|
69247
|
+
...
|
|
69248
|
+
|
|
69044
69249
|
class GreasePencilColorModifier(Modifier, bpy_struct):
|
|
69045
69250
|
color_mode: typing.Union[str, int]
|
|
69046
69251
|
""" Attributes to modify * ``BOTH`` Stroke & Fill -- Modify fill and stroke colors. * ``STROKE`` Stroke -- Modify stroke color only. * ``FILL`` Fill -- Modify fill color only.
|
|
@@ -70968,6 +71173,153 @@ class GreasePencilTintModifier(Modifier, bpy_struct):
|
|
|
70968
71173
|
"""
|
|
70969
71174
|
...
|
|
70970
71175
|
|
|
71176
|
+
class GreasePencilWeightAngleModifier(Modifier, bpy_struct):
|
|
71177
|
+
"""Calculate Vertex Weight dynamically"""
|
|
71178
|
+
|
|
71179
|
+
angle: float
|
|
71180
|
+
""" Angle
|
|
71181
|
+
|
|
71182
|
+
:type: float
|
|
71183
|
+
"""
|
|
71184
|
+
|
|
71185
|
+
axis: typing.Union[str, int]
|
|
71186
|
+
"""
|
|
71187
|
+
|
|
71188
|
+
:type: typing.Union[str, int]
|
|
71189
|
+
"""
|
|
71190
|
+
|
|
71191
|
+
invert_layer_filter: bool
|
|
71192
|
+
""" Invert layer filter
|
|
71193
|
+
|
|
71194
|
+
:type: bool
|
|
71195
|
+
"""
|
|
71196
|
+
|
|
71197
|
+
invert_layer_pass_filter: bool
|
|
71198
|
+
""" Invert layer pass filter
|
|
71199
|
+
|
|
71200
|
+
:type: bool
|
|
71201
|
+
"""
|
|
71202
|
+
|
|
71203
|
+
invert_material_filter: bool
|
|
71204
|
+
""" Invert material filter
|
|
71205
|
+
|
|
71206
|
+
:type: bool
|
|
71207
|
+
"""
|
|
71208
|
+
|
|
71209
|
+
invert_material_pass_filter: bool
|
|
71210
|
+
""" Invert material pass filter
|
|
71211
|
+
|
|
71212
|
+
:type: bool
|
|
71213
|
+
"""
|
|
71214
|
+
|
|
71215
|
+
invert_vertex_group: bool
|
|
71216
|
+
""" Invert vertex group weights
|
|
71217
|
+
|
|
71218
|
+
:type: bool
|
|
71219
|
+
"""
|
|
71220
|
+
|
|
71221
|
+
layer_filter: typing.Union[str, typing.Any]
|
|
71222
|
+
""" Layer name
|
|
71223
|
+
|
|
71224
|
+
:type: typing.Union[str, typing.Any]
|
|
71225
|
+
"""
|
|
71226
|
+
|
|
71227
|
+
layer_pass_filter: int
|
|
71228
|
+
""" Layer pass filter
|
|
71229
|
+
|
|
71230
|
+
:type: int
|
|
71231
|
+
"""
|
|
71232
|
+
|
|
71233
|
+
material_filter: "Material"
|
|
71234
|
+
""" Material used for filtering
|
|
71235
|
+
|
|
71236
|
+
:type: 'Material'
|
|
71237
|
+
"""
|
|
71238
|
+
|
|
71239
|
+
material_pass_filter: int
|
|
71240
|
+
""" Material pass
|
|
71241
|
+
|
|
71242
|
+
:type: int
|
|
71243
|
+
"""
|
|
71244
|
+
|
|
71245
|
+
minimum_weight: float
|
|
71246
|
+
""" Minimum value for vertex weight
|
|
71247
|
+
|
|
71248
|
+
:type: float
|
|
71249
|
+
"""
|
|
71250
|
+
|
|
71251
|
+
open_influence_panel: bool
|
|
71252
|
+
"""
|
|
71253
|
+
|
|
71254
|
+
:type: bool
|
|
71255
|
+
"""
|
|
71256
|
+
|
|
71257
|
+
space: typing.Union[str, int]
|
|
71258
|
+
""" Coordinates space
|
|
71259
|
+
|
|
71260
|
+
:type: typing.Union[str, int]
|
|
71261
|
+
"""
|
|
71262
|
+
|
|
71263
|
+
target_vertex_group: typing.Union[str, typing.Any]
|
|
71264
|
+
""" Output Vertex group
|
|
71265
|
+
|
|
71266
|
+
:type: typing.Union[str, typing.Any]
|
|
71267
|
+
"""
|
|
71268
|
+
|
|
71269
|
+
use_invert_output: bool
|
|
71270
|
+
""" Invert output weight values
|
|
71271
|
+
|
|
71272
|
+
:type: bool
|
|
71273
|
+
"""
|
|
71274
|
+
|
|
71275
|
+
use_layer_pass_filter: bool
|
|
71276
|
+
""" Use layer pass filter
|
|
71277
|
+
|
|
71278
|
+
:type: bool
|
|
71279
|
+
"""
|
|
71280
|
+
|
|
71281
|
+
use_material_pass_filter: bool
|
|
71282
|
+
""" Use material pass filter
|
|
71283
|
+
|
|
71284
|
+
:type: bool
|
|
71285
|
+
"""
|
|
71286
|
+
|
|
71287
|
+
use_multiply: bool
|
|
71288
|
+
""" Multiply the calculated weights with the existing values in the vertex group
|
|
71289
|
+
|
|
71290
|
+
:type: bool
|
|
71291
|
+
"""
|
|
71292
|
+
|
|
71293
|
+
vertex_group_name: typing.Union[str, typing.Any]
|
|
71294
|
+
""" Vertex group name for modulating the deform
|
|
71295
|
+
|
|
71296
|
+
:type: typing.Union[str, typing.Any]
|
|
71297
|
+
"""
|
|
71298
|
+
|
|
71299
|
+
@classmethod
|
|
71300
|
+
def bl_rna_get_subclass(cls, id: typing.Optional[str], default=None) -> "Struct":
|
|
71301
|
+
"""
|
|
71302
|
+
|
|
71303
|
+
:param id: The RNA type identifier.
|
|
71304
|
+
:type id: typing.Optional[str]
|
|
71305
|
+
:rtype: 'Struct'
|
|
71306
|
+
:return: The RNA type or default when not found.
|
|
71307
|
+
"""
|
|
71308
|
+
...
|
|
71309
|
+
|
|
71310
|
+
@classmethod
|
|
71311
|
+
def bl_rna_get_subclass_py(
|
|
71312
|
+
cls, id: typing.Optional[str], default=None
|
|
71313
|
+
) -> typing.Any:
|
|
71314
|
+
"""
|
|
71315
|
+
|
|
71316
|
+
:param id: The RNA type identifier.
|
|
71317
|
+
:type id: typing.Optional[str]
|
|
71318
|
+
:rtype: typing.Any
|
|
71319
|
+
:return: The class or default when not found.
|
|
71320
|
+
"""
|
|
71321
|
+
...
|
|
71322
|
+
|
|
70971
71323
|
class HookModifier(Modifier, bpy_struct):
|
|
70972
71324
|
"""Hook modifier to modify the location of vertices"""
|
|
70973
71325
|
|
|
@@ -81520,12 +81872,6 @@ class SpaceFileBrowser(Space, bpy_struct):
|
|
|
81520
81872
|
class SpaceGraphEditor(Space, bpy_struct):
|
|
81521
81873
|
"""Graph Editor space data"""
|
|
81522
81874
|
|
|
81523
|
-
autolock_translation_axis: bool
|
|
81524
|
-
""" Automatically locks the movement of keyframes to the dominant axis
|
|
81525
|
-
|
|
81526
|
-
:type: bool
|
|
81527
|
-
"""
|
|
81528
|
-
|
|
81529
81875
|
cursor_position_x: float
|
|
81530
81876
|
""" Graph Editor 2D-Value cursor - X-Value component
|
|
81531
81877
|
|
|
@@ -81616,6 +81962,12 @@ class SpaceGraphEditor(Space, bpy_struct):
|
|
|
81616
81962
|
:type: bool
|
|
81617
81963
|
"""
|
|
81618
81964
|
|
|
81965
|
+
use_auto_lock_translation_axis: bool
|
|
81966
|
+
""" Automatically locks the movement of keyframes to the dominant axis
|
|
81967
|
+
|
|
81968
|
+
:type: bool
|
|
81969
|
+
"""
|
|
81970
|
+
|
|
81619
81971
|
use_auto_merge_keyframes: bool
|
|
81620
81972
|
""" Automatically merge nearby keyframes
|
|
81621
81973
|
|
bpy_extras/__init__.pyi
CHANGED
|
@@ -11,8 +11,8 @@ from . import object_utils
|
|
|
11
11
|
from . import anim_utils
|
|
12
12
|
from . import node_utils
|
|
13
13
|
from . import extensions
|
|
14
|
+
from . import node_shader_utils
|
|
14
15
|
from . import wm_utils
|
|
15
16
|
from . import bmesh_utils
|
|
16
|
-
from . import node_shader_utils
|
|
17
17
|
|
|
18
18
|
GenericType = typing.TypeVar("GenericType")
|
|
@@ -13,12 +13,12 @@ bl_app_template_utils/__init__.pyi,sha256=CIMnHqA76dh_d9RIIrG_IsrdYCZuvJklshbxtJ
|
|
|
13
13
|
bl_app_template_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
14
14
|
bl_console_utils/__init__.pyi,sha256=qOGRa_N1-VEAf9cr60mvvxQMYSKNNSzuSQ0_TuSEq1I,97
|
|
15
15
|
bl_console_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
16
|
-
bl_console_utils/autocomplete/__init__.pyi,sha256=
|
|
16
|
+
bl_console_utils/autocomplete/__init__.pyi,sha256=u42XMuxeB9SmwNak1aZDHhxMEIR539Q6GyhR7HisRi0,191
|
|
17
17
|
bl_console_utils/autocomplete/complete_calltip/__init__.pyi,sha256=Rw2uA3ktL5R--lwMMz3I9lc-AmStNYlqYIj7oz8ZlW0,248
|
|
18
18
|
bl_console_utils/autocomplete/complete_import/__init__.pyi,sha256=REypgPPnMFPk4NzervlwOI3Gy44Txi4U7aM4gLhi3Hg,150
|
|
19
19
|
bl_console_utils/autocomplete/complete_namespace/__init__.pyi,sha256=JtKAEFyeT4zFjwoxdXSMZQ1YAaf1SJBOd69ysxTxhJ8,260
|
|
20
20
|
bl_console_utils/autocomplete/intellisense/__init__.pyi,sha256=BfJ5CLfwmTB3gE37-Vog8xnj8wYKU3ao5qJOaebyn1k,173
|
|
21
|
-
bl_i18n_utils/__init__.pyi,sha256=
|
|
21
|
+
bl_i18n_utils/__init__.pyi,sha256=b6muJRLoEAvCJEv1tlzmA7d5sNBIs2cP63QIk_ZYijM,253
|
|
22
22
|
bl_i18n_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
23
23
|
bl_i18n_utils/bl_extract_messages/__init__.pyi,sha256=VL8QDo6QFrZGln85OGRpRWNlwuxzikx7IG53I71MJYA,908
|
|
24
24
|
bl_i18n_utils/merge_po/__init__.pyi,sha256=kRw3brEQfj6eyDjU--MA-Sg3AS74IzmDHY_gcjZCUlo,87
|
|
@@ -27,7 +27,7 @@ bl_i18n_utils/utils/__init__.pyi,sha256=wMP72XmMj1JKGwPCyRrrAjtwKjWXD8Kusvs8wP2Z
|
|
|
27
27
|
bl_i18n_utils/utils_cli/__init__.pyi,sha256=8T0Yiqb_eYkLx12tzzsfH2M07OZ9vp0gkmI_faVcNPU,271
|
|
28
28
|
bl_i18n_utils/utils_languages_menu/__init__.pyi,sha256=HAr8hMUsOj7mXh6zCpoa_BUsHIO5NnU4MrQSZ0IhnfE,111
|
|
29
29
|
bl_i18n_utils/utils_rtl/__init__.pyi,sha256=COZKFsnJ_CkL-rm2NEN59xLdU5bIG7TSAQVZFGj3v3c,137
|
|
30
|
-
bl_keymap_utils/__init__.pyi,sha256=
|
|
30
|
+
bl_keymap_utils/__init__.pyi,sha256=5mCxB171LtVVYtSlS-43Slkbi5TzktfueY8mRpmXJRY,208
|
|
31
31
|
bl_keymap_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
32
32
|
bl_keymap_utils/io/__init__.pyi,sha256=gOCf5YjCIhV6sLhBGUOIG4-ws2L30ikPar2BMfImI5A,460
|
|
33
33
|
bl_keymap_utils/keymap_from_toolbar/__init__.pyi,sha256=L66W6RPUIKPwstCeXn2-DL99aV13E0KWLPf2rnD_t9E,140
|
|
@@ -36,7 +36,7 @@ bl_keymap_utils/platform_helpers/__init__.pyi,sha256=3Yx0ye83ae8XTdtALcy8MBrOCWg
|
|
|
36
36
|
bl_keymap_utils/versioning/__init__.pyi,sha256=bp1g6HijeBeJbCCodpi5U2RoFRZPd0zdAQqz6Vwczhs,132
|
|
37
37
|
bl_math/__init__.pyi,sha256=huOF-N07-NDNRWnF5OZ53dQ1IZxd5MtxHgIqfaLFpfM,1591
|
|
38
38
|
bl_math/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
39
|
-
bl_operators/__init__.pyi,sha256=
|
|
39
|
+
bl_operators/__init__.pyi,sha256=QHLkRaPSRbzDLXvqCJR_BNsEWE0p56N40Em1UsmeXbk,846
|
|
40
40
|
bl_operators/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
41
41
|
bl_operators/add_mesh_torus/__init__.pyi,sha256=Ou1PpWNJ_J5KuJ7eZ3OrHl4LfUqXLJBl3U9jUIKpOhk,1578
|
|
42
42
|
bl_operators/anim/__init__.pyi,sha256=bNmdDahnu7ssTA6wFOEOGL1TkkfGzSYmk-kR0KKCe2s,9444
|
|
@@ -77,7 +77,7 @@ bl_rna_utils/data_path/__init__.pyi,sha256=by0GTuwldwKDernceXM_MTRgJQKEWWdEkx20-
|
|
|
77
77
|
bl_text_utils/__init__.pyi,sha256=mA4rhlhHGbhXjawE0_uzcLQZhw4Rj4xm5DsFzDaoR0I,100
|
|
78
78
|
bl_text_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
79
79
|
bl_text_utils/external_editor/__init__.pyi,sha256=AFtCr2YnVkJgbiliZpvZYFuxzLRJeBO581yb5a1L_D4,125
|
|
80
|
-
bl_ui/__init__.pyi,sha256=
|
|
80
|
+
bl_ui/__init__.pyi,sha256=JLZRUOK0iJtGGcf8jWpvp1kIBChpItLyAHtrAy3cndw,7038
|
|
81
81
|
bl_ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
82
82
|
bl_ui/anim/__init__.pyi,sha256=sU5Td5ZW8H5Day3rvtA6oLhasvFDcV6f9KCAJiCY74w,1543
|
|
83
83
|
bl_ui/asset_shelf/__init__.pyi,sha256=JU2O4XsUUuGxQ5VLcMT4bsU85uNrAd2f4xAPIzC3mjE,1324
|
|
@@ -169,15 +169,15 @@ bmesh/geometry/__init__.pyi,sha256=ZNWeqa8UPLoM04_2CG-PGREKg6-HPXRj2oUXyq9KSF0,6
|
|
|
169
169
|
bmesh/ops/__init__.pyi,sha256=x2blm_G6g91m3soq-ReQpgxN25XAZfPyI_UlgoM6je8,72886
|
|
170
170
|
bmesh/types/__init__.pyi,sha256=2bcXNXMZoq7n8NmmvXVYxKSqZS03s6tw26OgckAsKOY,39624
|
|
171
171
|
bmesh/utils/__init__.pyi,sha256=7UUZtyw2frpxddxB8ehl6Au0w2lPb63q6A96r2YVMJk,6332
|
|
172
|
-
bpy/__init__.pyi,sha256=
|
|
172
|
+
bpy/__init__.pyi,sha256=bGK_05YWWwLsYqVlMEDsQYg4APKXnOUWTJsl_HaJuxk,324
|
|
173
173
|
bpy/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
174
|
-
bpy/app/__init__.pyi,sha256=
|
|
174
|
+
bpy/app/__init__.pyi,sha256=qGofIT7XthgaOqjD_3VFgttZFK0Q_z1RZiq9Ff9H1kc,9479
|
|
175
175
|
bpy/app/handlers/__init__.pyi,sha256=IN8lCMuLtOnf94pImFXiSQ5JR6L3BkkgIsPfFdBqitI,5399
|
|
176
176
|
bpy/app/icons/__init__.pyi,sha256=tOC3c9N_BLT3G0viXxPhMook_lPDGJoUmTYHjg_NOZw,1121
|
|
177
177
|
bpy/app/timers/__init__.pyi,sha256=Zuw20JvFn0Vnd0fmMMagiMYB7ECYgvDZOctgT0V6zYw,1456
|
|
178
178
|
bpy/app/translations/__init__.pyi,sha256=BpliGs9csPVS1wUvia5E4O5Bl1oLy44kcKMr8BYbUPg,4832
|
|
179
179
|
bpy/msgbus/__init__.pyi,sha256=RvHE7HXTy24U9DljsS4I6Q3stXfqoTlgKM_MjaT0wGQ,1605
|
|
180
|
-
bpy/ops/__init__.pyi,sha256=
|
|
180
|
+
bpy/ops/__init__.pyi,sha256=uTF9qKbhK_NiloSbYTJyl0rv_6Iw5Mj3ED9-nyu7f_M,1751
|
|
181
181
|
bpy/ops/action/__init__.pyi,sha256=fp2H1MFKyRdirKHtXlum1OWndPG2cvHWPr7uohovMXw,28955
|
|
182
182
|
bpy/ops/anim/__init__.pyi,sha256=UPiMeidLfQPGaw9p_txjQoWxwfIJsxp8hPDvJOsXaCI,39432
|
|
183
183
|
bpy/ops/armature/__init__.pyi,sha256=zGM1LgMMkxKox6oftCQ5QOn9RZLGpRR9MT1qICiD64g,35412
|
|
@@ -207,7 +207,7 @@ bpy/ops/geometry/__init__.pyi,sha256=NLXZbubV_pagrTTuMVekSAR6sf3iPix4XysZd7CfF2o
|
|
|
207
207
|
bpy/ops/gizmogroup/__init__.pyi,sha256=n9ET25rm9sc_j1SsDuvQ3PLbEmh1S8YNq2o456dqE94,2201
|
|
208
208
|
bpy/ops/gpencil/__init__.pyi,sha256=V-8v9Yr-Hn1b2rWxxkpjuAqf4aKKkjazODZ9fm3PFvM,134977
|
|
209
209
|
bpy/ops/graph/__init__.pyi,sha256=DeRWGKClN9nnZOaS2TgZS6oI83VflvpBEicd5_6c-gs,61844
|
|
210
|
-
bpy/ops/grease_pencil/__init__.pyi,sha256=
|
|
210
|
+
bpy/ops/grease_pencil/__init__.pyi,sha256=EFjR2YNR6jL2uFZbGNQ3bpDQ7Ubpv49gAuX7maziZ68,35440
|
|
211
211
|
bpy/ops/image/__init__.pyi,sha256=_A5ohC5fs9VeEDoJEjPi0jXh-DY0AvuuxrwpkArM6wg,58175
|
|
212
212
|
bpy/ops/import_anim/__init__.pyi,sha256=si81KKL3Yb8XDgrsydXoPbGTjhyLS4fYhSd-cNuJxp0,3405
|
|
213
213
|
bpy/ops/import_curve/__init__.pyi,sha256=ep0OuZXEzCd_1TNYuPXlyKDeqexDxYxeco_kUrxt_ck,1019
|
|
@@ -222,7 +222,7 @@ bpy/ops/mball/__init__.pyi,sha256=hNdvlv7qbKMrzMNdQ24fBSRgXmosO5GDB-QejMVJlG8,64
|
|
|
222
222
|
bpy/ops/mesh/__init__.pyi,sha256=hyeREzP7QRZ2cr00UAnvwH5_BDDiqS73Lfb9uGj7RM0,186682
|
|
223
223
|
bpy/ops/nla/__init__.pyi,sha256=xSzTmxJwYy6DYe7gAuAppsZ1LPexofSKKdaWTMEM6zA,30775
|
|
224
224
|
bpy/ops/node/__init__.pyi,sha256=6a7iJgltSHNyYoN0JQgyLstlwh6ff2e20Q7abCQAjDg,82767
|
|
225
|
-
bpy/ops/object/__init__.pyi,sha256=
|
|
225
|
+
bpy/ops/object/__init__.pyi,sha256=jK-jvWReDgRWnKvpEN_y0FJjDI0lcFmM6Itrp6KlAUU,241494
|
|
226
226
|
bpy/ops/outliner/__init__.pyi,sha256=yXZy7BBcLGhkAbxiiZZ6BLEl6FzY1mrpPCct5W-0ltI,46128
|
|
227
227
|
bpy/ops/paint/__init__.pyi,sha256=h7G-Mr8h9Q5l3QPPxwZR1AB8E-5QcRE8_CE3_6khTP4,45532
|
|
228
228
|
bpy/ops/paintcurve/__init__.pyi,sha256=vr-T7uiXeIPK2fFGkGqxvFySSaU3mGdz-4iiHhT8ujg,5521
|
|
@@ -257,11 +257,11 @@ bpy/ops/workspace/__init__.pyi,sha256=qMybRMnxonzKlIe1vscg5ASBuXWrC3hv_2eqRTilRW
|
|
|
257
257
|
bpy/ops/world/__init__.pyi,sha256=nPUTiumoo6f727F6tFUU8L4kyxAEbKISld9WfPCDjSk,573
|
|
258
258
|
bpy/path/__init__.pyi,sha256=pdIIUh8bu1ueGuu1QJ0Lu5MsGBlauirt1qthSXsV1RA,6143
|
|
259
259
|
bpy/props/__init__.pyi,sha256=tjqe4tN_UN3n4VWKmZG-SkRfJotQ1p3MvMagGH47VsA,27519
|
|
260
|
-
bpy/types/__init__.pyi,sha256=
|
|
260
|
+
bpy/types/__init__.pyi,sha256=psDXeaKoZXcjJ-VG0ALbdUWM6dE4p2LtGG5-oPMlcb0,3482185
|
|
261
261
|
bpy/utils/__init__.pyi,sha256=S2hFPTK7VxdKWwqEvYzTRNHFXb6MMbLjufe8_Ib4clo,10513
|
|
262
262
|
bpy/utils/previews/__init__.pyi,sha256=D_Cigr8LKjOgYULJYKEYxeOXpiZ5zvtaWS0UYXCS-0o,2254
|
|
263
263
|
bpy/utils/units/__init__.pyi,sha256=dfh3KCRDrjv9FQoJ-YAitl5DIwJ3cJbC1rRkHz_QM6Y,2718
|
|
264
|
-
bpy_extras/__init__.pyi,sha256=
|
|
264
|
+
bpy_extras/__init__.pyi,sha256=ipXqo4Ht7SXqAF2HmCNQnk4ZvdJYM0zf5X1MnOqyZ0k,437
|
|
265
265
|
bpy_extras/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
266
266
|
bpy_extras/anim_utils/__init__.pyi,sha256=qJdsqC4jdgo7jEfAnojiNC3ktIxMd8nmnCL9XWJmYCA,2629
|
|
267
267
|
bpy_extras/asset_utils/__init__.pyi,sha256=ugLnZGwgepm58mWHS4cS_bmum9v9La2a1wKpg5VShHY,362
|
|
@@ -343,7 +343,7 @@ rna_xml/__init__.pyi,sha256=FBeu5sXsynEVp7-RejFGDQxQWa5tyMGJhpeeVvKSOuI,482
|
|
|
343
343
|
rna_xml/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
344
344
|
sys_info/__init__.pyi,sha256=RN6EcA0WmaY1U3j8SxCoXsOSCV6iYCA6E0qFwZ0x63s,104
|
|
345
345
|
sys_info/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
346
|
-
fake_bpy_module-
|
|
347
|
-
fake_bpy_module-
|
|
348
|
-
fake_bpy_module-
|
|
349
|
-
fake_bpy_module-
|
|
346
|
+
fake_bpy_module-20240217.dist-info/METADATA,sha256=fIeGUQ5evT45oZYmepNwEu3G1WeIMaSbNqVlJSv32Dg,7008
|
|
347
|
+
fake_bpy_module-20240217.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
|
348
|
+
fake_bpy_module-20240217.dist-info/top_level.txt,sha256=7r84ZPNSbRAopA50b0pH3uZ2ysQ2IvkuP0uXadxl7gs,495
|
|
349
|
+
fake_bpy_module-20240217.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|