fake-bpy-module 20240215__py3-none-any.whl → 20240216__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 +1 -1
- bl_i18n_utils/__init__.pyi +3 -3
- bl_keymap_utils/__init__.pyi +1 -1
- bl_operators/__init__.pyi +22 -22
- bl_ui/__init__.pyi +61 -61
- bpy/__init__.pyi +2 -2
- bpy/app/__init__.pyi +1 -1
- bpy/ops/__init__.pyi +62 -62
- bpy/ops/grease_pencil/__init__.pyi +20 -0
- bpy/ops/object/__init__.pyi +1 -1
- bpy/types/__init__.pyi +435 -75
- bpy_extras/__init__.pyi +1 -1
- bpy_extras/anim_utils/__init__.pyi +2 -2
- {fake_bpy_module-20240215.dist-info → fake_bpy_module-20240216.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240215.dist-info → fake_bpy_module-20240216.dist-info}/RECORD +17 -17
- {fake_bpy_module-20240215.dist-info → fake_bpy_module-20240216.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240215.dist-info → fake_bpy_module-20240216.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 merge_po
|
|
3
4
|
from . import utils_cli
|
|
4
5
|
from . import utils_languages_menu
|
|
6
|
+
from . import utils
|
|
7
|
+
from . import settings
|
|
5
8
|
from . import bl_extract_messages
|
|
6
9
|
from . import utils_rtl
|
|
7
|
-
from . import merge_po
|
|
8
|
-
from . import settings
|
|
9
|
-
from . import utils
|
|
10
10
|
|
|
11
11
|
GenericType = typing.TypeVar("GenericType")
|
bl_keymap_utils/__init__.pyi
CHANGED
bl_operators/__init__.pyi
CHANGED
|
@@ -1,34 +1,34 @@
|
|
|
1
1
|
import sys
|
|
2
2
|
import typing
|
|
3
|
-
from . import spreadsheet
|
|
4
|
-
from . import userpref
|
|
5
|
-
from . import uvcalc_transform
|
|
6
|
-
from . import node
|
|
7
|
-
from . import image
|
|
8
|
-
from . import object_quick_effects
|
|
9
|
-
from . import uvcalc_follow_active
|
|
10
|
-
from . import object
|
|
11
|
-
from . import uvcalc_lightmap
|
|
12
3
|
from . import mesh
|
|
13
|
-
from . import sequencer
|
|
14
|
-
from . import geometry_nodes
|
|
15
|
-
from . import freestyle
|
|
16
|
-
from . import constraint
|
|
17
4
|
from . import presets
|
|
5
|
+
from . import freestyle
|
|
18
6
|
from . import object_randomize_transform
|
|
19
|
-
from . import
|
|
20
|
-
from . import
|
|
21
|
-
from . import
|
|
22
|
-
from . import
|
|
7
|
+
from . import add_mesh_torus
|
|
8
|
+
from . import anim
|
|
9
|
+
from . import object
|
|
10
|
+
from . import screen_play_rendered_anim
|
|
23
11
|
from . import file
|
|
12
|
+
from . import userpref
|
|
13
|
+
from . import image
|
|
14
|
+
from . import constraint
|
|
24
15
|
from . import view3d
|
|
25
|
-
from . import assets
|
|
26
|
-
from . import clip
|
|
27
16
|
from . import wm
|
|
17
|
+
from . import clip
|
|
28
18
|
from . import object_align
|
|
29
|
-
from . import
|
|
30
|
-
from . import
|
|
31
|
-
from . import
|
|
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
|
+
from . import object_quick_effects
|
|
31
|
+
from . import spreadsheet
|
|
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
|
|
7
|
-
from . import
|
|
8
|
-
from . import
|
|
9
|
-
from . import
|
|
5
|
+
from . import properties_data_bone
|
|
6
|
+
from . import properties_world
|
|
7
|
+
from . import properties_physics_softbody
|
|
8
|
+
from . import properties_data_mesh
|
|
9
|
+
from . import properties_data_light
|
|
10
|
+
from . import properties_physics_dynamicpaint
|
|
11
|
+
from . import space_graph
|
|
12
|
+
from . import properties_data_lattice
|
|
13
|
+
from . import properties_particle
|
|
10
14
|
from . import properties_data_shaderfx
|
|
11
|
-
from . import properties_data_camera
|
|
12
15
|
from . import properties_object
|
|
13
|
-
from . import
|
|
14
|
-
from . import properties_data_modifier
|
|
15
|
-
from . import properties_scene
|
|
16
|
-
from . import properties_data_lightprobe
|
|
17
|
-
from . import properties_data_grease_pencil
|
|
18
|
-
from . import properties_texture
|
|
16
|
+
from . import anim
|
|
19
17
|
from . import node_add_menu_texture
|
|
20
|
-
from . import properties_paint_common
|
|
21
|
-
from . import properties_animviz
|
|
22
|
-
from . import properties_physics_fluid
|
|
23
|
-
from . import properties_render
|
|
24
|
-
from . import space_view3d_toolbar
|
|
25
18
|
from . import properties_physics_common
|
|
26
|
-
from . import space_toolsystem_common
|
|
27
|
-
from . import properties_world
|
|
28
19
|
from . import generic_ui_list
|
|
29
|
-
from . import utils
|
|
30
|
-
from . import properties_physics_cloth
|
|
31
|
-
from . import space_sequencer
|
|
32
|
-
from . import space_time
|
|
33
|
-
from . import space_console
|
|
34
|
-
from . import node_add_menu_compositor
|
|
35
|
-
from . import space_clip
|
|
36
|
-
from . import space_toolsystem_toolbar
|
|
37
20
|
from . import space_filebrowser
|
|
38
|
-
from . import
|
|
39
|
-
from . import
|
|
40
|
-
from . import space_text
|
|
41
|
-
from . import properties_data_curves
|
|
21
|
+
from . import properties_view_layer
|
|
22
|
+
from . import node_add_menu_geometry
|
|
42
23
|
from . import properties_workspace
|
|
43
|
-
from . import
|
|
44
|
-
from . import
|
|
24
|
+
from . import node_add_menu_compositor
|
|
25
|
+
from . import properties_data_modifier
|
|
26
|
+
from . import space_statusbar
|
|
27
|
+
from . import properties_data_speaker
|
|
28
|
+
from . import properties_data_curves
|
|
29
|
+
from . import properties_physics_geometry_nodes
|
|
45
30
|
from . import properties_collection
|
|
46
|
-
from . import
|
|
47
|
-
from . import
|
|
48
|
-
from . import
|
|
49
|
-
from . import
|
|
50
|
-
from . import
|
|
51
|
-
from . import
|
|
52
|
-
from . import
|
|
53
|
-
from . import
|
|
54
|
-
from . import
|
|
55
|
-
from . import space_graph
|
|
56
|
-
from . import anim
|
|
31
|
+
from . import properties_paint_common
|
|
32
|
+
from . import space_info
|
|
33
|
+
from . import space_userpref
|
|
34
|
+
from . import properties_physics_rigidbody
|
|
35
|
+
from . import space_time
|
|
36
|
+
from . import properties_data_armature
|
|
37
|
+
from . import space_topbar
|
|
38
|
+
from . import properties_data_camera
|
|
39
|
+
from . import properties_texture
|
|
57
40
|
from . import properties_grease_pencil_common
|
|
58
|
-
from . import properties_view_layer
|
|
59
|
-
from . import properties_physics_rigidbody_constraint
|
|
60
41
|
from . import properties_data_metaball
|
|
42
|
+
from . import asset_shelf
|
|
43
|
+
from . import properties_data_volume
|
|
44
|
+
from . import space_text
|
|
45
|
+
from . import utils
|
|
46
|
+
from . import properties_constraint
|
|
47
|
+
from . import space_image
|
|
48
|
+
from . import properties_data_lightprobe
|
|
61
49
|
from . import properties_material_gpencil
|
|
62
|
-
from . import
|
|
63
|
-
from . import properties_physics_geometry_nodes
|
|
64
|
-
from . import properties_data_lattice
|
|
65
|
-
from . import space_dopesheet
|
|
50
|
+
from . import space_node
|
|
66
51
|
from . import properties_freestyle
|
|
67
|
-
from . import properties_particle
|
|
68
|
-
from . import properties_physics_dynamicpaint
|
|
69
|
-
from . import properties_data_armature
|
|
70
|
-
from . import properties_data_empty
|
|
71
|
-
from . import properties_data_bone
|
|
72
52
|
from . import space_nla
|
|
73
|
-
from . import space_statusbar
|
|
74
|
-
from . import space_view3d
|
|
75
|
-
from . import properties_data_speaker
|
|
76
|
-
from . import properties_physics_rigidbody
|
|
77
|
-
from . import space_userpref
|
|
78
53
|
from . import space_properties
|
|
79
54
|
from . import properties_data_gpencil
|
|
80
|
-
from . import
|
|
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
|
|
67
|
+
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
|
+
from . import properties_physics_rigidbody_constraint
|
|
80
|
+
from . import space_toolsystem_toolbar
|
|
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 props
|
|
8
7
|
from . import path
|
|
9
|
-
from . import msgbus
|
|
10
8
|
from . import utils
|
|
9
|
+
from . import msgbus
|
|
11
10
|
from . import app
|
|
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
|
|
4
|
-
from . import
|
|
5
|
-
from . import export_anim
|
|
6
|
-
from . import constraint
|
|
7
|
-
from . import text
|
|
3
|
+
from . import geometry
|
|
4
|
+
from . import text_editor
|
|
8
5
|
from . import world
|
|
9
|
-
from . import
|
|
10
|
-
from . import
|
|
11
|
-
from . import
|
|
12
|
-
from . import
|
|
13
|
-
from . import preferences
|
|
14
|
-
from . import export_mesh
|
|
15
|
-
from . import import_mesh
|
|
16
|
-
from . import pose
|
|
17
|
-
from . import font
|
|
18
|
-
from . import mesh
|
|
19
|
-
from . import screen
|
|
20
|
-
from . import node
|
|
6
|
+
from . import rigidbody
|
|
7
|
+
from . import cloth
|
|
8
|
+
from . import collection
|
|
9
|
+
from . import file
|
|
21
10
|
from . import cachefile
|
|
22
|
-
from . import
|
|
23
|
-
from . import
|
|
24
|
-
from . import fluid
|
|
11
|
+
from . import spreadsheet
|
|
12
|
+
from . import image
|
|
25
13
|
from . import anim
|
|
26
|
-
from . import graph
|
|
27
|
-
from . import import_anim
|
|
28
|
-
from . import cloth
|
|
29
|
-
from . import wm
|
|
30
14
|
from . import uilist
|
|
31
|
-
from . import
|
|
32
|
-
from . import
|
|
33
|
-
from . import file
|
|
34
|
-
from . import console
|
|
35
|
-
from . import info
|
|
36
|
-
from . import clip
|
|
37
|
-
from . import buttons
|
|
38
|
-
from . import text_editor
|
|
15
|
+
from . import pose
|
|
16
|
+
from . import grease_pencil
|
|
39
17
|
from . import marker
|
|
40
|
-
from . import
|
|
41
|
-
from . import
|
|
42
|
-
from . import
|
|
43
|
-
from . import render
|
|
44
|
-
from . import import_scene
|
|
45
|
-
from . import cycles
|
|
18
|
+
from . import surface
|
|
19
|
+
from . import workspace
|
|
20
|
+
from . import clip
|
|
46
21
|
from . import export_scene
|
|
22
|
+
from . import screen
|
|
23
|
+
from . import wm
|
|
24
|
+
from . import armature
|
|
25
|
+
from . import import_scene
|
|
26
|
+
from . import node
|
|
47
27
|
from . import palette
|
|
48
|
-
from . import
|
|
49
|
-
from . import scene
|
|
50
|
-
from . import texture
|
|
51
|
-
from . import surface
|
|
52
|
-
from . import view3d
|
|
53
|
-
from . import ed
|
|
54
|
-
from . import paint
|
|
55
|
-
from . import sound
|
|
56
|
-
from . import mask
|
|
57
|
-
from . import sequencer
|
|
58
|
-
from . import sculpt_curves
|
|
59
|
-
from . import material
|
|
60
|
-
from . import action
|
|
61
|
-
from . import spreadsheet
|
|
28
|
+
from . import particle
|
|
62
29
|
from . import import_curve
|
|
63
|
-
from . import
|
|
30
|
+
from . import graph
|
|
31
|
+
from . import export_mesh
|
|
32
|
+
from . import fluid
|
|
33
|
+
from . import material
|
|
34
|
+
from . import export_anim
|
|
35
|
+
from . import import_mesh
|
|
36
|
+
from . import constraint
|
|
37
|
+
from . import font
|
|
38
|
+
from . import boid
|
|
39
|
+
from . import preferences
|
|
40
|
+
from . import view3d
|
|
41
|
+
from . import gpencil
|
|
64
42
|
from . import camera
|
|
43
|
+
from . import texture
|
|
65
44
|
from . import outliner
|
|
66
|
-
from . import
|
|
67
|
-
from . import
|
|
45
|
+
from . import text
|
|
46
|
+
from . import paintcurve
|
|
68
47
|
from . import gizmogroup
|
|
48
|
+
from . import curves
|
|
49
|
+
from . import paint
|
|
50
|
+
from . import object
|
|
51
|
+
from . import ed
|
|
52
|
+
from . import view2d
|
|
53
|
+
from . import lattice
|
|
54
|
+
from . import import_anim
|
|
55
|
+
from . import scene
|
|
56
|
+
from . import brush
|
|
57
|
+
from . import asset
|
|
58
|
+
from . import buttons
|
|
59
|
+
from . import sculpt_curves
|
|
69
60
|
from . import mball
|
|
70
|
-
from . import uv
|
|
71
|
-
from . import workspace
|
|
72
|
-
from . import grease_pencil
|
|
73
|
-
from . import nla
|
|
74
|
-
from . import boid
|
|
75
61
|
from . import script
|
|
62
|
+
from . import poselib
|
|
76
63
|
from . import dpaint
|
|
64
|
+
from . import sound
|
|
77
65
|
from . import ui
|
|
78
|
-
from . import
|
|
79
|
-
from . import
|
|
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
|
|
80
80
|
|
|
81
81
|
GenericType = typing.TypeVar("GenericType")
|
|
@@ -324,6 +324,26 @@ def layer_isolate(
|
|
|
324
324
|
|
|
325
325
|
...
|
|
326
326
|
|
|
327
|
+
def layer_lock_all(
|
|
328
|
+
override_context: typing.Optional[
|
|
329
|
+
typing.Union[typing.Dict, "bpy.types.Context"]
|
|
330
|
+
] = None,
|
|
331
|
+
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
332
|
+
undo: typing.Optional[bool] = None,
|
|
333
|
+
*,
|
|
334
|
+
lock: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
335
|
+
):
|
|
336
|
+
"""Lock all Grease Pencil layers to prevent them from being accidentally modified
|
|
337
|
+
|
|
338
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
339
|
+
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
340
|
+
:type undo: typing.Optional[bool]
|
|
341
|
+
:param lock: Lock Value, Lock/Unlock all layers
|
|
342
|
+
:type lock: typing.Optional[typing.Union[bool, typing.Any]]
|
|
343
|
+
"""
|
|
344
|
+
|
|
345
|
+
...
|
|
346
|
+
|
|
327
347
|
def layer_remove(
|
|
328
348
|
override_context: typing.Optional[
|
|
329
349
|
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\:265 <https://projects.blender.org/blender/blender/src/branch/main/scripts/startup/bl_ui/properties_data_modifier.py#L265>`__
|
|
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.
|
|
6
|
-
import bl_ui.
|
|
7
|
-
import bl_ui.
|
|
8
|
-
import bl_operators.
|
|
9
|
-
import bl_ui.properties_material
|
|
10
|
-
import bl_ui.space_info
|
|
11
|
-
import bl_ui.space_spreadsheet
|
|
12
|
-
import bl_ui.properties_data_shaderfx
|
|
13
|
-
import bl_ui.properties_data_camera
|
|
14
|
-
import bl_operators.node
|
|
15
|
-
import bl_ui
|
|
16
|
-
import bl_ui.properties_object
|
|
5
|
+
import bl_operators.presets
|
|
6
|
+
import bl_ui.properties_data_bone
|
|
7
|
+
import bl_ui.properties_world
|
|
8
|
+
import bl_operators.freestyle
|
|
17
9
|
import bl_ui.properties_physics_softbody
|
|
18
|
-
import bl_ui.
|
|
19
|
-
import bl_ui.
|
|
20
|
-
import
|
|
21
|
-
import bl_ui.
|
|
10
|
+
import bl_ui.properties_data_mesh
|
|
11
|
+
import bl_ui.properties_data_light
|
|
12
|
+
import bl_operators.anim
|
|
13
|
+
import bl_ui.properties_physics_dynamicpaint
|
|
14
|
+
import bl_ui.space_graph
|
|
15
|
+
import bl_ui.properties_data_lattice
|
|
16
|
+
import bl_ui
|
|
17
|
+
import bl_ui.properties_particle
|
|
18
|
+
import bl_ui.properties_data_shaderfx
|
|
22
19
|
import bl_operators.object
|
|
23
|
-
import bl_ui.
|
|
20
|
+
import bl_ui.properties_object
|
|
21
|
+
import bl_ui.anim
|
|
24
22
|
import bl_ui.node_add_menu_texture
|
|
25
|
-
import bl_ui.properties_paint_common
|
|
26
|
-
import bl_ui.properties_physics_fluid
|
|
27
|
-
import bl_ui.properties_render
|
|
28
|
-
import bl_ui.space_view3d_toolbar
|
|
29
23
|
import bl_ui.properties_physics_common
|
|
30
|
-
import bl_ui.space_toolsystem_common
|
|
31
|
-
import bl_ui.properties_world
|
|
32
24
|
import bl_ui.generic_ui_list
|
|
33
|
-
import bl_ui.properties_physics_cloth
|
|
34
|
-
import bl_ui.space_sequencer
|
|
35
|
-
import bl_ui.space_time
|
|
36
|
-
import bl_ui.space_console
|
|
37
|
-
import bl_operators.freestyle
|
|
38
|
-
import bl_ui.node_add_menu_compositor
|
|
39
|
-
import bl_ui.space_clip
|
|
40
|
-
import bl_operators.constraint
|
|
41
|
-
import bl_operators.presets
|
|
42
|
-
import bl_ui.space_toolsystem_toolbar
|
|
43
25
|
import bl_ui.space_filebrowser
|
|
44
|
-
import bl_ui.
|
|
45
|
-
import bl_ui.
|
|
46
|
-
import bl_ui.space_text
|
|
47
|
-
import bl_ui.properties_data_curves
|
|
26
|
+
import bl_ui.properties_view_layer
|
|
27
|
+
import bl_ui.node_add_menu_geometry
|
|
48
28
|
import bl_ui.properties_workspace
|
|
49
|
-
import bl_ui.
|
|
50
|
-
import bl_ui.properties_data_mesh
|
|
51
|
-
import bl_ui.properties_collection
|
|
52
|
-
import bl_ui.space_outliner
|
|
53
|
-
import bl_ui.asset_shelf
|
|
54
|
-
import bl_ui.properties_data_curve
|
|
55
|
-
import bl_ui.properties_data_pointcloud
|
|
56
|
-
import bl_ui.node_add_menu
|
|
29
|
+
import bl_ui.node_add_menu_compositor
|
|
57
30
|
import bl_operators.file
|
|
58
|
-
import bl_ui.
|
|
59
|
-
import bl_ui.
|
|
60
|
-
import bl_ui.
|
|
61
|
-
import bl_ui.
|
|
62
|
-
import bl_ui.
|
|
63
|
-
import
|
|
64
|
-
import bl_ui.
|
|
65
|
-
import bl_ui.
|
|
31
|
+
import bl_ui.properties_data_modifier
|
|
32
|
+
import bl_ui.space_statusbar
|
|
33
|
+
import bl_ui.properties_data_speaker
|
|
34
|
+
import bl_ui.properties_data_curves
|
|
35
|
+
import bl_ui.properties_physics_geometry_nodes
|
|
36
|
+
import bl_operators.userpref
|
|
37
|
+
import bl_ui.properties_collection
|
|
38
|
+
import bl_ui.properties_paint_common
|
|
39
|
+
import bl_ui.space_info
|
|
40
|
+
import bl_operators.constraint
|
|
41
|
+
import bl_ui.space_userpref
|
|
42
|
+
import bl_ui.properties_physics_rigidbody
|
|
43
|
+
import bl_ui.space_time
|
|
44
|
+
import bl_ui.properties_data_armature
|
|
45
|
+
import bl_ui.space_topbar
|
|
66
46
|
import bl_operators.view3d
|
|
67
|
-
import bl_ui.
|
|
47
|
+
import bl_ui.properties_data_camera
|
|
48
|
+
import bl_ui.properties_texture
|
|
49
|
+
import bl_ui.properties_grease_pencil_common
|
|
68
50
|
import bl_ui.properties_data_metaball
|
|
69
|
-
import
|
|
70
|
-
import
|
|
71
|
-
import bl_ui.properties_physics_field
|
|
72
|
-
import bl_ui.properties_physics_geometry_nodes
|
|
73
|
-
import bl_ui.properties_data_lattice
|
|
74
|
-
import bl_ui.space_dopesheet
|
|
51
|
+
import bl_ui.asset_shelf
|
|
52
|
+
import bl_operators.wm
|
|
75
53
|
import bl_operators.clip
|
|
54
|
+
import bl_ui.properties_data_volume
|
|
55
|
+
import bl_ui.space_text
|
|
56
|
+
import bl_ui.properties_constraint
|
|
57
|
+
import bl_ui.space_image
|
|
58
|
+
import bl_ui.properties_data_lightprobe
|
|
59
|
+
import bl_ui.properties_material_gpencil
|
|
60
|
+
import bl_ui.space_node
|
|
76
61
|
import bl_ui.properties_freestyle
|
|
77
|
-
import bl_operators.wm
|
|
78
|
-
import bl_ui.properties_particle
|
|
79
|
-
import bl_ui.properties_physics_dynamicpaint
|
|
80
|
-
import bl_ui.properties_data_armature
|
|
81
|
-
import bl_ui.properties_data_empty
|
|
82
|
-
import bl_ui.properties_data_bone
|
|
83
|
-
import bl_operators.anim
|
|
84
62
|
import bl_ui.space_nla
|
|
85
|
-
import bl_ui.space_statusbar
|
|
86
|
-
import bl_ui.space_view3d
|
|
87
|
-
import bl_ui.properties_data_speaker
|
|
88
|
-
import bl_ui.properties_physics_rigidbody
|
|
89
|
-
import bl_ui.space_userpref
|
|
90
63
|
import bl_ui.space_properties
|
|
91
64
|
import bl_ui.properties_data_gpencil
|
|
92
|
-
import bl_ui.
|
|
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
|
|
77
|
+
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
|
+
import bl_ui.properties_physics_rigidbody_constraint
|
|
92
|
+
import bl_ui.space_toolsystem_toolbar
|
|
93
93
|
|
|
94
94
|
GenericType = typing.TypeVar("GenericType")
|
|
95
95
|
|
|
@@ -41168,7 +41168,7 @@ class UILayout(bpy_struct):
|
|
|
41168
41168
|
idname: typing.Union[str, typing.Any],
|
|
41169
41169
|
default_closed: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
41170
41170
|
):
|
|
41171
|
-
"""Creates a collapsable panel. Whether it is open or closed is stored in the region using the given idname
|
|
41171
|
+
"""Creates a collapsable panel. Whether it is open or closed is stored in the region using the given idname. This can only be used when the panel has the full width of the panel region available to it. So it can't be used in e.g. in a box or columns
|
|
41172
41172
|
|
|
41173
41173
|
:param idname: Identifier of the panel
|
|
41174
41174
|
:type idname: typing.Union[str, typing.Any]
|
|
@@ -41178,7 +41178,7 @@ class UILayout(bpy_struct):
|
|
|
41178
41178
|
...
|
|
41179
41179
|
|
|
41180
41180
|
def panel_prop(self, data: typing.Any, property: typing.Union[str, typing.Any]):
|
|
41181
|
-
"""Similar to `.panel(...)` but instead of storing whether it is open or closed in the region, it is stored in the provided boolean property. This should be used when multiple instances of the same panel can exist. For example one for every item in a collection property or list
|
|
41181
|
+
"""Similar to `.panel(...)` but instead of storing whether it is open or closed in the region, it is stored in the provided boolean property. This should be used when multiple instances of the same panel can exist. For example one for every item in a collection property or list. This can only be used when the panel has the full width of the panel region available to it. So it can't be used in e.g. in a box or columns
|
|
41182
41182
|
|
|
41183
41183
|
:param data: Data from which to take the open-state property
|
|
41184
41184
|
:type data: typing.Any
|
|
@@ -69396,6 +69396,225 @@ class GreasePencilLatticeModifier(Modifier, bpy_struct):
|
|
|
69396
69396
|
"""
|
|
69397
69397
|
...
|
|
69398
69398
|
|
|
69399
|
+
class GreasePencilLengthModifier(Modifier, bpy_struct):
|
|
69400
|
+
"""Stretch or shrink strokes"""
|
|
69401
|
+
|
|
69402
|
+
end_factor: float
|
|
69403
|
+
""" Added length to the end of each stroke relative to its length
|
|
69404
|
+
|
|
69405
|
+
:type: float
|
|
69406
|
+
"""
|
|
69407
|
+
|
|
69408
|
+
end_length: float
|
|
69409
|
+
""" Absolute added length to the end of each stroke
|
|
69410
|
+
|
|
69411
|
+
:type: float
|
|
69412
|
+
"""
|
|
69413
|
+
|
|
69414
|
+
invert_curvature: bool
|
|
69415
|
+
""" Invert the curvature of the stroke's extension
|
|
69416
|
+
|
|
69417
|
+
:type: bool
|
|
69418
|
+
"""
|
|
69419
|
+
|
|
69420
|
+
invert_layer_filter: bool
|
|
69421
|
+
""" Invert layer filter
|
|
69422
|
+
|
|
69423
|
+
:type: bool
|
|
69424
|
+
"""
|
|
69425
|
+
|
|
69426
|
+
invert_layer_pass_filter: bool
|
|
69427
|
+
""" Invert layer pass filter
|
|
69428
|
+
|
|
69429
|
+
:type: bool
|
|
69430
|
+
"""
|
|
69431
|
+
|
|
69432
|
+
invert_material_filter: bool
|
|
69433
|
+
""" Invert material filter
|
|
69434
|
+
|
|
69435
|
+
:type: bool
|
|
69436
|
+
"""
|
|
69437
|
+
|
|
69438
|
+
invert_material_pass_filter: bool
|
|
69439
|
+
""" Invert material pass filter
|
|
69440
|
+
|
|
69441
|
+
:type: bool
|
|
69442
|
+
"""
|
|
69443
|
+
|
|
69444
|
+
invert_vertex_group: bool
|
|
69445
|
+
""" Invert vertex group weights
|
|
69446
|
+
|
|
69447
|
+
:type: bool
|
|
69448
|
+
"""
|
|
69449
|
+
|
|
69450
|
+
layer_filter: typing.Union[str, typing.Any]
|
|
69451
|
+
""" Layer name
|
|
69452
|
+
|
|
69453
|
+
:type: typing.Union[str, typing.Any]
|
|
69454
|
+
"""
|
|
69455
|
+
|
|
69456
|
+
layer_pass_filter: int
|
|
69457
|
+
""" Layer pass filter
|
|
69458
|
+
|
|
69459
|
+
:type: int
|
|
69460
|
+
"""
|
|
69461
|
+
|
|
69462
|
+
material_filter: "Material"
|
|
69463
|
+
""" Material used for filtering
|
|
69464
|
+
|
|
69465
|
+
:type: 'Material'
|
|
69466
|
+
"""
|
|
69467
|
+
|
|
69468
|
+
material_pass_filter: int
|
|
69469
|
+
""" Material pass
|
|
69470
|
+
|
|
69471
|
+
:type: int
|
|
69472
|
+
"""
|
|
69473
|
+
|
|
69474
|
+
max_angle: float
|
|
69475
|
+
""" Ignore points on the stroke that deviate from their neighbors by more than this angle when determining the extrapolation shape
|
|
69476
|
+
|
|
69477
|
+
:type: float
|
|
69478
|
+
"""
|
|
69479
|
+
|
|
69480
|
+
mode: typing.Union[str, int]
|
|
69481
|
+
""" Mode to define length * ``RELATIVE`` Relative -- Length in ratio to the stroke's length. * ``ABSOLUTE`` Absolute -- Length in geometry space.
|
|
69482
|
+
|
|
69483
|
+
:type: typing.Union[str, int]
|
|
69484
|
+
"""
|
|
69485
|
+
|
|
69486
|
+
open_curvature_panel: bool
|
|
69487
|
+
"""
|
|
69488
|
+
|
|
69489
|
+
:type: bool
|
|
69490
|
+
"""
|
|
69491
|
+
|
|
69492
|
+
open_influence_panel: bool
|
|
69493
|
+
"""
|
|
69494
|
+
|
|
69495
|
+
:type: bool
|
|
69496
|
+
"""
|
|
69497
|
+
|
|
69498
|
+
open_random_panel: bool
|
|
69499
|
+
"""
|
|
69500
|
+
|
|
69501
|
+
:type: bool
|
|
69502
|
+
"""
|
|
69503
|
+
|
|
69504
|
+
overshoot_factor: float
|
|
69505
|
+
""" Defines what portion of the stroke is used for the calculation of the extension
|
|
69506
|
+
|
|
69507
|
+
:type: float
|
|
69508
|
+
"""
|
|
69509
|
+
|
|
69510
|
+
point_density: float
|
|
69511
|
+
""" Multiplied by Start/End for the total added point count
|
|
69512
|
+
|
|
69513
|
+
:type: float
|
|
69514
|
+
"""
|
|
69515
|
+
|
|
69516
|
+
random_end_factor: float
|
|
69517
|
+
""" Size of random length added to the end of each stroke
|
|
69518
|
+
|
|
69519
|
+
:type: float
|
|
69520
|
+
"""
|
|
69521
|
+
|
|
69522
|
+
random_offset: float
|
|
69523
|
+
""" Smoothly offset each stroke's random value
|
|
69524
|
+
|
|
69525
|
+
:type: float
|
|
69526
|
+
"""
|
|
69527
|
+
|
|
69528
|
+
random_start_factor: float
|
|
69529
|
+
""" Size of random length added to the start of each stroke
|
|
69530
|
+
|
|
69531
|
+
:type: float
|
|
69532
|
+
"""
|
|
69533
|
+
|
|
69534
|
+
seed: int
|
|
69535
|
+
""" Random seed
|
|
69536
|
+
|
|
69537
|
+
:type: int
|
|
69538
|
+
"""
|
|
69539
|
+
|
|
69540
|
+
segment_influence: float
|
|
69541
|
+
""" Factor to determine how much the length of the individual segments should influence the final computed curvature. Higher factors makes small segments influence the overall curvature less
|
|
69542
|
+
|
|
69543
|
+
:type: float
|
|
69544
|
+
"""
|
|
69545
|
+
|
|
69546
|
+
start_factor: float
|
|
69547
|
+
""" Added length to the start of each stroke relative to its length
|
|
69548
|
+
|
|
69549
|
+
:type: float
|
|
69550
|
+
"""
|
|
69551
|
+
|
|
69552
|
+
start_length: float
|
|
69553
|
+
""" Absolute added length to the start of each stroke
|
|
69554
|
+
|
|
69555
|
+
:type: float
|
|
69556
|
+
"""
|
|
69557
|
+
|
|
69558
|
+
step: int
|
|
69559
|
+
""" Number of frames between randomization steps
|
|
69560
|
+
|
|
69561
|
+
:type: int
|
|
69562
|
+
"""
|
|
69563
|
+
|
|
69564
|
+
use_curvature: bool
|
|
69565
|
+
""" Follow the curvature of the stroke
|
|
69566
|
+
|
|
69567
|
+
:type: bool
|
|
69568
|
+
"""
|
|
69569
|
+
|
|
69570
|
+
use_layer_pass_filter: bool
|
|
69571
|
+
""" Use layer pass filter
|
|
69572
|
+
|
|
69573
|
+
:type: bool
|
|
69574
|
+
"""
|
|
69575
|
+
|
|
69576
|
+
use_material_pass_filter: bool
|
|
69577
|
+
""" Use material pass filter
|
|
69578
|
+
|
|
69579
|
+
:type: bool
|
|
69580
|
+
"""
|
|
69581
|
+
|
|
69582
|
+
use_random: bool
|
|
69583
|
+
""" Use random values over time
|
|
69584
|
+
|
|
69585
|
+
:type: bool
|
|
69586
|
+
"""
|
|
69587
|
+
|
|
69588
|
+
vertex_group_name: typing.Union[str, typing.Any]
|
|
69589
|
+
""" Vertex group name for modulating the deform
|
|
69590
|
+
|
|
69591
|
+
:type: typing.Union[str, typing.Any]
|
|
69592
|
+
"""
|
|
69593
|
+
|
|
69594
|
+
@classmethod
|
|
69595
|
+
def bl_rna_get_subclass(cls, id: typing.Optional[str], default=None) -> "Struct":
|
|
69596
|
+
"""
|
|
69597
|
+
|
|
69598
|
+
:param id: The RNA type identifier.
|
|
69599
|
+
:type id: typing.Optional[str]
|
|
69600
|
+
:rtype: 'Struct'
|
|
69601
|
+
:return: The RNA type or default when not found.
|
|
69602
|
+
"""
|
|
69603
|
+
...
|
|
69604
|
+
|
|
69605
|
+
@classmethod
|
|
69606
|
+
def bl_rna_get_subclass_py(
|
|
69607
|
+
cls, id: typing.Optional[str], default=None
|
|
69608
|
+
) -> typing.Any:
|
|
69609
|
+
"""
|
|
69610
|
+
|
|
69611
|
+
:param id: The RNA type identifier.
|
|
69612
|
+
:type id: typing.Optional[str]
|
|
69613
|
+
:rtype: typing.Any
|
|
69614
|
+
:return: The class or default when not found.
|
|
69615
|
+
"""
|
|
69616
|
+
...
|
|
69617
|
+
|
|
69399
69618
|
class GreasePencilMirrorModifier(Modifier, bpy_struct):
|
|
69400
69619
|
invert_layer_filter: bool
|
|
69401
69620
|
""" Invert layer filter
|
|
@@ -69511,6 +69730,147 @@ class GreasePencilMirrorModifier(Modifier, bpy_struct):
|
|
|
69511
69730
|
"""
|
|
69512
69731
|
...
|
|
69513
69732
|
|
|
69733
|
+
class GreasePencilMultiplyModifier(Modifier, bpy_struct):
|
|
69734
|
+
"""Generate multiple strokes from one stroke"""
|
|
69735
|
+
|
|
69736
|
+
distance: float
|
|
69737
|
+
""" Distance of duplications
|
|
69738
|
+
|
|
69739
|
+
:type: float
|
|
69740
|
+
"""
|
|
69741
|
+
|
|
69742
|
+
duplicates: int
|
|
69743
|
+
""" How many copies of strokes be displayed
|
|
69744
|
+
|
|
69745
|
+
:type: int
|
|
69746
|
+
"""
|
|
69747
|
+
|
|
69748
|
+
fading_center: float
|
|
69749
|
+
""" Fade center
|
|
69750
|
+
|
|
69751
|
+
:type: float
|
|
69752
|
+
"""
|
|
69753
|
+
|
|
69754
|
+
fading_opacity: float
|
|
69755
|
+
""" Fade influence of stroke's opacity
|
|
69756
|
+
|
|
69757
|
+
:type: float
|
|
69758
|
+
"""
|
|
69759
|
+
|
|
69760
|
+
fading_thickness: float
|
|
69761
|
+
""" Fade influence of stroke's thickness
|
|
69762
|
+
|
|
69763
|
+
:type: float
|
|
69764
|
+
"""
|
|
69765
|
+
|
|
69766
|
+
invert_layer_filter: bool
|
|
69767
|
+
""" Invert layer filter
|
|
69768
|
+
|
|
69769
|
+
:type: bool
|
|
69770
|
+
"""
|
|
69771
|
+
|
|
69772
|
+
invert_layer_pass_filter: bool
|
|
69773
|
+
""" Invert layer pass filter
|
|
69774
|
+
|
|
69775
|
+
:type: bool
|
|
69776
|
+
"""
|
|
69777
|
+
|
|
69778
|
+
invert_material_filter: bool
|
|
69779
|
+
""" Invert material filter
|
|
69780
|
+
|
|
69781
|
+
:type: bool
|
|
69782
|
+
"""
|
|
69783
|
+
|
|
69784
|
+
invert_material_pass_filter: bool
|
|
69785
|
+
""" Invert material pass filter
|
|
69786
|
+
|
|
69787
|
+
:type: bool
|
|
69788
|
+
"""
|
|
69789
|
+
|
|
69790
|
+
layer_filter: typing.Union[str, typing.Any]
|
|
69791
|
+
""" Layer name
|
|
69792
|
+
|
|
69793
|
+
:type: typing.Union[str, typing.Any]
|
|
69794
|
+
"""
|
|
69795
|
+
|
|
69796
|
+
layer_pass_filter: int
|
|
69797
|
+
""" Layer pass filter
|
|
69798
|
+
|
|
69799
|
+
:type: int
|
|
69800
|
+
"""
|
|
69801
|
+
|
|
69802
|
+
material_filter: "Material"
|
|
69803
|
+
""" Material used for filtering
|
|
69804
|
+
|
|
69805
|
+
:type: 'Material'
|
|
69806
|
+
"""
|
|
69807
|
+
|
|
69808
|
+
material_pass_filter: int
|
|
69809
|
+
""" Material pass
|
|
69810
|
+
|
|
69811
|
+
:type: int
|
|
69812
|
+
"""
|
|
69813
|
+
|
|
69814
|
+
offset: float
|
|
69815
|
+
""" Offset of duplicates. -1 to 1: inner to outer
|
|
69816
|
+
|
|
69817
|
+
:type: float
|
|
69818
|
+
"""
|
|
69819
|
+
|
|
69820
|
+
open_fading_panel: bool
|
|
69821
|
+
"""
|
|
69822
|
+
|
|
69823
|
+
:type: bool
|
|
69824
|
+
"""
|
|
69825
|
+
|
|
69826
|
+
open_influence_panel: bool
|
|
69827
|
+
"""
|
|
69828
|
+
|
|
69829
|
+
:type: bool
|
|
69830
|
+
"""
|
|
69831
|
+
|
|
69832
|
+
use_fade: bool
|
|
69833
|
+
""" Fade the stroke thickness for each generated stroke
|
|
69834
|
+
|
|
69835
|
+
:type: bool
|
|
69836
|
+
"""
|
|
69837
|
+
|
|
69838
|
+
use_layer_pass_filter: bool
|
|
69839
|
+
""" Use layer pass filter
|
|
69840
|
+
|
|
69841
|
+
:type: bool
|
|
69842
|
+
"""
|
|
69843
|
+
|
|
69844
|
+
use_material_pass_filter: bool
|
|
69845
|
+
""" Use material pass filter
|
|
69846
|
+
|
|
69847
|
+
:type: bool
|
|
69848
|
+
"""
|
|
69849
|
+
|
|
69850
|
+
@classmethod
|
|
69851
|
+
def bl_rna_get_subclass(cls, id: typing.Optional[str], default=None) -> "Struct":
|
|
69852
|
+
"""
|
|
69853
|
+
|
|
69854
|
+
:param id: The RNA type identifier.
|
|
69855
|
+
:type id: typing.Optional[str]
|
|
69856
|
+
:rtype: 'Struct'
|
|
69857
|
+
:return: The RNA type or default when not found.
|
|
69858
|
+
"""
|
|
69859
|
+
...
|
|
69860
|
+
|
|
69861
|
+
@classmethod
|
|
69862
|
+
def bl_rna_get_subclass_py(
|
|
69863
|
+
cls, id: typing.Optional[str], default=None
|
|
69864
|
+
) -> typing.Any:
|
|
69865
|
+
"""
|
|
69866
|
+
|
|
69867
|
+
:param id: The RNA type identifier.
|
|
69868
|
+
:type id: typing.Optional[str]
|
|
69869
|
+
:rtype: typing.Any
|
|
69870
|
+
:return: The class or default when not found.
|
|
69871
|
+
"""
|
|
69872
|
+
...
|
|
69873
|
+
|
|
69514
69874
|
class GreasePencilNoiseModifier(Modifier, bpy_struct):
|
|
69515
69875
|
"""Noise effect modifier"""
|
|
69516
69876
|
|
bpy_extras/__init__.pyi
CHANGED
|
@@ -10,8 +10,8 @@ from . import keyconfig_utils
|
|
|
10
10
|
from . import object_utils
|
|
11
11
|
from . import anim_utils
|
|
12
12
|
from . import node_utils
|
|
13
|
-
from . import wm_utils
|
|
14
13
|
from . import extensions
|
|
14
|
+
from . import wm_utils
|
|
15
15
|
from . import bmesh_utils
|
|
16
16
|
from . import node_shader_utils
|
|
17
17
|
|
|
@@ -72,14 +72,14 @@ def bake_action_objects(
|
|
|
72
72
|
|
|
73
73
|
def bake_action_objects_iter(
|
|
74
74
|
object_action_pairs: typing.Union[
|
|
75
|
-
"bpy.types.
|
|
75
|
+
"bpy.types.Sequence", "bpy.types.Action", "bpy.types.Object"
|
|
76
76
|
],
|
|
77
77
|
bake_o,
|
|
78
78
|
):
|
|
79
79
|
"""An coroutine that bakes actions for multiple objects.
|
|
80
80
|
|
|
81
81
|
:param object_action_pairs: Sequence of object action tuples, action is the destination for the baked data. When None a new action will be created.
|
|
82
|
-
:type object_action_pairs: typing.Union['bpy.types.
|
|
82
|
+
:type object_action_pairs: typing.Union['bpy.types.Sequence', 'bpy.types.Action', 'bpy.types.Object']
|
|
83
83
|
"""
|
|
84
84
|
|
|
85
85
|
...
|
|
@@ -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=eUAX4ECfFMBcbsxVAjw2MAGZY-uoQ-MJbQ5LMItzj9Y,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=0-xLsull8pzSb90P_8ZzjrElETveCB7wOWjziHN915U,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=JFmCritsbNmnxwZgK1e1B0_jMN5zxD8CCqpNyudRgM0,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=qsQL5amnaOUOAlvLvqybJpItPSrcNrdbjzW2tCPga0k,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=D3WgbvfwOlLgInGAj-i7oSJLWKKOCba2tQzNiS329kM,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=i4WPbQAT32VEjTtcI-yxtWD37s_qeu1kj--iEbEvrBc,324
|
|
173
173
|
bpy/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
174
|
-
bpy/app/__init__.pyi,sha256
|
|
174
|
+
bpy/app/__init__.pyi,sha256=d2G4Jt2ldUwc5s1wffDaY8pi0TPeq9z681BwhcWqWok,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=my9dfJJP8OcG708wyDt4QhCGM90GsO4RE_uRg96m9Jk,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=jPGUt1iaT_M_-ACgN-DrXE3jKRFlLFPIOI_1E6N6Ges,34701
|
|
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=1fsf4IonJfIyrjvSIdtaqE18LdVC3Ow0pC4nnkVU1W0,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,13 +257,13 @@ 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=NOyi-psy_bUHGYyrKwqCt6sdgoeCCtDYVAmkyIHiO5A,3475299
|
|
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=rss5R4aKN6749P79ycv97dOyRsBHXN2Szxzu5H0qTgc,437
|
|
265
265
|
bpy_extras/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
266
|
-
bpy_extras/anim_utils/__init__.pyi,sha256=
|
|
266
|
+
bpy_extras/anim_utils/__init__.pyi,sha256=qJdsqC4jdgo7jEfAnojiNC3ktIxMd8nmnCL9XWJmYCA,2629
|
|
267
267
|
bpy_extras/asset_utils/__init__.pyi,sha256=ugLnZGwgepm58mWHS4cS_bmum9v9La2a1wKpg5VShHY,362
|
|
268
268
|
bpy_extras/bmesh_utils/__init__.pyi,sha256=OmimPHBCsqCSKIbo4dLetnfgEiDapXJJ6Ys-G_d9cwQ,162
|
|
269
269
|
bpy_extras/extensions/__init__.pyi,sha256=bdsIrb_l0d2w4d7-VdYRHrY1iSferwAUc8qAkJTmdtM,100
|
|
@@ -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-20240216.dist-info/METADATA,sha256=G-h8wkwn0il2Oue9JFNGpRHsndYW4aqsQ6k5I6Cqm44,7008
|
|
347
|
+
fake_bpy_module-20240216.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
|
348
|
+
fake_bpy_module-20240216.dist-info/top_level.txt,sha256=7r84ZPNSbRAopA50b0pH3uZ2ysQ2IvkuP0uXadxl7gs,495
|
|
349
|
+
fake_bpy_module-20240216.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|