fake-bpy-module 20240131__py3-none-any.whl → 20240201__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_i18n_utils/__init__.pyi +2 -2
- bl_keymap_utils/__init__.pyi +3 -3
- bl_operators/__init__.pyi +22 -22
- bl_ui/__init__.pyi +62 -62
- bl_ui/space_image/__init__.pyi +2 -2
- bl_ui_utils/__init__.pyi +1 -1
- bmesh/__init__.pyi +1 -1
- bpy/__init__.pyi +1 -1
- bpy/app/__init__.pyi +2 -2
- bpy/ops/__init__.pyi +61 -61
- bpy/ops/image/__init__.pyi +20 -0
- bpy/types/__init__.pyi +147 -117
- bpy_extras/__init__.pyi +7 -7
- {fake_bpy_module-20240131.dist-info → fake_bpy_module-20240201.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240131.dist-info → fake_bpy_module-20240201.dist-info}/RECORD +21 -21
- freestyle/__init__.pyi +2 -2
- gpu/__init__.pyi +4 -4
- mathutils/__init__.pyi +1 -1
- rna_prop_ui/__init__.pyi +1 -0
- {fake_bpy_module-20240131.dist-info → fake_bpy_module-20240201.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240131.dist-info → fake_bpy_module-20240201.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
3
|
from . import utils_cli
|
|
4
|
+
from . import bl_extract_messages
|
|
4
5
|
from . import settings
|
|
5
6
|
from . import utils
|
|
6
|
-
from . import bl_extract_messages
|
|
7
|
-
from . import merge_po
|
|
8
7
|
from . import utils_rtl
|
|
8
|
+
from . import merge_po
|
|
9
9
|
from . import utils_languages_menu
|
|
10
10
|
|
|
11
11
|
GenericType = typing.TypeVar("GenericType")
|
bl_keymap_utils/__init__.pyi
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import sys
|
|
2
2
|
import typing
|
|
3
|
-
from . import
|
|
4
|
-
from . import keymap_hierarchy
|
|
3
|
+
from . import io
|
|
5
4
|
from . import platform_helpers
|
|
5
|
+
from . import versioning
|
|
6
6
|
from . import keymap_from_toolbar
|
|
7
|
-
from . import
|
|
7
|
+
from . import keymap_hierarchy
|
|
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
|
|
4
|
-
from . import assets
|
|
5
|
-
from . import screen_play_rendered_anim
|
|
6
|
-
from . import sequencer
|
|
7
|
-
from . import mesh
|
|
8
|
-
from . import presets
|
|
9
|
-
from . import anim
|
|
10
|
-
from . import object_align
|
|
3
|
+
from . import freestyle
|
|
11
4
|
from . import wm
|
|
5
|
+
from . import object_align
|
|
6
|
+
from . import uvcalc_follow_active
|
|
7
|
+
from . import node
|
|
12
8
|
from . import uvcalc_lightmap
|
|
13
|
-
from . import bmesh
|
|
14
|
-
from . import file
|
|
15
|
-
from . import userpref
|
|
16
9
|
from . import rigidbody
|
|
10
|
+
from . import screen_play_rendered_anim
|
|
11
|
+
from . import clip
|
|
12
|
+
from . import spreadsheet
|
|
13
|
+
from . import uvcalc_transform
|
|
14
|
+
from . import anim
|
|
15
|
+
from . import presets
|
|
16
|
+
from . import add_mesh_torus
|
|
17
|
+
from . import console
|
|
18
|
+
from . import userpref
|
|
19
|
+
from . import file
|
|
17
20
|
from . import object_randomize_transform
|
|
18
|
-
from . import
|
|
21
|
+
from . import mesh
|
|
22
|
+
from . import image
|
|
23
|
+
from . import bmesh
|
|
24
|
+
from . import assets
|
|
19
25
|
from . import geometry_nodes
|
|
26
|
+
from . import constraint
|
|
27
|
+
from . import sequencer
|
|
28
|
+
from . import vertexpaint_dirt
|
|
29
|
+
from . import object_quick_effects
|
|
20
30
|
from . import object
|
|
21
31
|
from . import view3d
|
|
22
|
-
from . import freestyle
|
|
23
|
-
from . import object_quick_effects
|
|
24
|
-
from . import vertexpaint_dirt
|
|
25
|
-
from . import constraint
|
|
26
|
-
from . import clip
|
|
27
|
-
from . import add_mesh_torus
|
|
28
|
-
from . import console
|
|
29
|
-
from . import uvcalc_follow_active
|
|
30
|
-
from . import uvcalc_transform
|
|
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 space_topbar
|
|
6
|
-
from . import space_outliner
|
|
7
|
-
from . import space_console
|
|
8
|
-
from . import properties_texture
|
|
9
|
-
from . import node_add_menu_geometry
|
|
10
5
|
from . import node_add_menu_shader
|
|
11
|
-
from . import
|
|
12
|
-
from . import space_userpref
|
|
13
|
-
from . import space_view3d_toolbar
|
|
14
|
-
from . import properties_animviz
|
|
15
|
-
from . import properties_workspace
|
|
16
|
-
from . import properties_physics_rigidbody_constraint
|
|
17
|
-
from . import properties_constraint
|
|
6
|
+
from . import properties_data_light
|
|
18
7
|
from . import space_graph
|
|
19
|
-
from . import
|
|
20
|
-
from . import
|
|
21
|
-
from . import
|
|
22
|
-
from . import
|
|
23
|
-
from . import utils
|
|
24
|
-
from . import properties_freestyle
|
|
25
|
-
from . import properties_data_lightprobe
|
|
8
|
+
from . import properties_data_gpencil
|
|
9
|
+
from . import space_node
|
|
10
|
+
from . import properties_data_shaderfx
|
|
11
|
+
from . import properties_object
|
|
26
12
|
from . import properties_physics_dynamicpaint
|
|
27
|
-
from . import
|
|
28
|
-
from . import
|
|
29
|
-
from . import
|
|
30
|
-
from . import
|
|
31
|
-
from . import
|
|
13
|
+
from . import space_properties
|
|
14
|
+
from . import space_info
|
|
15
|
+
from . import properties_data_curves
|
|
16
|
+
from . import properties_collection
|
|
17
|
+
from . import space_console
|
|
18
|
+
from . import node_add_menu_compositor
|
|
19
|
+
from . import properties_scene
|
|
20
|
+
from . import space_sequencer
|
|
21
|
+
from . import properties_texture
|
|
32
22
|
from . import properties_physics_geometry_nodes
|
|
23
|
+
from . import space_nla
|
|
24
|
+
from . import properties_data_metaball
|
|
25
|
+
from . import properties_physics_rigidbody
|
|
26
|
+
from . import space_text
|
|
33
27
|
from . import properties_data_lattice
|
|
34
|
-
from . import
|
|
35
|
-
from . import
|
|
36
|
-
from . import
|
|
37
|
-
from . import space_toolsystem_toolbar
|
|
28
|
+
from . import space_image
|
|
29
|
+
from . import space_outliner
|
|
30
|
+
from . import properties_data_bone
|
|
38
31
|
from . import space_statusbar
|
|
32
|
+
from . import node_add_menu_texture
|
|
33
|
+
from . import space_view3d
|
|
34
|
+
from . import properties_data_speaker
|
|
35
|
+
from . import properties_physics_fluid
|
|
36
|
+
from . import space_toolsystem_common
|
|
37
|
+
from . import space_view3d_toolbar
|
|
38
|
+
from . import properties_paint_common
|
|
39
|
+
from . import properties_constraint
|
|
40
|
+
from . import properties_data_mesh
|
|
41
|
+
from . import space_spreadsheet
|
|
42
|
+
from . import properties_data_modifier
|
|
43
|
+
from . import space_userpref
|
|
39
44
|
from . import space_filebrowser
|
|
40
|
-
from . import
|
|
45
|
+
from . import properties_material_gpencil
|
|
46
|
+
from . import space_clip
|
|
47
|
+
from . import properties_physics_cloth
|
|
48
|
+
from . import node_add_menu_geometry
|
|
49
|
+
from . import properties_data_curve
|
|
50
|
+
from . import properties_render
|
|
51
|
+
from . import properties_particle
|
|
52
|
+
from . import properties_data_empty
|
|
53
|
+
from . import properties_physics_softbody
|
|
54
|
+
from . import node_add_menu
|
|
55
|
+
from . import asset_shelf
|
|
56
|
+
from . import properties_physics_common
|
|
57
|
+
from . import properties_data_lightprobe
|
|
58
|
+
from . import properties_animviz
|
|
59
|
+
from . import properties_output
|
|
60
|
+
from . import properties_view_layer
|
|
41
61
|
from . import space_dopesheet
|
|
42
|
-
from . import
|
|
62
|
+
from . import properties_physics_rigidbody_constraint
|
|
63
|
+
from . import properties_data_armature
|
|
64
|
+
from . import properties_material
|
|
65
|
+
from . import utils
|
|
66
|
+
from . import anim
|
|
43
67
|
from . import properties_physics_field
|
|
44
|
-
from . import
|
|
68
|
+
from . import properties_workspace
|
|
69
|
+
from . import generic_ui_list
|
|
45
70
|
from . import properties_data_volume
|
|
46
|
-
from . import properties_render
|
|
47
|
-
from . import properties_data_curves
|
|
48
|
-
from . import properties_object
|
|
49
|
-
from . import space_view3d
|
|
50
|
-
from . import node_add_menu
|
|
51
|
-
from . import space_info
|
|
52
|
-
from . import properties_data_modifier
|
|
53
|
-
from . import properties_world
|
|
54
|
-
from . import properties_particle
|
|
55
|
-
from . import node_add_menu_texture
|
|
56
|
-
from . import properties_data_mesh
|
|
57
|
-
from . import space_spreadsheet
|
|
58
|
-
from . import properties_data_grease_pencil
|
|
59
|
-
from . import space_nla
|
|
60
71
|
from . import properties_grease_pencil_common
|
|
61
|
-
from . import
|
|
62
|
-
from . import space_node
|
|
63
|
-
from . import properties_data_speaker
|
|
64
|
-
from . import properties_data_shaderfx
|
|
65
|
-
from . import properties_data_bone
|
|
72
|
+
from . import space_topbar
|
|
66
73
|
from . import properties_data_pointcloud
|
|
67
|
-
from . import
|
|
68
|
-
from . import
|
|
69
|
-
from . import
|
|
70
|
-
from . import properties_collection
|
|
71
|
-
from . import node_add_menu_compositor
|
|
72
|
-
from . import properties_scene
|
|
73
|
-
from . import properties_data_light
|
|
74
|
-
from . import properties_data_gpencil
|
|
75
|
-
from . import properties_view_layer
|
|
74
|
+
from . import properties_data_grease_pencil
|
|
75
|
+
from . import properties_world
|
|
76
|
+
from . import space_toolsystem_toolbar
|
|
76
77
|
from . import properties_data_camera
|
|
77
|
-
from . import
|
|
78
|
+
from . import properties_freestyle
|
|
78
79
|
from . import space_time
|
|
79
|
-
from . import
|
|
80
|
-
from . import space_sequencer
|
|
80
|
+
from . import properties_mask_common
|
|
81
81
|
|
|
82
82
|
GenericType = typing.TypeVar("GenericType")
|
|
83
83
|
|
bl_ui/space_image/__init__.pyi
CHANGED
|
@@ -204,7 +204,7 @@ class IMAGE_MT_image(bpy_types.Menu, bpy_types._GenericUI):
|
|
|
204
204
|
def type_recast(self): ...
|
|
205
205
|
def values(self): ...
|
|
206
206
|
|
|
207
|
-
class
|
|
207
|
+
class IMAGE_MT_image_invert(bpy_types.Menu, bpy_types._GenericUI):
|
|
208
208
|
bl_label: typing.Any
|
|
209
209
|
bl_rna: typing.Any
|
|
210
210
|
id_data: typing.Any
|
|
@@ -252,7 +252,7 @@ class IMAGE_MT_image_flip(bpy_types.Menu, bpy_types._GenericUI):
|
|
|
252
252
|
def type_recast(self): ...
|
|
253
253
|
def values(self): ...
|
|
254
254
|
|
|
255
|
-
class
|
|
255
|
+
class IMAGE_MT_image_transform(bpy_types.Menu, bpy_types._GenericUI):
|
|
256
256
|
bl_label: typing.Any
|
|
257
257
|
bl_rna: typing.Any
|
|
258
258
|
id_data: typing.Any
|
bl_ui_utils/__init__.pyi
CHANGED
bmesh/__init__.pyi
CHANGED
bpy/__init__.pyi
CHANGED
|
@@ -5,10 +5,10 @@ import bpy.types
|
|
|
5
5
|
from . import types
|
|
6
6
|
from . import ops
|
|
7
7
|
from . import utils
|
|
8
|
+
from . import props
|
|
8
9
|
from . import app
|
|
9
10
|
from . import msgbus
|
|
10
11
|
from . import path
|
|
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
|
|
6
|
-
from . import fluid
|
|
7
|
-
from . import export_anim
|
|
8
|
-
from . import paint
|
|
9
|
-
from . import mball
|
|
3
|
+
from . import import_anim
|
|
4
|
+
from . import dpaint
|
|
5
|
+
from . import uv
|
|
10
6
|
from . import node
|
|
11
|
-
from . import boid
|
|
12
|
-
from . import world
|
|
13
|
-
from . import graph
|
|
14
|
-
from . import surface
|
|
15
7
|
from . import image
|
|
16
|
-
from . import
|
|
8
|
+
from . import boid
|
|
9
|
+
from . import anim
|
|
10
|
+
from . import nla
|
|
11
|
+
from . import file
|
|
12
|
+
from . import paintcurve
|
|
17
13
|
from . import view3d
|
|
18
|
-
from . import sequencer
|
|
19
14
|
from . import palette
|
|
20
|
-
from . import
|
|
21
|
-
from . import
|
|
22
|
-
from . import
|
|
23
|
-
from . import
|
|
15
|
+
from . import transform
|
|
16
|
+
from . import camera
|
|
17
|
+
from . import rigidbody
|
|
18
|
+
from . import graph
|
|
19
|
+
from . import gpencil
|
|
24
20
|
from . import mask
|
|
25
|
-
from . import
|
|
26
|
-
from . import
|
|
27
|
-
from . import
|
|
21
|
+
from . import export_mesh
|
|
22
|
+
from . import export_anim
|
|
23
|
+
from . import brush
|
|
24
|
+
from . import sculpt
|
|
25
|
+
from . import workspace
|
|
28
26
|
from . import action
|
|
29
|
-
from . import
|
|
27
|
+
from . import text
|
|
28
|
+
from . import mball
|
|
29
|
+
from . import armature
|
|
30
|
+
from . import object
|
|
30
31
|
from . import grease_pencil
|
|
32
|
+
from . import texture
|
|
33
|
+
from . import gizmogroup
|
|
34
|
+
from . import mesh
|
|
35
|
+
from . import scene
|
|
36
|
+
from . import buttons
|
|
31
37
|
from . import script
|
|
38
|
+
from . import world
|
|
39
|
+
from . import info
|
|
40
|
+
from . import import_mesh
|
|
41
|
+
from . import sequencer
|
|
42
|
+
from . import spreadsheet
|
|
43
|
+
from . import marker
|
|
44
|
+
from . import export_scene
|
|
45
|
+
from . import preferences
|
|
46
|
+
from . import geometry
|
|
47
|
+
from . import ed
|
|
48
|
+
from . import render
|
|
49
|
+
from . import import_scene
|
|
50
|
+
from . import paint
|
|
51
|
+
from . import curves
|
|
32
52
|
from . import uilist
|
|
53
|
+
from . import screen
|
|
54
|
+
from . import cycles
|
|
55
|
+
from . import poselib
|
|
56
|
+
from . import cachefile
|
|
33
57
|
from . import wm
|
|
34
|
-
from . import
|
|
35
|
-
from . import
|
|
36
|
-
from . import
|
|
37
|
-
from . import
|
|
38
|
-
from . import
|
|
39
|
-
from . import
|
|
40
|
-
from . import
|
|
41
|
-
from . import
|
|
42
|
-
from . import brush
|
|
43
|
-
from . import clip
|
|
58
|
+
from . import lattice
|
|
59
|
+
from . import font
|
|
60
|
+
from . import ptcache
|
|
61
|
+
from . import particle
|
|
62
|
+
from . import ui
|
|
63
|
+
from . import import_curve
|
|
64
|
+
from . import view2d
|
|
65
|
+
from . import surface
|
|
44
66
|
from . import outliner
|
|
45
|
-
from . import
|
|
46
|
-
from . import file
|
|
67
|
+
from . import sound
|
|
47
68
|
from . import text_editor
|
|
48
|
-
from . import transform
|
|
49
|
-
from . import sculpt
|
|
50
|
-
from . import export_mesh
|
|
51
|
-
from . import screen
|
|
52
69
|
from . import collection
|
|
53
|
-
from . import
|
|
54
|
-
from . import
|
|
55
|
-
from . import
|
|
56
|
-
from . import
|
|
57
|
-
from . import
|
|
58
|
-
from . import
|
|
59
|
-
from . import font
|
|
70
|
+
from . import sculpt_curves
|
|
71
|
+
from . import curve
|
|
72
|
+
from . import cloth
|
|
73
|
+
from . import console
|
|
74
|
+
from . import fluid
|
|
75
|
+
from . import clip
|
|
60
76
|
from . import pose
|
|
61
|
-
from . import nla
|
|
62
77
|
from . import constraint
|
|
63
|
-
from . import
|
|
64
|
-
from . import anim
|
|
65
|
-
from . import poselib
|
|
66
|
-
from . import cloth
|
|
67
|
-
from . import cycles
|
|
68
|
-
from . import import_mesh
|
|
69
|
-
from . import rigidbody
|
|
70
|
-
from . import curve
|
|
71
|
-
from . import texture
|
|
72
|
-
from . import view2d
|
|
73
|
-
from . import import_curve
|
|
78
|
+
from . import asset
|
|
74
79
|
from . import material
|
|
75
|
-
from . import lattice
|
|
76
|
-
from . import buttons
|
|
77
|
-
from . import import_anim
|
|
78
|
-
from . import mesh
|
|
79
|
-
from . import text
|
|
80
80
|
|
|
81
81
|
GenericType = typing.TypeVar("GenericType")
|
bpy/ops/image/__init__.pyi
CHANGED
|
@@ -729,6 +729,26 @@ def resize(
|
|
|
729
729
|
|
|
730
730
|
...
|
|
731
731
|
|
|
732
|
+
def rotate_orthogonal(
|
|
733
|
+
override_context: typing.Optional[
|
|
734
|
+
typing.Union[typing.Dict, "bpy.types.Context"]
|
|
735
|
+
] = None,
|
|
736
|
+
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
737
|
+
undo: typing.Optional[bool] = None,
|
|
738
|
+
*,
|
|
739
|
+
degrees: typing.Optional[typing.Any] = "90",
|
|
740
|
+
):
|
|
741
|
+
"""Rotate the image
|
|
742
|
+
|
|
743
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
744
|
+
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
745
|
+
:type undo: typing.Optional[bool]
|
|
746
|
+
:param degrees: Degrees, Amount of rotation in degrees (90, 180, 270) * ``90`` 90 Degrees -- Rotate 90 degrees clockwise. * ``180`` 180 Degrees -- Rotate 180 degrees clockwise. * ``270`` 270 Degrees -- Rotate 270 degrees clockwise.
|
|
747
|
+
:type degrees: typing.Optional[typing.Any]
|
|
748
|
+
"""
|
|
749
|
+
|
|
750
|
+
...
|
|
751
|
+
|
|
732
752
|
def sample(
|
|
733
753
|
override_context: typing.Optional[
|
|
734
754
|
typing.Union[typing.Dict, "bpy.types.Context"]
|
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_ui.space_topbar
|
|
6
|
-
import bl_ui.space_outliner
|
|
7
|
-
import bl_ui.space_console
|
|
8
|
-
import bl_ui.properties_texture
|
|
9
|
-
import bl_ui.node_add_menu_geometry
|
|
10
|
-
import bl_operators.assets
|
|
11
5
|
import bl_ui.node_add_menu_shader
|
|
12
|
-
import bl_ui.
|
|
13
|
-
import
|
|
14
|
-
import bl_operators.presets
|
|
15
|
-
import bl_ui.space_view3d_toolbar
|
|
16
|
-
import bl_operators.anim
|
|
17
|
-
import bl_ui.properties_workspace
|
|
18
|
-
import bl_ui.properties_physics_rigidbody_constraint
|
|
19
|
-
import bl_ui.properties_constraint
|
|
20
|
-
import bl_ui.space_graph
|
|
21
|
-
import bl_ui.properties_physics_rigidbody
|
|
6
|
+
import bl_ui.properties_data_light
|
|
7
|
+
import bl_operators.freestyle
|
|
22
8
|
import bl_operators.wm
|
|
23
|
-
import bl_ui.
|
|
24
|
-
import bl_ui.
|
|
25
|
-
import bl_ui.
|
|
26
|
-
import bl_ui.
|
|
27
|
-
import bl_ui.
|
|
9
|
+
import bl_ui.space_graph
|
|
10
|
+
import bl_ui.properties_data_gpencil
|
|
11
|
+
import bl_ui.space_node
|
|
12
|
+
import bl_ui.properties_data_shaderfx
|
|
13
|
+
import bl_ui.properties_object
|
|
28
14
|
import bl_ui.properties_physics_dynamicpaint
|
|
29
|
-
import
|
|
30
|
-
import bl_ui.
|
|
31
|
-
import bl_ui.
|
|
32
|
-
import bl_ui.
|
|
33
|
-
import
|
|
15
|
+
import bl_operators.node
|
|
16
|
+
import bl_ui.space_properties
|
|
17
|
+
import bl_ui.space_info
|
|
18
|
+
import bl_ui.properties_data_curves
|
|
19
|
+
import bl_operators.clip
|
|
20
|
+
import bl_operators.spreadsheet
|
|
21
|
+
import bl_ui.properties_collection
|
|
22
|
+
import bl_ui.space_console
|
|
23
|
+
import bl_ui.node_add_menu_compositor
|
|
24
|
+
import bl_ui.properties_scene
|
|
25
|
+
import bl_ui.space_sequencer
|
|
26
|
+
import bl_ui.properties_texture
|
|
34
27
|
import bl_ui.properties_physics_geometry_nodes
|
|
28
|
+
import bl_ui.space_nla
|
|
29
|
+
import bl_ui.properties_data_metaball
|
|
30
|
+
import bl_ui.properties_physics_rigidbody
|
|
31
|
+
import bl_ui.space_text
|
|
32
|
+
import bl_operators.anim
|
|
33
|
+
import bl_operators.presets
|
|
35
34
|
import bl_ui.properties_data_lattice
|
|
36
|
-
import bl_ui.
|
|
37
|
-
import bl_ui.
|
|
38
|
-
import bl_ui
|
|
39
|
-
import bl_ui.
|
|
35
|
+
import bl_ui.space_image
|
|
36
|
+
import bl_ui.space_outliner
|
|
37
|
+
import bl_ui
|
|
38
|
+
import bl_ui.properties_data_bone
|
|
40
39
|
import bl_ui.space_statusbar
|
|
40
|
+
import bl_ui.node_add_menu_texture
|
|
41
|
+
import bl_ui.space_view3d
|
|
42
|
+
import bl_ui.properties_data_speaker
|
|
43
|
+
import bl_ui.properties_physics_fluid
|
|
44
|
+
import bl_operators.userpref
|
|
45
|
+
import bl_operators.file
|
|
46
|
+
import bl_ui.space_toolsystem_common
|
|
47
|
+
import bl_ui.space_view3d_toolbar
|
|
48
|
+
import bl_ui.properties_paint_common
|
|
49
|
+
import bl_ui.properties_constraint
|
|
50
|
+
import bl_ui.properties_data_mesh
|
|
51
|
+
import bl_ui.space_spreadsheet
|
|
52
|
+
import bl_ui.properties_data_modifier
|
|
53
|
+
import bl_ui.space_userpref
|
|
54
|
+
import bl_operators.assets
|
|
41
55
|
import bl_ui.space_filebrowser
|
|
42
|
-
import bl_ui.
|
|
56
|
+
import bl_ui.properties_material_gpencil
|
|
57
|
+
import bl_ui.space_clip
|
|
58
|
+
import bl_ui.properties_physics_cloth
|
|
59
|
+
import bl_ui.node_add_menu_geometry
|
|
60
|
+
import bl_ui.properties_data_curve
|
|
61
|
+
import bl_ui.properties_render
|
|
62
|
+
import bl_ui.properties_particle
|
|
63
|
+
import bl_ui.properties_data_empty
|
|
64
|
+
import bl_ui.properties_physics_softbody
|
|
65
|
+
import bl_ui.node_add_menu
|
|
66
|
+
import bl_ui.asset_shelf
|
|
67
|
+
import bl_operators.constraint
|
|
68
|
+
import bl_ui.properties_physics_common
|
|
69
|
+
import bl_ui.properties_data_lightprobe
|
|
70
|
+
import bl_ui.properties_output
|
|
71
|
+
import bl_ui.properties_view_layer
|
|
43
72
|
import bl_ui.space_dopesheet
|
|
44
|
-
import
|
|
45
|
-
import bl_ui.
|
|
73
|
+
import bl_ui.properties_physics_rigidbody_constraint
|
|
74
|
+
import bl_ui.properties_data_armature
|
|
75
|
+
import bl_ui.properties_material
|
|
76
|
+
import bl_operators.object
|
|
77
|
+
import bl_ui.anim
|
|
46
78
|
import bl_ui.properties_physics_field
|
|
47
|
-
import bl_ui.
|
|
48
|
-
import
|
|
79
|
+
import bl_ui.properties_workspace
|
|
80
|
+
import bl_ui.generic_ui_list
|
|
49
81
|
import bl_ui.properties_data_volume
|
|
50
|
-
import bl_ui.properties_render
|
|
51
|
-
import bl_ui.properties_data_curves
|
|
52
|
-
import bl_operators.node
|
|
53
|
-
import bl_ui.properties_object
|
|
54
|
-
import bl_ui.space_view3d
|
|
55
|
-
import bl_operators.object
|
|
56
|
-
import bl_ui.node_add_menu
|
|
57
|
-
import bl_ui.space_info
|
|
58
82
|
import bl_operators.view3d
|
|
59
|
-
import bl_ui.properties_data_modifier
|
|
60
|
-
import bl_ui.properties_world
|
|
61
|
-
import bl_ui.properties_particle
|
|
62
|
-
import bl_ui.node_add_menu_texture
|
|
63
|
-
import bl_ui.properties_data_mesh
|
|
64
|
-
import bl_operators.freestyle
|
|
65
|
-
import bl_ui.space_spreadsheet
|
|
66
|
-
import bl_ui.properties_data_grease_pencil
|
|
67
|
-
import bl_ui.space_nla
|
|
68
|
-
import bl_operators.constraint
|
|
69
83
|
import bl_ui.properties_grease_pencil_common
|
|
70
|
-
import bl_ui.
|
|
71
|
-
import bl_operators.clip
|
|
72
|
-
import bl_ui.space_node
|
|
73
|
-
import bl_ui.properties_data_speaker
|
|
74
|
-
import bl_ui.properties_data_shaderfx
|
|
75
|
-
import bl_ui.properties_data_bone
|
|
84
|
+
import bl_ui.space_topbar
|
|
76
85
|
import bl_ui.properties_data_pointcloud
|
|
77
|
-
import bl_ui.
|
|
78
|
-
import bl_ui.
|
|
79
|
-
import bl_ui.
|
|
80
|
-
import bl_ui.properties_collection
|
|
81
|
-
import bl_ui.node_add_menu_compositor
|
|
82
|
-
import bl_ui.properties_scene
|
|
83
|
-
import bl_ui.properties_data_light
|
|
84
|
-
import bl_ui.properties_data_gpencil
|
|
85
|
-
import bl_ui.properties_view_layer
|
|
86
|
+
import bl_ui.properties_data_grease_pencil
|
|
87
|
+
import bl_ui.properties_world
|
|
88
|
+
import bl_ui.space_toolsystem_toolbar
|
|
86
89
|
import bl_ui.properties_data_camera
|
|
87
|
-
import bl_ui.
|
|
90
|
+
import bl_ui.properties_freestyle
|
|
88
91
|
import bl_ui.space_time
|
|
89
|
-
import bl_ui
|
|
90
|
-
import bl_ui.properties_physics_softbody
|
|
91
|
-
import bl_ui.space_sequencer
|
|
92
|
-
import bl_operators.spreadsheet
|
|
92
|
+
import bl_ui.properties_mask_common
|
|
93
93
|
|
|
94
94
|
GenericType = typing.TypeVar("GenericType")
|
|
95
95
|
|
|
@@ -6845,10 +6845,10 @@ class Context(bpy_struct):
|
|
|
6845
6845
|
:type: 'UIList'
|
|
6846
6846
|
"""
|
|
6847
6847
|
|
|
6848
|
-
property: typing.Union[
|
|
6848
|
+
property: typing.Union[int, str, "AnyType"]
|
|
6849
6849
|
""" Get the property associated with a hovered button. Returns a tuple of the data-block, data path to the property, and array index.
|
|
6850
6850
|
|
|
6851
|
-
:type: typing.Union[
|
|
6851
|
+
:type: typing.Union[int, str, 'AnyType']
|
|
6852
6852
|
"""
|
|
6853
6853
|
|
|
6854
6854
|
edit_text: "Text"
|
|
@@ -14838,7 +14838,7 @@ class Gizmo(bpy_struct):
|
|
|
14838
14838
|
context: "Context",
|
|
14839
14839
|
event: "Event",
|
|
14840
14840
|
tweak: typing.Optional[typing.Union[typing.Set[str], typing.Set[int]]],
|
|
14841
|
-
) -> typing.Union[typing.Set[
|
|
14841
|
+
) -> typing.Union[typing.Set[int], typing.Set[str]]:
|
|
14842
14842
|
"""
|
|
14843
14843
|
|
|
14844
14844
|
:param context:
|
|
@@ -14847,7 +14847,7 @@ class Gizmo(bpy_struct):
|
|
|
14847
14847
|
:type event: 'Event'
|
|
14848
14848
|
:param tweak: Tweak
|
|
14849
14849
|
:type tweak: typing.Optional[typing.Union[typing.Set[str], typing.Set[int]]]
|
|
14850
|
-
:rtype: typing.Union[typing.Set[
|
|
14850
|
+
:rtype: typing.Union[typing.Set[int], typing.Set[str]]
|
|
14851
14851
|
:return: result
|
|
14852
14852
|
"""
|
|
14853
14853
|
...
|
|
@@ -14855,14 +14855,14 @@ class Gizmo(bpy_struct):
|
|
|
14855
14855
|
def setup(self): ...
|
|
14856
14856
|
def invoke(
|
|
14857
14857
|
self, context: "Context", event: "Event"
|
|
14858
|
-
) -> typing.Union[typing.Set[
|
|
14858
|
+
) -> typing.Union[typing.Set[int], typing.Set[str]]:
|
|
14859
14859
|
"""
|
|
14860
14860
|
|
|
14861
14861
|
:param context:
|
|
14862
14862
|
:type context: 'Context'
|
|
14863
14863
|
:param event:
|
|
14864
14864
|
:type event: 'Event'
|
|
14865
|
-
:rtype: typing.Union[typing.Set[
|
|
14865
|
+
:rtype: typing.Union[typing.Set[int], typing.Set[str]]
|
|
14866
14866
|
:return: result
|
|
14867
14867
|
"""
|
|
14868
14868
|
...
|
|
@@ -17327,10 +17327,10 @@ class KeyingSetInfo(bpy_struct):
|
|
|
17327
17327
|
:type: typing.Union[str, typing.Any]
|
|
17328
17328
|
"""
|
|
17329
17329
|
|
|
17330
|
-
bl_options: typing.Union[typing.Set[
|
|
17330
|
+
bl_options: typing.Union[typing.Set[int], typing.Set[str]]
|
|
17331
17331
|
""" Keying Set options to use when inserting keyframes
|
|
17332
17332
|
|
|
17333
|
-
:type: typing.Union[typing.Set[
|
|
17333
|
+
:type: typing.Union[typing.Set[int], typing.Set[str]]
|
|
17334
17334
|
"""
|
|
17335
17335
|
|
|
17336
17336
|
def poll(self, context: typing.Optional["Context"]) -> bool:
|
|
@@ -17802,10 +17802,10 @@ class Macro(bpy_struct):
|
|
|
17802
17802
|
:type: typing.Union[str, typing.Any]
|
|
17803
17803
|
"""
|
|
17804
17804
|
|
|
17805
|
-
bl_options: typing.Union[typing.Set[
|
|
17805
|
+
bl_options: typing.Union[typing.Set[int], typing.Set[str]]
|
|
17806
17806
|
""" Options for this operator type
|
|
17807
17807
|
|
|
17808
|
-
:type: typing.Union[typing.Set[
|
|
17808
|
+
:type: typing.Union[typing.Set[int], typing.Set[str]]
|
|
17809
17809
|
"""
|
|
17810
17810
|
|
|
17811
17811
|
bl_translation_context: typing.Union[str, typing.Any]
|
|
@@ -17840,13 +17840,13 @@ class Macro(bpy_struct):
|
|
|
17840
17840
|
|
|
17841
17841
|
def report(
|
|
17842
17842
|
self,
|
|
17843
|
-
type: typing.Optional[typing.Union[typing.Set[
|
|
17843
|
+
type: typing.Optional[typing.Union[typing.Set[int], typing.Set[str]]],
|
|
17844
17844
|
message: typing.Union[str, typing.Any],
|
|
17845
17845
|
):
|
|
17846
17846
|
"""report
|
|
17847
17847
|
|
|
17848
17848
|
:param type: Type
|
|
17849
|
-
:type type: typing.Optional[typing.Union[typing.Set[
|
|
17849
|
+
:type type: typing.Optional[typing.Union[typing.Set[int], typing.Set[str]]]
|
|
17850
17850
|
:param message: Report Message
|
|
17851
17851
|
:type message: typing.Union[str, typing.Any]
|
|
17852
17852
|
"""
|
|
@@ -22935,10 +22935,10 @@ class Operator(bpy_struct):
|
|
|
22935
22935
|
:type: typing.Union[str, typing.Any]
|
|
22936
22936
|
"""
|
|
22937
22937
|
|
|
22938
|
-
bl_options: typing.Union[typing.Set[
|
|
22938
|
+
bl_options: typing.Union[typing.Set[int], typing.Set[str]]
|
|
22939
22939
|
""" Options for this operator type
|
|
22940
22940
|
|
|
22941
|
-
:type: typing.Union[typing.Set[
|
|
22941
|
+
:type: typing.Union[typing.Set[int], typing.Set[str]]
|
|
22942
22942
|
"""
|
|
22943
22943
|
|
|
22944
22944
|
bl_translation_context: typing.Union[str, typing.Any]
|
|
@@ -22997,13 +22997,13 @@ class Operator(bpy_struct):
|
|
|
22997
22997
|
|
|
22998
22998
|
def report(
|
|
22999
22999
|
self,
|
|
23000
|
-
type: typing.Optional[typing.Union[typing.Set[
|
|
23000
|
+
type: typing.Optional[typing.Union[typing.Set[int], typing.Set[str]]],
|
|
23001
23001
|
message: typing.Union[str, typing.Any],
|
|
23002
23002
|
):
|
|
23003
23003
|
"""report
|
|
23004
23004
|
|
|
23005
23005
|
:param type: Type
|
|
23006
|
-
:type type: typing.Optional[typing.Union[typing.Set[
|
|
23006
|
+
:type type: typing.Optional[typing.Union[typing.Set[int], typing.Set[str]]]
|
|
23007
23007
|
:param message: Report Message
|
|
23008
23008
|
:type message: typing.Union[str, typing.Any]
|
|
23009
23009
|
"""
|
|
@@ -23029,12 +23029,12 @@ class Operator(bpy_struct):
|
|
|
23029
23029
|
|
|
23030
23030
|
def execute(
|
|
23031
23031
|
self, context: "Context"
|
|
23032
|
-
) -> typing.Union[typing.Set[
|
|
23032
|
+
) -> typing.Union[typing.Set[int], typing.Set[str]]:
|
|
23033
23033
|
"""Execute the operator
|
|
23034
23034
|
|
|
23035
23035
|
:param context:
|
|
23036
23036
|
:type context: 'Context'
|
|
23037
|
-
:rtype: typing.Union[typing.Set[
|
|
23037
|
+
:rtype: typing.Union[typing.Set[int], typing.Set[str]]
|
|
23038
23038
|
:return: result
|
|
23039
23039
|
"""
|
|
23040
23040
|
...
|
|
@@ -23051,28 +23051,28 @@ class Operator(bpy_struct):
|
|
|
23051
23051
|
|
|
23052
23052
|
def invoke(
|
|
23053
23053
|
self, context: "Context", event: "Event"
|
|
23054
|
-
) -> typing.Union[typing.Set[
|
|
23054
|
+
) -> typing.Union[typing.Set[int], typing.Set[str]]:
|
|
23055
23055
|
"""Invoke the operator
|
|
23056
23056
|
|
|
23057
23057
|
:param context:
|
|
23058
23058
|
:type context: 'Context'
|
|
23059
23059
|
:param event:
|
|
23060
23060
|
:type event: 'Event'
|
|
23061
|
-
:rtype: typing.Union[typing.Set[
|
|
23061
|
+
:rtype: typing.Union[typing.Set[int], typing.Set[str]]
|
|
23062
23062
|
:return: result
|
|
23063
23063
|
"""
|
|
23064
23064
|
...
|
|
23065
23065
|
|
|
23066
23066
|
def modal(
|
|
23067
23067
|
self, context: "Context", event: "Event"
|
|
23068
|
-
) -> typing.Union[typing.Set[
|
|
23068
|
+
) -> typing.Union[typing.Set[int], typing.Set[str]]:
|
|
23069
23069
|
"""Modal operator function
|
|
23070
23070
|
|
|
23071
23071
|
:param context:
|
|
23072
23072
|
:type context: 'Context'
|
|
23073
23073
|
:param event:
|
|
23074
23074
|
:type event: 'Event'
|
|
23075
|
-
:rtype: typing.Union[typing.Set[
|
|
23075
|
+
:rtype: typing.Union[typing.Set[int], typing.Set[str]]
|
|
23076
23076
|
:return: result
|
|
23077
23077
|
"""
|
|
23078
23078
|
...
|
|
@@ -28966,13 +28966,13 @@ class RenderEngine(bpy_struct):
|
|
|
28966
28966
|
|
|
28967
28967
|
def report(
|
|
28968
28968
|
self,
|
|
28969
|
-
type: typing.Optional[typing.Union[typing.Set[
|
|
28969
|
+
type: typing.Optional[typing.Union[typing.Set[int], typing.Set[str]]],
|
|
28970
28970
|
message: typing.Union[str, typing.Any],
|
|
28971
28971
|
):
|
|
28972
28972
|
"""Report info, warning or error messages
|
|
28973
28973
|
|
|
28974
28974
|
:param type: Type
|
|
28975
|
-
:type type: typing.Optional[typing.Union[typing.Set[
|
|
28975
|
+
:type type: typing.Optional[typing.Union[typing.Set[int], typing.Set[str]]]
|
|
28976
28976
|
:param message: Report Message
|
|
28977
28977
|
:type message: typing.Union[str, typing.Any]
|
|
28978
28978
|
"""
|
|
@@ -40139,10 +40139,10 @@ class ToolSettings(bpy_struct):
|
|
|
40139
40139
|
:type: typing.Union[str, int]
|
|
40140
40140
|
"""
|
|
40141
40141
|
|
|
40142
|
-
snap_elements: typing.Union[typing.Set[
|
|
40142
|
+
snap_elements: typing.Union[typing.Set[int], typing.Set[str]]
|
|
40143
40143
|
""" Type of element to snap to
|
|
40144
40144
|
|
|
40145
|
-
:type: typing.Union[typing.Set[
|
|
40145
|
+
:type: typing.Union[typing.Set[int], typing.Set[str]]
|
|
40146
40146
|
"""
|
|
40147
40147
|
|
|
40148
40148
|
snap_elements_base: typing.Union[typing.Set[str], typing.Set[int]]
|
|
@@ -65211,14 +65211,14 @@ class WindowManager(ID, bpy_struct):
|
|
|
65211
65211
|
@classmethod
|
|
65212
65212
|
def invoke_props_popup(
|
|
65213
65213
|
cls, operator: typing.Optional["Operator"], event: typing.Optional["Event"]
|
|
65214
|
-
) -> typing.Union[typing.Set[
|
|
65214
|
+
) -> typing.Union[typing.Set[int], typing.Set[str]]:
|
|
65215
65215
|
"""Operator popup invoke (show operator properties and execute it automatically on changes)
|
|
65216
65216
|
|
|
65217
65217
|
:param operator: Operator to call
|
|
65218
65218
|
:type operator: typing.Optional['Operator']
|
|
65219
65219
|
:param event: Event
|
|
65220
65220
|
:type event: typing.Optional['Event']
|
|
65221
|
-
:rtype: typing.Union[typing.Set[
|
|
65221
|
+
:rtype: typing.Union[typing.Set[int], typing.Set[str]]
|
|
65222
65222
|
:return: result
|
|
65223
65223
|
"""
|
|
65224
65224
|
...
|
|
@@ -65232,7 +65232,7 @@ class WindowManager(ID, bpy_struct):
|
|
|
65232
65232
|
confirm_text: typing.Union[str, typing.Any] = "",
|
|
65233
65233
|
text_ctxt: typing.Optional[typing.Union[str, typing.Any]] = "",
|
|
65234
65234
|
translate: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
65235
|
-
) -> typing.Union[typing.Set[
|
|
65235
|
+
) -> typing.Union[typing.Set[int], typing.Set[str]]:
|
|
65236
65236
|
"""Operator dialog (non-autoexec popup) invoke (show operator properties and only execute it on click on OK button)
|
|
65237
65237
|
|
|
65238
65238
|
:param operator: Operator to call
|
|
@@ -65247,7 +65247,7 @@ class WindowManager(ID, bpy_struct):
|
|
|
65247
65247
|
:type text_ctxt: typing.Optional[typing.Union[str, typing.Any]]
|
|
65248
65248
|
:param translate: Translate the given text, when UI translation is enabled
|
|
65249
65249
|
:type translate: typing.Optional[typing.Union[bool, typing.Any]]
|
|
65250
|
-
:rtype: typing.Union[typing.Set[
|
|
65250
|
+
:rtype: typing.Union[typing.Set[int], typing.Set[str]]
|
|
65251
65251
|
:return: result
|
|
65252
65252
|
"""
|
|
65253
65253
|
...
|
|
@@ -65266,14 +65266,14 @@ class WindowManager(ID, bpy_struct):
|
|
|
65266
65266
|
cls,
|
|
65267
65267
|
operator: typing.Optional["Operator"],
|
|
65268
65268
|
width: typing.Optional[typing.Any] = 300,
|
|
65269
|
-
) -> typing.Union[typing.Set[
|
|
65269
|
+
) -> typing.Union[typing.Set[int], typing.Set[str]]:
|
|
65270
65270
|
"""Operator popup invoke (only shows operator's properties, without executing it)
|
|
65271
65271
|
|
|
65272
65272
|
:param operator: Operator to call
|
|
65273
65273
|
:type operator: typing.Optional['Operator']
|
|
65274
65274
|
:param width: Width of the popup
|
|
65275
65275
|
:type width: typing.Optional[typing.Any]
|
|
65276
|
-
:rtype: typing.Union[typing.Set[
|
|
65276
|
+
:rtype: typing.Union[typing.Set[int], typing.Set[str]]
|
|
65277
65277
|
:return: result
|
|
65278
65278
|
"""
|
|
65279
65279
|
...
|
|
@@ -65289,7 +65289,7 @@ class WindowManager(ID, bpy_struct):
|
|
|
65289
65289
|
icon: typing.Optional[typing.Any] = "WARNING",
|
|
65290
65290
|
text_ctxt: typing.Optional[typing.Union[str, typing.Any]] = "",
|
|
65291
65291
|
translate: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
65292
|
-
) -> typing.Union[typing.Set[
|
|
65292
|
+
) -> typing.Union[typing.Set[int], typing.Set[str]]:
|
|
65293
65293
|
"""Operator confirmation popup (only to let user confirm the execution, no operator properties shown)
|
|
65294
65294
|
|
|
65295
65295
|
:param operator: Operator to call
|
|
@@ -65308,7 +65308,7 @@ class WindowManager(ID, bpy_struct):
|
|
|
65308
65308
|
:type text_ctxt: typing.Optional[typing.Union[str, typing.Any]]
|
|
65309
65309
|
:param translate: Translate the given text, when UI translation is enabled
|
|
65310
65310
|
:type translate: typing.Optional[typing.Union[bool, typing.Any]]
|
|
65311
|
-
:rtype: typing.Union[typing.Set[
|
|
65311
|
+
:rtype: typing.Union[typing.Set[int], typing.Set[str]]
|
|
65312
65312
|
:return: result
|
|
65313
65313
|
"""
|
|
65314
65314
|
...
|
|
@@ -68343,10 +68343,10 @@ class DecimateModifier(Modifier, bpy_struct):
|
|
|
68343
68343
|
:type: typing.Union[str, int]
|
|
68344
68344
|
"""
|
|
68345
68345
|
|
|
68346
|
-
delimit: typing.Union[typing.Set[
|
|
68346
|
+
delimit: typing.Union[typing.Set[int], typing.Set[str]]
|
|
68347
68347
|
""" Limit merging geometry
|
|
68348
68348
|
|
|
68349
|
-
:type: typing.Union[typing.Set[
|
|
68349
|
+
:type: typing.Union[typing.Set[int], typing.Set[str]]
|
|
68350
68350
|
"""
|
|
68351
68351
|
|
|
68352
68352
|
face_count: int
|
|
@@ -68815,6 +68815,12 @@ class GreasePencilColorModifier(Modifier, bpy_struct):
|
|
|
68815
68815
|
:type: int
|
|
68816
68816
|
"""
|
|
68817
68817
|
|
|
68818
|
+
open_influence_panel: bool
|
|
68819
|
+
"""
|
|
68820
|
+
|
|
68821
|
+
:type: bool
|
|
68822
|
+
"""
|
|
68823
|
+
|
|
68818
68824
|
saturation: float
|
|
68819
68825
|
""" Color saturation factor
|
|
68820
68826
|
|
|
@@ -68924,6 +68930,12 @@ class GreasePencilMirrorModifier(Modifier, bpy_struct):
|
|
|
68924
68930
|
:type: 'Object'
|
|
68925
68931
|
"""
|
|
68926
68932
|
|
|
68933
|
+
open_influence_panel: bool
|
|
68934
|
+
"""
|
|
68935
|
+
|
|
68936
|
+
:type: bool
|
|
68937
|
+
"""
|
|
68938
|
+
|
|
68927
68939
|
use_axis_x: bool
|
|
68928
68940
|
""" Mirror the X axis
|
|
68929
68941
|
|
|
@@ -69230,6 +69242,12 @@ class GreasePencilOffsetModifier(Modifier, bpy_struct):
|
|
|
69230
69242
|
:type: typing.Union[str, int]
|
|
69231
69243
|
"""
|
|
69232
69244
|
|
|
69245
|
+
open_influence_panel: bool
|
|
69246
|
+
"""
|
|
69247
|
+
|
|
69248
|
+
:type: bool
|
|
69249
|
+
"""
|
|
69250
|
+
|
|
69233
69251
|
rotation: typing.Union[
|
|
69234
69252
|
typing.List[float], typing.Tuple[float, float, float], "mathutils.Euler"
|
|
69235
69253
|
]
|
|
@@ -69415,6 +69433,12 @@ class GreasePencilOpacityModifier(Modifier, bpy_struct):
|
|
|
69415
69433
|
:type: int
|
|
69416
69434
|
"""
|
|
69417
69435
|
|
|
69436
|
+
open_influence_panel: bool
|
|
69437
|
+
"""
|
|
69438
|
+
|
|
69439
|
+
:type: bool
|
|
69440
|
+
"""
|
|
69441
|
+
|
|
69418
69442
|
use_custom_curve: bool
|
|
69419
69443
|
""" Use a custom curve to define a factor along the strokes
|
|
69420
69444
|
|
|
@@ -69991,6 +70015,12 @@ class GreasePencilTintModifier(Modifier, bpy_struct):
|
|
|
69991
70015
|
:type: 'Object'
|
|
69992
70016
|
"""
|
|
69993
70017
|
|
|
70018
|
+
open_influence_panel: bool
|
|
70019
|
+
"""
|
|
70020
|
+
|
|
70021
|
+
:type: bool
|
|
70022
|
+
"""
|
|
70023
|
+
|
|
69994
70024
|
radius: float
|
|
69995
70025
|
""" Influence distance from the object
|
|
69996
70026
|
|
|
@@ -70472,10 +70502,10 @@ class MeshCacheModifier(Modifier, bpy_struct):
|
|
|
70472
70502
|
:type: typing.Union[str, typing.Any]
|
|
70473
70503
|
"""
|
|
70474
70504
|
|
|
70475
|
-
flip_axis: typing.Union[typing.Set[
|
|
70505
|
+
flip_axis: typing.Union[typing.Set[int], typing.Set[str]]
|
|
70476
70506
|
"""
|
|
70477
70507
|
|
|
70478
|
-
:type: typing.Union[typing.Set[
|
|
70508
|
+
:type: typing.Union[typing.Set[int], typing.Set[str]]
|
|
70479
70509
|
"""
|
|
70480
70510
|
|
|
70481
70511
|
forward_axis: typing.Union[str, int]
|
|
@@ -109804,10 +109834,10 @@ class GeometryNodeCurveHandleTypeSelection(
|
|
|
109804
109834
|
:type: typing.Union[str, int]
|
|
109805
109835
|
"""
|
|
109806
109836
|
|
|
109807
|
-
mode: typing.Union[typing.Set[
|
|
109837
|
+
mode: typing.Union[typing.Set[int], typing.Set[str]]
|
|
109808
109838
|
""" Whether to check the type of left and right handles
|
|
109809
109839
|
|
|
109810
|
-
:type: typing.Union[typing.Set[
|
|
109840
|
+
:type: typing.Union[typing.Set[int], typing.Set[str]]
|
|
109811
109841
|
"""
|
|
109812
109842
|
|
|
109813
109843
|
@classmethod
|
|
@@ -110340,10 +110370,10 @@ class GeometryNodeCurveSetHandles(GeometryNode, NodeInternal, Node, bpy_struct):
|
|
|
110340
110370
|
:type: typing.Union[str, int]
|
|
110341
110371
|
"""
|
|
110342
110372
|
|
|
110343
|
-
mode: typing.Union[typing.Set[
|
|
110373
|
+
mode: typing.Union[typing.Set[int], typing.Set[str]]
|
|
110344
110374
|
""" Whether to update left and right handles
|
|
110345
110375
|
|
|
110346
|
-
:type: typing.Union[typing.Set[
|
|
110376
|
+
:type: typing.Union[typing.Set[int], typing.Set[str]]
|
|
110347
110377
|
"""
|
|
110348
110378
|
|
|
110349
110379
|
@classmethod
|
|
@@ -130447,10 +130477,10 @@ IMAGE_MT_editor_menus: "bl_ui.space_image.IMAGE_MT_editor_menus"
|
|
|
130447
130477
|
|
|
130448
130478
|
IMAGE_MT_image: "bl_ui.space_image.IMAGE_MT_image"
|
|
130449
130479
|
|
|
130450
|
-
IMAGE_MT_image_flip: "bl_ui.space_image.IMAGE_MT_image_flip"
|
|
130451
|
-
|
|
130452
130480
|
IMAGE_MT_image_invert: "bl_ui.space_image.IMAGE_MT_image_invert"
|
|
130453
130481
|
|
|
130482
|
+
IMAGE_MT_image_transform: "bl_ui.space_image.IMAGE_MT_image_transform"
|
|
130483
|
+
|
|
130454
130484
|
IMAGE_MT_mask_context_menu: "bl_ui.space_image.IMAGE_MT_mask_context_menu"
|
|
130455
130485
|
|
|
130456
130486
|
IMAGE_MT_pivot_pie: "bl_ui.space_image.IMAGE_MT_pivot_pie"
|
bpy_extras/__init__.pyi
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
import sys
|
|
2
2
|
import typing
|
|
3
|
-
from . import object_utils
|
|
4
3
|
from . import mesh_utils
|
|
5
|
-
from . import keyconfig_utils
|
|
6
|
-
from . import node_utils
|
|
7
4
|
from . import asset_utils
|
|
8
|
-
from . import
|
|
5
|
+
from . import id_map_utils
|
|
6
|
+
from . import view3d_utils
|
|
9
7
|
from . import io_utils
|
|
10
8
|
from . import anim_utils
|
|
11
|
-
from . import
|
|
12
|
-
from . import
|
|
9
|
+
from . import node_utils
|
|
10
|
+
from . import keyconfig_utils
|
|
11
|
+
from . import image_utils
|
|
12
|
+
from . import object_utils
|
|
13
13
|
from . import wm_utils
|
|
14
|
-
from . import node_shader_utils
|
|
15
14
|
from . import bmesh_utils
|
|
15
|
+
from . import node_shader_utils
|
|
16
16
|
from . import extensions
|
|
17
17
|
|
|
18
18
|
GenericType = typing.TypeVar("GenericType")
|
|
@@ -18,7 +18,7 @@ bl_console_utils/autocomplete/complete_calltip/__init__.pyi,sha256=Rw2uA3ktL5R--
|
|
|
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=l_nkQPNwr6h18okchST2KZ1gWsE_cQRsFc1Yb1C9oIs,253
|
|
22
22
|
bl_i18n_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
23
23
|
bl_i18n_utils/bl_extract_messages/__init__.pyi,sha256=4aYWWUVvaRBkbASoVVQgdDMg2QB2orMMJF0BNmvNFoc,902
|
|
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=BsSu8dVPCo4mgSq5rCSf9dogtWDmB0ZLdeoc51eXuqs,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=iaHwOXlJT31Q_Vo2SfWAZX2dCoYzx-zpqpFdEmomMxI,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=Y5MuNRJIEyDlAIQ0YZ1gEDkRtZwcBxoNsnfsi6h8OeE,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
|
|
@@ -137,7 +137,7 @@ bl_ui/space_console/__init__.pyi,sha256=UJdbdqIg7NmNRPli8PmLPTi1uiQUty_OXGVFsHtT
|
|
|
137
137
|
bl_ui/space_dopesheet/__init__.pyi,sha256=QcurhTafKOg6kcIeupgJJXqCYf0xw_009FJtcQL4CSQ,37563
|
|
138
138
|
bl_ui/space_filebrowser/__init__.pyi,sha256=TgCEDzESLqCZEuIyNa6Rsb2WxgJAUDd8jAZUjOpJVEY,40902
|
|
139
139
|
bl_ui/space_graph/__init__.pyi,sha256=Z8tH55ly1uNPopKEFhwqCuLiBhlvs-ytGVtw6s9MRpQ,28338
|
|
140
|
-
bl_ui/space_image/__init__.pyi,sha256=
|
|
140
|
+
bl_ui/space_image/__init__.pyi,sha256=hbaSNpybWECUgCcfhyVUwS4sJE92O3bq1KuAKBcanGY,105481
|
|
141
141
|
bl_ui/space_info/__init__.pyi,sha256=Kuglqd_M60_HDtDIJWklhgnr1cHtwtyHsbY9JhPrKkg,8519
|
|
142
142
|
bl_ui/space_nla/__init__.pyi,sha256=h97C_qFDRIIZJVyXNOB-0hdj6JAbUX5nV6n6kbCcnJg,24182
|
|
143
143
|
bl_ui/space_node/__init__.pyi,sha256=20D4IytKUqSPPPB5Yzbd1sbfQxbz-VV0gUADwLxhQfM,48971
|
|
@@ -155,7 +155,7 @@ bl_ui/space_userpref/__init__.pyi,sha256=IOJO1wd-H3n9bHVvJ13rlzo9i-Mmk52BaZsxDkw
|
|
|
155
155
|
bl_ui/space_view3d/__init__.pyi,sha256=jntOpO_9j8pmFPadgfRfsG2xyl9IkNjOmrKVz0HNKK8,364828
|
|
156
156
|
bl_ui/space_view3d_toolbar/__init__.pyi,sha256=lNh1jWZdaMsYa9LhTOhAYPBoqMkB1-iUiuz1fITMrnY,140287
|
|
157
157
|
bl_ui/utils/__init__.pyi,sha256=jqC_UaM1SsHFfGoA1A1vwLDS54npPcPBphavDXfYuao,512
|
|
158
|
-
bl_ui_utils/__init__.pyi,sha256=
|
|
158
|
+
bl_ui_utils/__init__.pyi,sha256=NueTVhcSnz7Cgzo_iG7uvCHf8HbOarIj8-uz79zg-LA,120
|
|
159
159
|
bl_ui_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
160
160
|
bl_ui_utils/bug_report_url/__init__.pyi,sha256=TvDEtwviwh9KFx6H7OBbpADFvLId01fMx4TXoGRanPo,117
|
|
161
161
|
bl_ui_utils/layout/__init__.pyi,sha256=KsdnwCJlAHD4CSC0RY2Rb2sPcuK5Xt7D7M5lKq1SnB0,117
|
|
@@ -163,21 +163,21 @@ blend_render_info/__init__.pyi,sha256=YyK5b2jcYz8UcQ2Tl9Lfc-LLuxke8l5ggJMX8I6GHc
|
|
|
163
163
|
blend_render_info/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
164
164
|
blf/__init__.pyi,sha256=vsZLfyG_2g1evSK1qCDNTaZDzpAOpVJ2El8CSUVqKxs,5192
|
|
165
165
|
blf/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
166
|
-
bmesh/__init__.pyi,sha256=
|
|
166
|
+
bmesh/__init__.pyi,sha256=UAnyFTD3h38Xr0dr4maAqQRMSuJrMFz1nsnrTW3rBP4,1283
|
|
167
167
|
bmesh/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
168
168
|
bmesh/geometry/__init__.pyi,sha256=ZNWeqa8UPLoM04_2CG-PGREKg6-HPXRj2oUXyq9KSF0,616
|
|
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=PIpGD103RbfsGDjeFRMAKjEXne-OUyqk7pgwL5mt_IM,324
|
|
173
173
|
bpy/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
174
|
-
bpy/app/__init__.pyi,sha256=
|
|
174
|
+
bpy/app/__init__.pyi,sha256=QwVLP_EorcVuLijmoWysHBKPQcnvwV-bJbTWRQxM4Hk,9473
|
|
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=lnFNeTQsZlVbEd9Kt23kwWpk3AK1eduGYPGOu4DjjoA,1751
|
|
181
181
|
bpy/ops/action/__init__.pyi,sha256=fp2H1MFKyRdirKHtXlum1OWndPG2cvHWPr7uohovMXw,28955
|
|
182
182
|
bpy/ops/anim/__init__.pyi,sha256=cCqYTsgttcZdPt8nEGNtIPa3xOfXKd-ElF--MRkQKiM,39230
|
|
183
183
|
bpy/ops/armature/__init__.pyi,sha256=zGM1LgMMkxKox6oftCQ5QOn9RZLGpRR9MT1qICiD64g,35412
|
|
@@ -208,7 +208,7 @@ bpy/ops/gizmogroup/__init__.pyi,sha256=n9ET25rm9sc_j1SsDuvQ3PLbEmh1S8YNq2o456dqE
|
|
|
208
208
|
bpy/ops/gpencil/__init__.pyi,sha256=gKFC7yiQUB9OWwBRoBErvvz-g0CwSTMNuYfhhIqm0As,134974
|
|
209
209
|
bpy/ops/graph/__init__.pyi,sha256=AxQgnc-P3NQB17PJoENf4OXF9WRrVsMf_ZVJN1ot36c,61842
|
|
210
210
|
bpy/ops/grease_pencil/__init__.pyi,sha256=2FSn7cGFHPfn8mpMBcBSTcPOgr-OkPuPSZds74q_5mE,30852
|
|
211
|
-
bpy/ops/image/__init__.pyi,sha256=
|
|
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
|
|
214
214
|
bpy/ops/import_mesh/__init__.pyi,sha256=RJ-NYfRSGDgNO_THsim1TKKGtuM2sRYh_c7wX00KFqY,2334
|
|
@@ -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=GIygMkjryh8FAbR-QRGy7-EmMu4FA0xttWks5CIeXao,27520
|
|
260
|
-
bpy/types/__init__.pyi,sha256=
|
|
260
|
+
bpy/types/__init__.pyi,sha256=mRMfpRH6GDtSR56rlIdlciU_zK3kvKQZ-yBHNA5pbUc,3439023
|
|
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=69CZ3KKi241k7WkbGMlUWF1doun5TTBWbjIrhBdyA6I,437
|
|
265
265
|
bpy_extras/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
266
266
|
bpy_extras/anim_utils/__init__.pyi,sha256=tIrKInlchbaU51OySUG1pq-ka6BBBWKeqpA-Y8gTLRs,2629
|
|
267
267
|
bpy_extras/asset_utils/__init__.pyi,sha256=ugLnZGwgepm58mWHS4cS_bmum9v9La2a1wKpg5VShHY,362
|
|
@@ -287,7 +287,7 @@ console_python/__init__.pyi,sha256=NFp-T2SCOOLR-N7V4zWJ9Er7N6nD3NYSYIFQiLKAPrM,4
|
|
|
287
287
|
console_python/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
288
288
|
console_shell/__init__.pyi,sha256=aaDanBiC2HaZnvPE7Wx3aZdHv6rYil7T4HXax4_tn9g,237
|
|
289
289
|
console_shell/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
290
|
-
freestyle/__init__.pyi,sha256=
|
|
290
|
+
freestyle/__init__.pyi,sha256=kVEPooip29URF6jtbezu03Oa0PNh0cH1fqaVvTDizFg,213
|
|
291
291
|
freestyle/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
292
292
|
freestyle/chainingiterators/__init__.pyi,sha256=jnQy61ItIidGvKCgWcpAxej0eAg0mOng07Vcz9Am_nc,8973
|
|
293
293
|
freestyle/functions/__init__.pyi,sha256=plhuvPQKvTbcVYwkzsc6fentWN9v1kUxWns6LhOdcrg,46553
|
|
@@ -296,7 +296,7 @@ freestyle/shaders/__init__.pyi,sha256=ETWZTAElmkCpIPUPMWcdtnBVYVna2woEK23d_AhgcN
|
|
|
296
296
|
freestyle/types/__init__.pyi,sha256=9VNnFnBrsds6N5HrcY6apLhzhEX2dNnmCwgMiYdJiH4,84116
|
|
297
297
|
freestyle/utils/__init__.pyi,sha256=WCA79EU3BNjx4dk2baGFCUyr5Fb7CUVcJI1PLXWeb0o,5332
|
|
298
298
|
freestyle/utils/ContextFunctions/__init__.pyi,sha256=zCDvBHw69gRyzHC_ktXzaTm-8VzFtgyeFx1WFLoXqfs,3261
|
|
299
|
-
gpu/__init__.pyi,sha256=
|
|
299
|
+
gpu/__init__.pyi,sha256=p81SfZ3y6bi3eDqT5rlY75wHcUkRu5GhD6bra5adiAQ,245
|
|
300
300
|
gpu/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
301
301
|
gpu/capabilities/__init__.pyi,sha256=8hCIrIt4x5SCjTwHSiVTtMC3UoDmJd-9vqk7TuAX5hE,3602
|
|
302
302
|
gpu/matrix/__init__.pyi,sha256=gyfCUG6L8GqqokV_c-XvwY1OYbQJu0eseeuIe7SDoF8,2598
|
|
@@ -322,7 +322,7 @@ keyingsets_builtins/__init__.pyi,sha256=hccg-1OZ_c5IjK4_ALYpt9V7yYukHN9XtoVPAbLz
|
|
|
322
322
|
keyingsets_builtins/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
323
323
|
keyingsets_utils/__init__.pyi,sha256=vRBrNkyV8w0NM5tuicSwIjatLvT0596vZ0PFuvGUi2I,778
|
|
324
324
|
keyingsets_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
325
|
-
mathutils/__init__.pyi,sha256=
|
|
325
|
+
mathutils/__init__.pyi,sha256=B-2o5nkVQlHOraPCFvW67sELczDstKVM7yF7VZ4PZxA,87218
|
|
326
326
|
mathutils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
327
327
|
mathutils/bvhtree/__init__.pyi,sha256=mfRgB94pNeZUzLoQdjKGM0JHSy5Q5ZJtcTZ687nMbW4,4556
|
|
328
328
|
mathutils/geometry/__init__.pyi,sha256=3lpLYlnELXY9GPYm0dhV9kFzRyAJzv1aUeD_z99qGAs,22301
|
|
@@ -337,13 +337,13 @@ rna_info/__init__.pyi,sha256=7VLzzXJTWQUn7B7RQz86rNU9NmFHLQ_l0ZTu0ZZxTMM,2532
|
|
|
337
337
|
rna_info/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
338
338
|
rna_keymap_ui/__init__.pyi,sha256=T4v-K1xDTk2JORIYGWibG5_DzUgbsaATiByM3Y1AoBE,419
|
|
339
339
|
rna_keymap_ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
340
|
-
rna_prop_ui/__init__.pyi,sha256=
|
|
340
|
+
rna_prop_ui/__init__.pyi,sha256=o12rF4gsMkpeH2iruoipFClp3q80-oJ-ry8FR0mU6uE,911
|
|
341
341
|
rna_prop_ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
342
342
|
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-20240201.dist-info/METADATA,sha256=UNS32n30FCykeBCr8_3qRZCXkopiDkXLA99MXtl8pRs,7008
|
|
347
|
+
fake_bpy_module-20240201.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
|
348
|
+
fake_bpy_module-20240201.dist-info/top_level.txt,sha256=7r84ZPNSbRAopA50b0pH3uZ2ysQ2IvkuP0uXadxl7gs,495
|
|
349
|
+
fake_bpy_module-20240201.dist-info/RECORD,,
|
freestyle/__init__.pyi
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import sys
|
|
2
2
|
import typing
|
|
3
|
-
from . import
|
|
3
|
+
from . import shaders
|
|
4
4
|
from . import utils
|
|
5
5
|
from . import predicates
|
|
6
6
|
from . import chainingiterators
|
|
7
7
|
from . import types
|
|
8
|
-
from . import
|
|
8
|
+
from . import functions
|
|
9
9
|
|
|
10
10
|
GenericType = typing.TypeVar("GenericType")
|
gpu/__init__.pyi
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import sys
|
|
2
2
|
import typing
|
|
3
|
-
from . import
|
|
3
|
+
from . import state
|
|
4
4
|
from . import shader
|
|
5
|
+
from . import select
|
|
6
|
+
from . import matrix
|
|
5
7
|
from . import platform
|
|
6
8
|
from . import capabilities
|
|
9
|
+
from . import types
|
|
7
10
|
from . import texture
|
|
8
|
-
from . import select
|
|
9
|
-
from . import state
|
|
10
|
-
from . import matrix
|
|
11
11
|
|
|
12
12
|
GenericType = typing.TypeVar("GenericType")
|
mathutils/__init__.pyi
CHANGED
rna_prop_ui/__init__.pyi
CHANGED
|
File without changes
|
|
File without changes
|