fake-bpy-module 20240411__py3-none-any.whl → 20240418__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.
- _bpy_internal/__init__.pyi +4 -0
- _bpy_internal/freedesktop/__init__.pyi +88 -0
- _bpy_internal/freedesktop/py.typed +0 -0
- _bpy_internal/py.typed +0 -0
- aud/__init__.pyi +121 -48
- bgl/__init__.pyi +2443 -1265
- bl_math/__init__.pyi +19 -3
- bl_operators/presets/__init__.pyi +7 -0
- bl_ui/node_add_menu/__init__.pyi +1 -1
- bl_ui/properties_data_lightprobe/__init__.pyi +1134 -0
- bl_ui/properties_physics_dynamicpaint/__init__.pyi +3 -0
- bl_ui/properties_physics_fluid/__init__.pyi +3 -0
- bl_ui/space_toolsystem_toolbar/__init__.pyi +17 -0
- bl_ui/space_userpref/__init__.pyi +13 -4
- bl_ui/space_view3d/__init__.pyi +190 -0
- blf/__init__.pyi +63 -13
- bmesh/__init__.pyi +13 -0
- bmesh/geometry/__init__.pyi +5 -0
- bmesh/ops/__init__.pyi +157 -68
- bmesh/types/__init__.pyi +109 -62
- bmesh/utils/__init__.pyi +11 -2
- bpy/__init__.pyi +7 -0
- bpy/app/__init__.pyi +13 -0
- bpy/app/handlers/__init__.pyi +41 -0
- bpy/app/icons/__init__.pyi +4 -2
- bpy/app/timers/__init__.pyi +38 -2
- bpy/app/translations/__init__.pyi +59 -1
- bpy/msgbus/__init__.pyi +46 -0
- bpy/ops/__init__.pyi +151 -0
- bpy/ops/action/__init__.pyi +76 -76
- bpy/ops/anim/__init__.pyi +104 -104
- bpy/ops/armature/__init__.pyi +96 -96
- bpy/ops/asset/__init__.pyi +32 -32
- bpy/ops/boid/__init__.pyi +16 -16
- bpy/ops/brush/__init__.pyi +18 -18
- bpy/ops/buttons/__init__.pyi +12 -12
- bpy/ops/cachefile/__init__.pyi +10 -10
- bpy/ops/camera/__init__.pyi +4 -4
- bpy/ops/clip/__init__.pyi +184 -184
- bpy/ops/cloth/__init__.pyi +2 -2
- bpy/ops/collection/__init__.pyi +18 -18
- bpy/ops/console/__init__.pyi +42 -42
- bpy/ops/constraint/__init__.pyi +36 -36
- bpy/ops/curve/__init__.pyi +102 -102
- bpy/ops/curves/__init__.pyi +132 -50
- bpy/ops/cycles/__init__.pyi +6 -6
- bpy/ops/dpaint/__init__.pyi +10 -10
- bpy/ops/ed/__init__.pyi +24 -24
- bpy/ops/export_anim/__init__.pyi +2 -2
- bpy/ops/export_mesh/__init__.pyi +2 -2
- bpy/ops/export_scene/__init__.pyi +11 -8
- bpy/ops/file/__init__.pyi +80 -80
- bpy/ops/fluid/__init__.pyi +28 -28
- bpy/ops/font/__init__.pyi +46 -46
- bpy/ops/geometry/__init__.pyi +20 -20
- bpy/ops/gizmogroup/__init__.pyi +4 -4
- bpy/ops/gpencil/__init__.pyi +300 -300
- bpy/ops/graph/__init__.pyi +130 -130
- bpy/ops/grease_pencil/__init__.pyi +139 -110
- bpy/ops/image/__init__.pyi +92 -92
- bpy/ops/import_anim/__init__.pyi +2 -2
- bpy/ops/import_curve/__init__.pyi +2 -2
- bpy/ops/import_mesh/__init__.pyi +2 -2
- bpy/ops/import_scene/__init__.pyi +6 -6
- bpy/ops/info/__init__.pyi +14 -14
- bpy/ops/lattice/__init__.pyi +16 -16
- bpy/ops/marker/__init__.pyi +22 -22
- bpy/ops/mask/__init__.pyi +78 -78
- bpy/ops/material/__init__.pyi +6 -6
- bpy/ops/mball/__init__.pyi +16 -16
- bpy/ops/mesh/__init__.pyi +327 -327
- bpy/ops/nla/__init__.pyi +80 -80
- bpy/ops/node/__init__.pyi +203 -203
- bpy/ops/object/__init__.pyi +496 -508
- bpy/ops/outliner/__init__.pyi +139 -139
- bpy/ops/paint/__init__.pyi +104 -104
- bpy/ops/paintcurve/__init__.pyi +16 -16
- bpy/ops/palette/__init__.pyi +14 -14
- bpy/ops/particle/__init__.pyi +72 -72
- bpy/ops/pose/__init__.pyi +78 -78
- bpy/ops/poselib/__init__.pyi +18 -18
- bpy/ops/preferences/__init__.pyi +77 -77
- bpy/ops/ptcache/__init__.pyi +14 -14
- bpy/ops/render/__init__.pyi +24 -24
- bpy/ops/rigidbody/__init__.pyi +26 -26
- bpy/ops/scene/__init__.pyi +78 -78
- bpy/ops/screen/__init__.pyi +78 -78
- bpy/ops/script/__init__.pyi +6 -6
- bpy/ops/sculpt/__init__.pyi +68 -62
- bpy/ops/sculpt_curves/__init__.pyi +8 -8
- bpy/ops/sequencer/__init__.pyi +170 -170
- bpy/ops/sound/__init__.pyi +14 -14
- bpy/ops/spreadsheet/__init__.pyi +8 -8
- bpy/ops/surface/__init__.pyi +12 -12
- bpy/ops/text/__init__.pyi +86 -86
- bpy/ops/text_editor/__init__.pyi +2 -2
- bpy/ops/texture/__init__.pyi +8 -8
- bpy/ops/transform/__init__.pyi +54 -54
- bpy/ops/ui/__init__.pyi +64 -64
- bpy/ops/uilist/__init__.pyi +6 -6
- bpy/ops/uv/__init__.pyi +98 -98
- bpy/ops/view2d/__init__.pyi +28 -28
- bpy/ops/view3d/__init__.pyi +134 -134
- bpy/ops/wm/__init__.pyi +225 -225
- bpy/ops/workspace/__init__.pyi +14 -14
- bpy/ops/world/__init__.pyi +2 -2
- bpy/path/__init__.pyi +6 -0
- bpy/props/__init__.pyi +141 -29
- bpy/types/__init__.pyi +101773 -5222
- bpy/utils/__init__.pyi +18 -3
- bpy/utils/previews/__init__.pyi +15 -0
- bpy/utils/units/__init__.pyi +11 -3
- bpy_extras/__init__.pyi +19 -0
- bpy_extras/asset_utils/__init__.pyi +5 -0
- {fake_bpy_module-20240411.dist-info → fake_bpy_module-20240418.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240411.dist-info → fake_bpy_module-20240418.dist-info}/RECORD +145 -141
- {fake_bpy_module-20240411.dist-info → fake_bpy_module-20240418.dist-info}/top_level.txt +1 -0
- freestyle/__init__.pyi +18 -0
- freestyle/chainingiterators/__init__.pyi +20 -5
- freestyle/functions/__init__.pyi +151 -155
- freestyle/predicates/__init__.pyi +53 -46
- freestyle/shaders/__init__.pyi +91 -32
- freestyle/types/__init__.pyi +362 -120
- freestyle/utils/ContextFunctions/__init__.pyi +32 -7
- freestyle/utils/__init__.pyi +13 -1
- gpu/__init__.pyi +225 -0
- gpu/capabilities/__init__.pyi +37 -15
- gpu/matrix/__init__.pyi +7 -1
- gpu/platform/__init__.pyi +5 -0
- gpu/select/__init__.pyi +5 -0
- gpu/shader/__init__.pyi +77 -0
- gpu/state/__init__.pyi +15 -4
- gpu/texture/__init__.pyi +5 -0
- gpu/types/__init__.pyi +91 -33
- gpu_extras/__init__.pyi +15 -0
- gpu_extras/presets/__init__.pyi +16 -4
- imbuf/__init__.pyi +13 -0
- imbuf/types/__init__.pyi +20 -5
- mathutils/__init__.pyi +349 -227
- mathutils/bvhtree/__init__.pyi +21 -8
- mathutils/geometry/__init__.pyi +23 -9
- mathutils/interpolate/__init__.pyi +5 -0
- mathutils/kdtree/__init__.pyi +19 -5
- mathutils/noise/__init__.pyi +87 -41
- {fake_bpy_module-20240411.dist-info → fake_bpy_module-20240418.dist-info}/WHEEL +0 -0
bpy/ops/cloth/__init__.pyi
CHANGED
|
@@ -5,7 +5,7 @@ GenericType = typing.TypeVar("GenericType")
|
|
|
5
5
|
|
|
6
6
|
def preset_add(
|
|
7
7
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
8
|
-
execution_context: str = None,
|
|
8
|
+
execution_context: typing.Union[str, int] = None,
|
|
9
9
|
undo: bool = None,
|
|
10
10
|
name: typing.Union[str, typing.Any] = "",
|
|
11
11
|
remove_name: typing.Union[bool, typing.Any] = False,
|
|
@@ -14,7 +14,7 @@ def preset_add(
|
|
|
14
14
|
"""Add or remove a Cloth Preset
|
|
15
15
|
|
|
16
16
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
17
|
-
:type execution_context: str
|
|
17
|
+
:type execution_context: typing.Union[str, int]
|
|
18
18
|
:type undo: bool
|
|
19
19
|
:param name: Name, Name of the preset, used to make the path name
|
|
20
20
|
:type name: typing.Union[str, typing.Any]
|
bpy/ops/collection/__init__.pyi
CHANGED
|
@@ -5,14 +5,14 @@ GenericType = typing.TypeVar("GenericType")
|
|
|
5
5
|
|
|
6
6
|
def create(
|
|
7
7
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
8
|
-
execution_context: str = None,
|
|
8
|
+
execution_context: typing.Union[str, int] = None,
|
|
9
9
|
undo: bool = None,
|
|
10
10
|
name: typing.Union[str, typing.Any] = "Collection",
|
|
11
11
|
):
|
|
12
12
|
"""Create an object collection from selected objects
|
|
13
13
|
|
|
14
14
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
15
|
-
:type execution_context: str
|
|
15
|
+
:type execution_context: typing.Union[str, int]
|
|
16
16
|
:type undo: bool
|
|
17
17
|
:param name: Name, Name of the new collection
|
|
18
18
|
:type name: typing.Union[str, typing.Any]
|
|
@@ -22,13 +22,13 @@ def create(
|
|
|
22
22
|
|
|
23
23
|
def export_all(
|
|
24
24
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
25
|
-
execution_context: str = None,
|
|
25
|
+
execution_context: typing.Union[str, int] = None,
|
|
26
26
|
undo: bool = None,
|
|
27
27
|
):
|
|
28
28
|
"""Invoke all configured exporters on this collection
|
|
29
29
|
|
|
30
30
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
31
|
-
:type execution_context: str
|
|
31
|
+
:type execution_context: typing.Union[str, int]
|
|
32
32
|
:type undo: bool
|
|
33
33
|
"""
|
|
34
34
|
|
|
@@ -36,14 +36,14 @@ def export_all(
|
|
|
36
36
|
|
|
37
37
|
def exporter_add(
|
|
38
38
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
39
|
-
execution_context: str = None,
|
|
39
|
+
execution_context: typing.Union[str, int] = None,
|
|
40
40
|
undo: bool = None,
|
|
41
41
|
name: typing.Union[str, typing.Any] = "",
|
|
42
42
|
):
|
|
43
43
|
"""Add Exporter
|
|
44
44
|
|
|
45
45
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
46
|
-
:type execution_context: str
|
|
46
|
+
:type execution_context: typing.Union[str, int]
|
|
47
47
|
:type undo: bool
|
|
48
48
|
:param name: Name, FileHandler idname
|
|
49
49
|
:type name: typing.Union[str, typing.Any]
|
|
@@ -53,14 +53,14 @@ def exporter_add(
|
|
|
53
53
|
|
|
54
54
|
def exporter_export(
|
|
55
55
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
56
|
-
execution_context: str = None,
|
|
56
|
+
execution_context: typing.Union[str, int] = None,
|
|
57
57
|
undo: bool = None,
|
|
58
58
|
index: typing.Any = 0,
|
|
59
59
|
):
|
|
60
60
|
"""Invoke the export operation
|
|
61
61
|
|
|
62
62
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
63
|
-
:type execution_context: str
|
|
63
|
+
:type execution_context: typing.Union[str, int]
|
|
64
64
|
:type undo: bool
|
|
65
65
|
:param index: Index, Exporter index
|
|
66
66
|
:type index: typing.Any
|
|
@@ -70,14 +70,14 @@ def exporter_export(
|
|
|
70
70
|
|
|
71
71
|
def exporter_remove(
|
|
72
72
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
73
|
-
execution_context: str = None,
|
|
73
|
+
execution_context: typing.Union[str, int] = None,
|
|
74
74
|
undo: bool = None,
|
|
75
75
|
index: typing.Any = 0,
|
|
76
76
|
):
|
|
77
77
|
"""Remove Exporter
|
|
78
78
|
|
|
79
79
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
80
|
-
:type execution_context: str
|
|
80
|
+
:type execution_context: typing.Union[str, int]
|
|
81
81
|
:type undo: bool
|
|
82
82
|
:param index: Index, Exporter index
|
|
83
83
|
:type index: typing.Any
|
|
@@ -87,14 +87,14 @@ def exporter_remove(
|
|
|
87
87
|
|
|
88
88
|
def objects_add_active(
|
|
89
89
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
90
|
-
execution_context: str = None,
|
|
90
|
+
execution_context: typing.Union[str, int] = None,
|
|
91
91
|
undo: bool = None,
|
|
92
92
|
collection: typing.Union[str, int, typing.Any] = "",
|
|
93
93
|
):
|
|
94
94
|
"""Add the object to an object collection that contains the active object
|
|
95
95
|
|
|
96
96
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
97
|
-
:type execution_context: str
|
|
97
|
+
:type execution_context: typing.Union[str, int]
|
|
98
98
|
:type undo: bool
|
|
99
99
|
:param collection: Collection, The collection to add other selected objects to
|
|
100
100
|
:type collection: typing.Union[str, int, typing.Any]
|
|
@@ -104,14 +104,14 @@ def objects_add_active(
|
|
|
104
104
|
|
|
105
105
|
def objects_remove(
|
|
106
106
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
107
|
-
execution_context: str = None,
|
|
107
|
+
execution_context: typing.Union[str, int] = None,
|
|
108
108
|
undo: bool = None,
|
|
109
109
|
collection: typing.Union[str, int, typing.Any] = "",
|
|
110
110
|
):
|
|
111
111
|
"""Remove selected objects from a collection
|
|
112
112
|
|
|
113
113
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
114
|
-
:type execution_context: str
|
|
114
|
+
:type execution_context: typing.Union[str, int]
|
|
115
115
|
:type undo: bool
|
|
116
116
|
:param collection: Collection, The collection to remove this object from
|
|
117
117
|
:type collection: typing.Union[str, int, typing.Any]
|
|
@@ -121,14 +121,14 @@ def objects_remove(
|
|
|
121
121
|
|
|
122
122
|
def objects_remove_active(
|
|
123
123
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
124
|
-
execution_context: str = None,
|
|
124
|
+
execution_context: typing.Union[str, int] = None,
|
|
125
125
|
undo: bool = None,
|
|
126
126
|
collection: typing.Union[str, int, typing.Any] = "",
|
|
127
127
|
):
|
|
128
128
|
"""Remove the object from an object collection that contains the active object
|
|
129
129
|
|
|
130
130
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
131
|
-
:type execution_context: str
|
|
131
|
+
:type execution_context: typing.Union[str, int]
|
|
132
132
|
:type undo: bool
|
|
133
133
|
:param collection: Collection, The collection to remove other selected objects from
|
|
134
134
|
:type collection: typing.Union[str, int, typing.Any]
|
|
@@ -138,13 +138,13 @@ def objects_remove_active(
|
|
|
138
138
|
|
|
139
139
|
def objects_remove_all(
|
|
140
140
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
141
|
-
execution_context: str = None,
|
|
141
|
+
execution_context: typing.Union[str, int] = None,
|
|
142
142
|
undo: bool = None,
|
|
143
143
|
):
|
|
144
144
|
"""Remove selected objects from all collections
|
|
145
145
|
|
|
146
146
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
147
|
-
:type execution_context: str
|
|
147
|
+
:type execution_context: typing.Union[str, int]
|
|
148
148
|
:type undo: bool
|
|
149
149
|
"""
|
|
150
150
|
|
bpy/ops/console/__init__.pyi
CHANGED
|
@@ -5,13 +5,13 @@ GenericType = typing.TypeVar("GenericType")
|
|
|
5
5
|
|
|
6
6
|
def autocomplete(
|
|
7
7
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
8
|
-
execution_context: str = None,
|
|
8
|
+
execution_context: typing.Union[str, int] = None,
|
|
9
9
|
undo: bool = None,
|
|
10
10
|
):
|
|
11
11
|
"""Evaluate the namespace up until the cursor and give a list of options or complete the name if there is only one
|
|
12
12
|
|
|
13
13
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
14
|
-
:type execution_context: str
|
|
14
|
+
:type execution_context: typing.Union[str, int]
|
|
15
15
|
:type undo: bool
|
|
16
16
|
"""
|
|
17
17
|
|
|
@@ -19,13 +19,13 @@ def autocomplete(
|
|
|
19
19
|
|
|
20
20
|
def banner(
|
|
21
21
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
22
|
-
execution_context: str = None,
|
|
22
|
+
execution_context: typing.Union[str, int] = None,
|
|
23
23
|
undo: bool = None,
|
|
24
24
|
):
|
|
25
25
|
"""Print a message when the terminal initializes
|
|
26
26
|
|
|
27
27
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
28
|
-
:type execution_context: str
|
|
28
|
+
:type execution_context: typing.Union[str, int]
|
|
29
29
|
:type undo: bool
|
|
30
30
|
"""
|
|
31
31
|
|
|
@@ -33,7 +33,7 @@ def banner(
|
|
|
33
33
|
|
|
34
34
|
def clear(
|
|
35
35
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
36
|
-
execution_context: str = None,
|
|
36
|
+
execution_context: typing.Union[str, int] = None,
|
|
37
37
|
undo: bool = None,
|
|
38
38
|
scrollback: typing.Union[bool, typing.Any] = True,
|
|
39
39
|
history: typing.Union[bool, typing.Any] = False,
|
|
@@ -41,7 +41,7 @@ def clear(
|
|
|
41
41
|
"""Clear text by type
|
|
42
42
|
|
|
43
43
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
44
|
-
:type execution_context: str
|
|
44
|
+
:type execution_context: typing.Union[str, int]
|
|
45
45
|
:type undo: bool
|
|
46
46
|
:param scrollback: Scrollback, Clear the scrollback history
|
|
47
47
|
:type scrollback: typing.Union[bool, typing.Any]
|
|
@@ -53,13 +53,13 @@ def clear(
|
|
|
53
53
|
|
|
54
54
|
def clear_line(
|
|
55
55
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
56
|
-
execution_context: str = None,
|
|
56
|
+
execution_context: typing.Union[str, int] = None,
|
|
57
57
|
undo: bool = None,
|
|
58
58
|
):
|
|
59
59
|
"""Clear the line and store in history
|
|
60
60
|
|
|
61
61
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
62
|
-
:type execution_context: str
|
|
62
|
+
:type execution_context: typing.Union[str, int]
|
|
63
63
|
:type undo: bool
|
|
64
64
|
"""
|
|
65
65
|
|
|
@@ -67,14 +67,14 @@ def clear_line(
|
|
|
67
67
|
|
|
68
68
|
def copy(
|
|
69
69
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
70
|
-
execution_context: str = None,
|
|
70
|
+
execution_context: typing.Union[str, int] = None,
|
|
71
71
|
undo: bool = None,
|
|
72
72
|
delete: typing.Union[bool, typing.Any] = False,
|
|
73
73
|
):
|
|
74
74
|
"""Copy selected text to clipboard
|
|
75
75
|
|
|
76
76
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
77
|
-
:type execution_context: str
|
|
77
|
+
:type execution_context: typing.Union[str, int]
|
|
78
78
|
:type undo: bool
|
|
79
79
|
:param delete: Delete Selection, Whether to delete the selection after copying
|
|
80
80
|
:type delete: typing.Union[bool, typing.Any]
|
|
@@ -84,13 +84,13 @@ def copy(
|
|
|
84
84
|
|
|
85
85
|
def copy_as_script(
|
|
86
86
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
87
|
-
execution_context: str = None,
|
|
87
|
+
execution_context: typing.Union[str, int] = None,
|
|
88
88
|
undo: bool = None,
|
|
89
89
|
):
|
|
90
90
|
"""Copy the console contents for use in a script
|
|
91
91
|
|
|
92
92
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
93
|
-
:type execution_context: str
|
|
93
|
+
:type execution_context: typing.Union[str, int]
|
|
94
94
|
:type undo: bool
|
|
95
95
|
"""
|
|
96
96
|
|
|
@@ -98,14 +98,14 @@ def copy_as_script(
|
|
|
98
98
|
|
|
99
99
|
def delete(
|
|
100
100
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
101
|
-
execution_context: str = None,
|
|
101
|
+
execution_context: typing.Union[str, int] = None,
|
|
102
102
|
undo: bool = None,
|
|
103
103
|
type: typing.Any = "NEXT_CHARACTER",
|
|
104
104
|
):
|
|
105
105
|
"""Delete text by cursor position
|
|
106
106
|
|
|
107
107
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
108
|
-
:type execution_context: str
|
|
108
|
+
:type execution_context: typing.Union[str, int]
|
|
109
109
|
:type undo: bool
|
|
110
110
|
:param type: Type, Which part of the text to delete
|
|
111
111
|
:type type: typing.Any
|
|
@@ -115,14 +115,14 @@ def delete(
|
|
|
115
115
|
|
|
116
116
|
def execute(
|
|
117
117
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
118
|
-
execution_context: str = None,
|
|
118
|
+
execution_context: typing.Union[str, int] = None,
|
|
119
119
|
undo: bool = None,
|
|
120
120
|
interactive: typing.Union[bool, typing.Any] = False,
|
|
121
121
|
):
|
|
122
122
|
"""Execute the current console line as a Python expression
|
|
123
123
|
|
|
124
124
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
125
|
-
:type execution_context: str
|
|
125
|
+
:type execution_context: typing.Union[str, int]
|
|
126
126
|
:type undo: bool
|
|
127
127
|
:param interactive: interactive
|
|
128
128
|
:type interactive: typing.Union[bool, typing.Any]
|
|
@@ -132,7 +132,7 @@ def execute(
|
|
|
132
132
|
|
|
133
133
|
def history_append(
|
|
134
134
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
135
|
-
execution_context: str = None,
|
|
135
|
+
execution_context: typing.Union[str, int] = None,
|
|
136
136
|
undo: bool = None,
|
|
137
137
|
text: typing.Union[str, typing.Any] = "",
|
|
138
138
|
current_character: typing.Any = 0,
|
|
@@ -141,7 +141,7 @@ def history_append(
|
|
|
141
141
|
"""Append history at cursor position
|
|
142
142
|
|
|
143
143
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
144
|
-
:type execution_context: str
|
|
144
|
+
:type execution_context: typing.Union[str, int]
|
|
145
145
|
:type undo: bool
|
|
146
146
|
:param text: Text, Text to insert at the cursor position
|
|
147
147
|
:type text: typing.Union[str, typing.Any]
|
|
@@ -155,14 +155,14 @@ def history_append(
|
|
|
155
155
|
|
|
156
156
|
def history_cycle(
|
|
157
157
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
158
|
-
execution_context: str = None,
|
|
158
|
+
execution_context: typing.Union[str, int] = None,
|
|
159
159
|
undo: bool = None,
|
|
160
160
|
reverse: typing.Union[bool, typing.Any] = False,
|
|
161
161
|
):
|
|
162
162
|
"""Cycle through history
|
|
163
163
|
|
|
164
164
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
165
|
-
:type execution_context: str
|
|
165
|
+
:type execution_context: typing.Union[str, int]
|
|
166
166
|
:type undo: bool
|
|
167
167
|
:param reverse: Reverse, Reverse cycle history
|
|
168
168
|
:type reverse: typing.Union[bool, typing.Any]
|
|
@@ -172,13 +172,13 @@ def history_cycle(
|
|
|
172
172
|
|
|
173
173
|
def indent(
|
|
174
174
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
175
|
-
execution_context: str = None,
|
|
175
|
+
execution_context: typing.Union[str, int] = None,
|
|
176
176
|
undo: bool = None,
|
|
177
177
|
):
|
|
178
178
|
"""Add 4 spaces at line beginning
|
|
179
179
|
|
|
180
180
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
181
|
-
:type execution_context: str
|
|
181
|
+
:type execution_context: typing.Union[str, int]
|
|
182
182
|
:type undo: bool
|
|
183
183
|
"""
|
|
184
184
|
|
|
@@ -186,13 +186,13 @@ def indent(
|
|
|
186
186
|
|
|
187
187
|
def indent_or_autocomplete(
|
|
188
188
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
189
|
-
execution_context: str = None,
|
|
189
|
+
execution_context: typing.Union[str, int] = None,
|
|
190
190
|
undo: bool = None,
|
|
191
191
|
):
|
|
192
192
|
"""Indent selected text or autocomplete
|
|
193
193
|
|
|
194
194
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
195
|
-
:type execution_context: str
|
|
195
|
+
:type execution_context: typing.Union[str, int]
|
|
196
196
|
:type undo: bool
|
|
197
197
|
"""
|
|
198
198
|
|
|
@@ -200,14 +200,14 @@ def indent_or_autocomplete(
|
|
|
200
200
|
|
|
201
201
|
def insert(
|
|
202
202
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
203
|
-
execution_context: str = None,
|
|
203
|
+
execution_context: typing.Union[str, int] = None,
|
|
204
204
|
undo: bool = None,
|
|
205
205
|
text: typing.Union[str, typing.Any] = "",
|
|
206
206
|
):
|
|
207
207
|
"""Insert text at cursor position
|
|
208
208
|
|
|
209
209
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
210
|
-
:type execution_context: str
|
|
210
|
+
:type execution_context: typing.Union[str, int]
|
|
211
211
|
:type undo: bool
|
|
212
212
|
:param text: Text, Text to insert at the cursor position
|
|
213
213
|
:type text: typing.Union[str, typing.Any]
|
|
@@ -217,14 +217,14 @@ def insert(
|
|
|
217
217
|
|
|
218
218
|
def language(
|
|
219
219
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
220
|
-
execution_context: str = None,
|
|
220
|
+
execution_context: typing.Union[str, int] = None,
|
|
221
221
|
undo: bool = None,
|
|
222
222
|
language: typing.Union[str, typing.Any] = "",
|
|
223
223
|
):
|
|
224
224
|
"""Set the current language for this console
|
|
225
225
|
|
|
226
226
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
227
|
-
:type execution_context: str
|
|
227
|
+
:type execution_context: typing.Union[str, int]
|
|
228
228
|
:type undo: bool
|
|
229
229
|
:param language: Language
|
|
230
230
|
:type language: typing.Union[str, typing.Any]
|
|
@@ -234,7 +234,7 @@ def language(
|
|
|
234
234
|
|
|
235
235
|
def move(
|
|
236
236
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
237
|
-
execution_context: str = None,
|
|
237
|
+
execution_context: typing.Union[str, int] = None,
|
|
238
238
|
undo: bool = None,
|
|
239
239
|
type: typing.Any = "LINE_BEGIN",
|
|
240
240
|
select: typing.Union[bool, typing.Any] = False,
|
|
@@ -242,7 +242,7 @@ def move(
|
|
|
242
242
|
"""Move cursor position
|
|
243
243
|
|
|
244
244
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
245
|
-
:type execution_context: str
|
|
245
|
+
:type execution_context: typing.Union[str, int]
|
|
246
246
|
:type undo: bool
|
|
247
247
|
:param type: Type, Where to move cursor to
|
|
248
248
|
:type type: typing.Any
|
|
@@ -254,14 +254,14 @@ def move(
|
|
|
254
254
|
|
|
255
255
|
def paste(
|
|
256
256
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
257
|
-
execution_context: str = None,
|
|
257
|
+
execution_context: typing.Union[str, int] = None,
|
|
258
258
|
undo: bool = None,
|
|
259
259
|
selection: typing.Union[bool, typing.Any] = False,
|
|
260
260
|
):
|
|
261
261
|
"""Paste text from clipboard
|
|
262
262
|
|
|
263
263
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
264
|
-
:type execution_context: str
|
|
264
|
+
:type execution_context: typing.Union[str, int]
|
|
265
265
|
:type undo: bool
|
|
266
266
|
:param selection: Selection, Paste text selected elsewhere rather than copied (X11/Wayland only)
|
|
267
267
|
:type selection: typing.Union[bool, typing.Any]
|
|
@@ -271,7 +271,7 @@ def paste(
|
|
|
271
271
|
|
|
272
272
|
def scrollback_append(
|
|
273
273
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
274
|
-
execution_context: str = None,
|
|
274
|
+
execution_context: typing.Union[str, int] = None,
|
|
275
275
|
undo: bool = None,
|
|
276
276
|
text: typing.Union[str, typing.Any] = "",
|
|
277
277
|
type: typing.Any = "OUTPUT",
|
|
@@ -279,7 +279,7 @@ def scrollback_append(
|
|
|
279
279
|
"""Append scrollback text by type
|
|
280
280
|
|
|
281
281
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
282
|
-
:type execution_context: str
|
|
282
|
+
:type execution_context: typing.Union[str, int]
|
|
283
283
|
:type undo: bool
|
|
284
284
|
:param text: Text, Text to insert at the cursor position
|
|
285
285
|
:type text: typing.Union[str, typing.Any]
|
|
@@ -291,13 +291,13 @@ def scrollback_append(
|
|
|
291
291
|
|
|
292
292
|
def select_all(
|
|
293
293
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
294
|
-
execution_context: str = None,
|
|
294
|
+
execution_context: typing.Union[str, int] = None,
|
|
295
295
|
undo: bool = None,
|
|
296
296
|
):
|
|
297
297
|
"""Select all the text
|
|
298
298
|
|
|
299
299
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
300
|
-
:type execution_context: str
|
|
300
|
+
:type execution_context: typing.Union[str, int]
|
|
301
301
|
:type undo: bool
|
|
302
302
|
"""
|
|
303
303
|
|
|
@@ -305,13 +305,13 @@ def select_all(
|
|
|
305
305
|
|
|
306
306
|
def select_set(
|
|
307
307
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
308
|
-
execution_context: str = None,
|
|
308
|
+
execution_context: typing.Union[str, int] = None,
|
|
309
309
|
undo: bool = None,
|
|
310
310
|
):
|
|
311
311
|
"""Set the console selection
|
|
312
312
|
|
|
313
313
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
314
|
-
:type execution_context: str
|
|
314
|
+
:type execution_context: typing.Union[str, int]
|
|
315
315
|
:type undo: bool
|
|
316
316
|
"""
|
|
317
317
|
|
|
@@ -319,13 +319,13 @@ def select_set(
|
|
|
319
319
|
|
|
320
320
|
def select_word(
|
|
321
321
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
322
|
-
execution_context: str = None,
|
|
322
|
+
execution_context: typing.Union[str, int] = None,
|
|
323
323
|
undo: bool = None,
|
|
324
324
|
):
|
|
325
325
|
"""Select word at cursor position
|
|
326
326
|
|
|
327
327
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
328
|
-
:type execution_context: str
|
|
328
|
+
:type execution_context: typing.Union[str, int]
|
|
329
329
|
:type undo: bool
|
|
330
330
|
"""
|
|
331
331
|
|
|
@@ -333,13 +333,13 @@ def select_word(
|
|
|
333
333
|
|
|
334
334
|
def unindent(
|
|
335
335
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
336
|
-
execution_context: str = None,
|
|
336
|
+
execution_context: typing.Union[str, int] = None,
|
|
337
337
|
undo: bool = None,
|
|
338
338
|
):
|
|
339
339
|
"""Delete 4 spaces from line beginning
|
|
340
340
|
|
|
341
341
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
342
|
-
:type execution_context: str
|
|
342
|
+
:type execution_context: typing.Union[str, int]
|
|
343
343
|
:type undo: bool
|
|
344
344
|
"""
|
|
345
345
|
|