fake-bpy-module 20240928__py3-none-any.whl → 20240930__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_ui/generic_ui_list/__init__.pyi +2 -2
- bmesh/types/__init__.pyi +2 -2
- bpy/__init__.pyi +1 -1
- bpy/ops/action/__init__.pyi +76 -76
- bpy/ops/anim/__init__.pyi +124 -124
- 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 +26 -26
- 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 +54 -54
- 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_scene/__init__.pyi +4 -4
- bpy/ops/extensions/__init__.pyi +68 -68
- 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 +284 -284
- bpy/ops/graph/__init__.pyi +130 -130
- bpy/ops/grease_pencil/__init__.pyi +202 -202
- bpy/ops/image/__init__.pyi +98 -98
- bpy/ops/import_anim/__init__.pyi +2 -2
- bpy/ops/import_curve/__init__.pyi +2 -2
- bpy/ops/import_scene/__init__.pyi +4 -4
- 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 +326 -326
- bpy/ops/nla/__init__.pyi +78 -78
- bpy/ops/node/__init__.pyi +230 -230
- bpy/ops/object/__init__.pyi +476 -476
- bpy/ops/outliner/__init__.pyi +142 -142
- bpy/ops/paint/__init__.pyi +108 -108
- 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 +102 -102
- bpy/ops/poselib/__init__.pyi +18 -18
- bpy/ops/preferences/__init__.pyi +70 -70
- bpy/ops/ptcache/__init__.pyi +14 -14
- bpy/ops/render/__init__.pyi +26 -26
- bpy/ops/rigidbody/__init__.pyi +26 -26
- bpy/ops/scene/__init__.pyi +74 -74
- bpy/ops/screen/__init__.pyi +78 -78
- bpy/ops/script/__init__.pyi +6 -6
- bpy/ops/sculpt/__init__.pyi +74 -74
- bpy/ops/sculpt_curves/__init__.pyi +8 -8
- bpy/ops/sequencer/__init__.pyi +178 -178
- 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 +68 -68
- 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 +232 -232
- bpy/ops/workspace/__init__.pyi +14 -14
- bpy/ops/world/__init__.pyi +4 -4
- bpy/types/__init__.pyi +333 -298
- bpy_extras/object_utils/__init__.pyi +4 -4
- {fake_bpy_module-20240928.dist-info → fake_bpy_module-20240930.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240928.dist-info → fake_bpy_module-20240930.dist-info}/RECORD +85 -85
- {fake_bpy_module-20240928.dist-info → fake_bpy_module-20240930.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240928.dist-info → fake_bpy_module-20240930.dist-info}/top_level.txt +0 -0
bpy/ops/fluid/__init__.pyi
CHANGED
|
@@ -4,163 +4,163 @@ import typing_extensions
|
|
|
4
4
|
import bpy.types
|
|
5
5
|
|
|
6
6
|
def bake_all(
|
|
7
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
7
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
8
8
|
execution_context: int | str | None = None,
|
|
9
9
|
undo: bool | None = None,
|
|
10
10
|
):
|
|
11
11
|
"""Bake Entire Fluid Simulation
|
|
12
12
|
|
|
13
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
13
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
14
14
|
:type execution_context: int | str | None
|
|
15
15
|
:type undo: bool | None
|
|
16
16
|
"""
|
|
17
17
|
|
|
18
18
|
def bake_data(
|
|
19
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
19
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
20
20
|
execution_context: int | str | None = None,
|
|
21
21
|
undo: bool | None = None,
|
|
22
22
|
):
|
|
23
23
|
"""Bake Fluid Data
|
|
24
24
|
|
|
25
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
25
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
26
26
|
:type execution_context: int | str | None
|
|
27
27
|
:type undo: bool | None
|
|
28
28
|
"""
|
|
29
29
|
|
|
30
30
|
def bake_guides(
|
|
31
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
31
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
32
32
|
execution_context: int | str | None = None,
|
|
33
33
|
undo: bool | None = None,
|
|
34
34
|
):
|
|
35
35
|
"""Bake Fluid Guiding
|
|
36
36
|
|
|
37
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
37
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
38
38
|
:type execution_context: int | str | None
|
|
39
39
|
:type undo: bool | None
|
|
40
40
|
"""
|
|
41
41
|
|
|
42
42
|
def bake_mesh(
|
|
43
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
43
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
44
44
|
execution_context: int | str | None = None,
|
|
45
45
|
undo: bool | None = None,
|
|
46
46
|
):
|
|
47
47
|
"""Bake Fluid Mesh
|
|
48
48
|
|
|
49
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
49
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
50
50
|
:type execution_context: int | str | None
|
|
51
51
|
:type undo: bool | None
|
|
52
52
|
"""
|
|
53
53
|
|
|
54
54
|
def bake_noise(
|
|
55
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
55
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
56
56
|
execution_context: int | str | None = None,
|
|
57
57
|
undo: bool | None = None,
|
|
58
58
|
):
|
|
59
59
|
"""Bake Fluid Noise
|
|
60
60
|
|
|
61
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
61
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
62
62
|
:type execution_context: int | str | None
|
|
63
63
|
:type undo: bool | None
|
|
64
64
|
"""
|
|
65
65
|
|
|
66
66
|
def bake_particles(
|
|
67
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
67
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
68
68
|
execution_context: int | str | None = None,
|
|
69
69
|
undo: bool | None = None,
|
|
70
70
|
):
|
|
71
71
|
"""Bake Fluid Particles
|
|
72
72
|
|
|
73
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
73
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
74
74
|
:type execution_context: int | str | None
|
|
75
75
|
:type undo: bool | None
|
|
76
76
|
"""
|
|
77
77
|
|
|
78
78
|
def free_all(
|
|
79
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
79
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
80
80
|
execution_context: int | str | None = None,
|
|
81
81
|
undo: bool | None = None,
|
|
82
82
|
):
|
|
83
83
|
"""Free Entire Fluid Simulation
|
|
84
84
|
|
|
85
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
85
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
86
86
|
:type execution_context: int | str | None
|
|
87
87
|
:type undo: bool | None
|
|
88
88
|
"""
|
|
89
89
|
|
|
90
90
|
def free_data(
|
|
91
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
91
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
92
92
|
execution_context: int | str | None = None,
|
|
93
93
|
undo: bool | None = None,
|
|
94
94
|
):
|
|
95
95
|
"""Free Fluid Data
|
|
96
96
|
|
|
97
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
97
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
98
98
|
:type execution_context: int | str | None
|
|
99
99
|
:type undo: bool | None
|
|
100
100
|
"""
|
|
101
101
|
|
|
102
102
|
def free_guides(
|
|
103
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
103
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
104
104
|
execution_context: int | str | None = None,
|
|
105
105
|
undo: bool | None = None,
|
|
106
106
|
):
|
|
107
107
|
"""Free Fluid Guiding
|
|
108
108
|
|
|
109
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
109
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
110
110
|
:type execution_context: int | str | None
|
|
111
111
|
:type undo: bool | None
|
|
112
112
|
"""
|
|
113
113
|
|
|
114
114
|
def free_mesh(
|
|
115
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
115
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
116
116
|
execution_context: int | str | None = None,
|
|
117
117
|
undo: bool | None = None,
|
|
118
118
|
):
|
|
119
119
|
"""Free Fluid Mesh
|
|
120
120
|
|
|
121
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
121
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
122
122
|
:type execution_context: int | str | None
|
|
123
123
|
:type undo: bool | None
|
|
124
124
|
"""
|
|
125
125
|
|
|
126
126
|
def free_noise(
|
|
127
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
127
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
128
128
|
execution_context: int | str | None = None,
|
|
129
129
|
undo: bool | None = None,
|
|
130
130
|
):
|
|
131
131
|
"""Free Fluid Noise
|
|
132
132
|
|
|
133
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
133
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
134
134
|
:type execution_context: int | str | None
|
|
135
135
|
:type undo: bool | None
|
|
136
136
|
"""
|
|
137
137
|
|
|
138
138
|
def free_particles(
|
|
139
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
139
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
140
140
|
execution_context: int | str | None = None,
|
|
141
141
|
undo: bool | None = None,
|
|
142
142
|
):
|
|
143
143
|
"""Free Fluid Particles
|
|
144
144
|
|
|
145
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
145
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
146
146
|
:type execution_context: int | str | None
|
|
147
147
|
:type undo: bool | None
|
|
148
148
|
"""
|
|
149
149
|
|
|
150
150
|
def pause_bake(
|
|
151
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
151
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
152
152
|
execution_context: int | str | None = None,
|
|
153
153
|
undo: bool | None = None,
|
|
154
154
|
):
|
|
155
155
|
"""Pause Bake
|
|
156
156
|
|
|
157
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
157
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
158
158
|
:type execution_context: int | str | None
|
|
159
159
|
:type undo: bool | None
|
|
160
160
|
"""
|
|
161
161
|
|
|
162
162
|
def preset_add(
|
|
163
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
163
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
164
164
|
execution_context: int | str | None = None,
|
|
165
165
|
undo: bool | None = None,
|
|
166
166
|
*,
|
|
@@ -170,7 +170,7 @@ def preset_add(
|
|
|
170
170
|
):
|
|
171
171
|
"""Add or remove a Fluid Preset
|
|
172
172
|
|
|
173
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
173
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
174
174
|
:type execution_context: int | str | None
|
|
175
175
|
:type undo: bool | None
|
|
176
176
|
:param name: Name, Name of the preset, used to make the path name
|
bpy/ops/font/__init__.pyi
CHANGED
|
@@ -4,7 +4,7 @@ import typing_extensions
|
|
|
4
4
|
import bpy.types
|
|
5
5
|
|
|
6
6
|
def case_set(
|
|
7
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
7
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
8
8
|
execution_context: int | str | None = None,
|
|
9
9
|
undo: bool | None = None,
|
|
10
10
|
*,
|
|
@@ -12,7 +12,7 @@ def case_set(
|
|
|
12
12
|
):
|
|
13
13
|
"""Set font case
|
|
14
14
|
|
|
15
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
15
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
16
16
|
:type execution_context: int | str | None
|
|
17
17
|
:type undo: bool | None
|
|
18
18
|
:param case: Case, Lower or upper case
|
|
@@ -20,19 +20,19 @@ def case_set(
|
|
|
20
20
|
"""
|
|
21
21
|
|
|
22
22
|
def case_toggle(
|
|
23
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
23
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
24
24
|
execution_context: int | str | None = None,
|
|
25
25
|
undo: bool | None = None,
|
|
26
26
|
):
|
|
27
27
|
"""Toggle font case
|
|
28
28
|
|
|
29
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
29
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
30
30
|
:type execution_context: int | str | None
|
|
31
31
|
:type undo: bool | None
|
|
32
32
|
"""
|
|
33
33
|
|
|
34
34
|
def change_character(
|
|
35
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
35
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
36
36
|
execution_context: int | str | None = None,
|
|
37
37
|
undo: bool | None = None,
|
|
38
38
|
*,
|
|
@@ -40,7 +40,7 @@ def change_character(
|
|
|
40
40
|
):
|
|
41
41
|
"""Change font character code
|
|
42
42
|
|
|
43
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
43
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
44
44
|
:type execution_context: int | str | None
|
|
45
45
|
:type undo: bool | None
|
|
46
46
|
:param delta: Delta, Number to increase or decrease character code with
|
|
@@ -48,7 +48,7 @@ def change_character(
|
|
|
48
48
|
"""
|
|
49
49
|
|
|
50
50
|
def change_spacing(
|
|
51
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
51
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
52
52
|
execution_context: int | str | None = None,
|
|
53
53
|
undo: bool | None = None,
|
|
54
54
|
*,
|
|
@@ -56,7 +56,7 @@ def change_spacing(
|
|
|
56
56
|
):
|
|
57
57
|
"""Change font spacing
|
|
58
58
|
|
|
59
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
59
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
60
60
|
:type execution_context: int | str | None
|
|
61
61
|
:type undo: bool | None
|
|
62
62
|
:param delta: Delta, Amount to decrease or increase character spacing with
|
|
@@ -64,7 +64,7 @@ def change_spacing(
|
|
|
64
64
|
"""
|
|
65
65
|
|
|
66
66
|
def delete(
|
|
67
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
67
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
68
68
|
execution_context: int | str | None = None,
|
|
69
69
|
undo: bool | None = None,
|
|
70
70
|
*,
|
|
@@ -81,7 +81,7 @@ def delete(
|
|
|
81
81
|
):
|
|
82
82
|
"""Delete text by cursor position
|
|
83
83
|
|
|
84
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
84
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
85
85
|
:type execution_context: int | str | None
|
|
86
86
|
:type undo: bool | None
|
|
87
87
|
:param type: Type, Which part of the text to delete
|
|
@@ -89,19 +89,19 @@ def delete(
|
|
|
89
89
|
"""
|
|
90
90
|
|
|
91
91
|
def line_break(
|
|
92
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
92
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
93
93
|
execution_context: int | str | None = None,
|
|
94
94
|
undo: bool | None = None,
|
|
95
95
|
):
|
|
96
96
|
"""Insert line break at cursor position
|
|
97
97
|
|
|
98
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
98
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
99
99
|
:type execution_context: int | str | None
|
|
100
100
|
:type undo: bool | None
|
|
101
101
|
"""
|
|
102
102
|
|
|
103
103
|
def move(
|
|
104
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
104
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
105
105
|
execution_context: int | str | None = None,
|
|
106
106
|
undo: bool | None = None,
|
|
107
107
|
*,
|
|
@@ -123,7 +123,7 @@ def move(
|
|
|
123
123
|
):
|
|
124
124
|
"""Move cursor to position type
|
|
125
125
|
|
|
126
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
126
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
127
127
|
:type execution_context: int | str | None
|
|
128
128
|
:type undo: bool | None
|
|
129
129
|
:param type: Type, Where to move cursor to
|
|
@@ -131,7 +131,7 @@ def move(
|
|
|
131
131
|
"""
|
|
132
132
|
|
|
133
133
|
def move_select(
|
|
134
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
134
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
135
135
|
execution_context: int | str | None = None,
|
|
136
136
|
undo: bool | None = None,
|
|
137
137
|
*,
|
|
@@ -153,7 +153,7 @@ def move_select(
|
|
|
153
153
|
):
|
|
154
154
|
"""Move the cursor while selecting
|
|
155
155
|
|
|
156
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
156
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
157
157
|
:type execution_context: int | str | None
|
|
158
158
|
:type undo: bool | None
|
|
159
159
|
:param type: Type, Where to move cursor to, to make a selection
|
|
@@ -161,7 +161,7 @@ def move_select(
|
|
|
161
161
|
"""
|
|
162
162
|
|
|
163
163
|
def open(
|
|
164
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
164
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
165
165
|
execution_context: int | str | None = None,
|
|
166
166
|
undo: bool | None = None,
|
|
167
167
|
*,
|
|
@@ -195,7 +195,7 @@ def open(
|
|
|
195
195
|
):
|
|
196
196
|
"""Load a new font from a file
|
|
197
197
|
|
|
198
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
198
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
199
199
|
:type execution_context: int | str | None
|
|
200
200
|
:type undo: bool | None
|
|
201
201
|
:param filepath: File Path, Path to file
|
|
@@ -261,43 +261,43 @@ def open(
|
|
|
261
261
|
"""
|
|
262
262
|
|
|
263
263
|
def select_all(
|
|
264
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
264
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
265
265
|
execution_context: int | str | None = None,
|
|
266
266
|
undo: bool | None = None,
|
|
267
267
|
):
|
|
268
268
|
"""Select all text
|
|
269
269
|
|
|
270
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
270
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
271
271
|
:type execution_context: int | str | None
|
|
272
272
|
:type undo: bool | None
|
|
273
273
|
"""
|
|
274
274
|
|
|
275
275
|
def select_word(
|
|
276
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
276
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
277
277
|
execution_context: int | str | None = None,
|
|
278
278
|
undo: bool | None = None,
|
|
279
279
|
):
|
|
280
280
|
"""Select word under cursor
|
|
281
281
|
|
|
282
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
282
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
283
283
|
:type execution_context: int | str | None
|
|
284
284
|
:type undo: bool | None
|
|
285
285
|
"""
|
|
286
286
|
|
|
287
287
|
def selection_set(
|
|
288
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
288
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
289
289
|
execution_context: int | str | None = None,
|
|
290
290
|
undo: bool | None = None,
|
|
291
291
|
):
|
|
292
292
|
"""Set cursor selection
|
|
293
293
|
|
|
294
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
294
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
295
295
|
:type execution_context: int | str | None
|
|
296
296
|
:type undo: bool | None
|
|
297
297
|
"""
|
|
298
298
|
|
|
299
299
|
def style_set(
|
|
300
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
300
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
301
301
|
execution_context: int | str | None = None,
|
|
302
302
|
undo: bool | None = None,
|
|
303
303
|
*,
|
|
@@ -306,7 +306,7 @@ def style_set(
|
|
|
306
306
|
):
|
|
307
307
|
"""Set font style
|
|
308
308
|
|
|
309
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
309
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
310
310
|
:type execution_context: int | str | None
|
|
311
311
|
:type undo: bool | None
|
|
312
312
|
:param style: Style, Style to set selection to
|
|
@@ -316,7 +316,7 @@ def style_set(
|
|
|
316
316
|
"""
|
|
317
317
|
|
|
318
318
|
def style_toggle(
|
|
319
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
319
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
320
320
|
execution_context: int | str | None = None,
|
|
321
321
|
undo: bool | None = None,
|
|
322
322
|
*,
|
|
@@ -324,7 +324,7 @@ def style_toggle(
|
|
|
324
324
|
):
|
|
325
325
|
"""Toggle font style
|
|
326
326
|
|
|
327
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
327
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
328
328
|
:type execution_context: int | str | None
|
|
329
329
|
:type undo: bool | None
|
|
330
330
|
:param style: Style, Style to set selection to
|
|
@@ -332,31 +332,31 @@ def style_toggle(
|
|
|
332
332
|
"""
|
|
333
333
|
|
|
334
334
|
def text_copy(
|
|
335
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
335
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
336
336
|
execution_context: int | str | None = None,
|
|
337
337
|
undo: bool | None = None,
|
|
338
338
|
):
|
|
339
339
|
"""Copy selected text to clipboard
|
|
340
340
|
|
|
341
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
341
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
342
342
|
:type execution_context: int | str | None
|
|
343
343
|
:type undo: bool | None
|
|
344
344
|
"""
|
|
345
345
|
|
|
346
346
|
def text_cut(
|
|
347
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
347
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
348
348
|
execution_context: int | str | None = None,
|
|
349
349
|
undo: bool | None = None,
|
|
350
350
|
):
|
|
351
351
|
"""Cut selected text to clipboard
|
|
352
352
|
|
|
353
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
353
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
354
354
|
:type execution_context: int | str | None
|
|
355
355
|
:type undo: bool | None
|
|
356
356
|
"""
|
|
357
357
|
|
|
358
358
|
def text_insert(
|
|
359
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
359
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
360
360
|
execution_context: int | str | None = None,
|
|
361
361
|
undo: bool | None = None,
|
|
362
362
|
*,
|
|
@@ -365,7 +365,7 @@ def text_insert(
|
|
|
365
365
|
):
|
|
366
366
|
"""Insert text at cursor position
|
|
367
367
|
|
|
368
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
368
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
369
369
|
:type execution_context: int | str | None
|
|
370
370
|
:type undo: bool | None
|
|
371
371
|
:param text: Text, Text to insert at the cursor position
|
|
@@ -375,19 +375,19 @@ def text_insert(
|
|
|
375
375
|
"""
|
|
376
376
|
|
|
377
377
|
def text_insert_unicode(
|
|
378
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
378
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
379
379
|
execution_context: int | str | None = None,
|
|
380
380
|
undo: bool | None = None,
|
|
381
381
|
):
|
|
382
382
|
"""Insert Unicode Character
|
|
383
383
|
|
|
384
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
384
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
385
385
|
:type execution_context: int | str | None
|
|
386
386
|
:type undo: bool | None
|
|
387
387
|
"""
|
|
388
388
|
|
|
389
389
|
def text_paste(
|
|
390
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
390
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
391
391
|
execution_context: int | str | None = None,
|
|
392
392
|
undo: bool | None = None,
|
|
393
393
|
*,
|
|
@@ -395,7 +395,7 @@ def text_paste(
|
|
|
395
395
|
):
|
|
396
396
|
"""Paste text from clipboard
|
|
397
397
|
|
|
398
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
398
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
399
399
|
:type execution_context: int | str | None
|
|
400
400
|
:type undo: bool | None
|
|
401
401
|
:param selection: Selection, Paste text selected elsewhere rather than copied (X11/Wayland only)
|
|
@@ -403,7 +403,7 @@ def text_paste(
|
|
|
403
403
|
"""
|
|
404
404
|
|
|
405
405
|
def text_paste_from_file(
|
|
406
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
406
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
407
407
|
execution_context: int | str | None = None,
|
|
408
408
|
undo: bool | None = None,
|
|
409
409
|
*,
|
|
@@ -436,7 +436,7 @@ def text_paste_from_file(
|
|
|
436
436
|
):
|
|
437
437
|
"""Paste contents from file
|
|
438
438
|
|
|
439
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
439
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
440
440
|
:type execution_context: int | str | None
|
|
441
441
|
:type undo: bool | None
|
|
442
442
|
:param filepath: File Path, Path to file
|
|
@@ -500,19 +500,19 @@ def text_paste_from_file(
|
|
|
500
500
|
"""
|
|
501
501
|
|
|
502
502
|
def textbox_add(
|
|
503
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
503
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
504
504
|
execution_context: int | str | None = None,
|
|
505
505
|
undo: bool | None = None,
|
|
506
506
|
):
|
|
507
507
|
"""Add a new text box
|
|
508
508
|
|
|
509
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
509
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
510
510
|
:type execution_context: int | str | None
|
|
511
511
|
:type undo: bool | None
|
|
512
512
|
"""
|
|
513
513
|
|
|
514
514
|
def textbox_remove(
|
|
515
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
515
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
516
516
|
execution_context: int | str | None = None,
|
|
517
517
|
undo: bool | None = None,
|
|
518
518
|
*,
|
|
@@ -520,7 +520,7 @@ def textbox_remove(
|
|
|
520
520
|
):
|
|
521
521
|
"""Remove the text box
|
|
522
522
|
|
|
523
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
523
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
524
524
|
:type execution_context: int | str | None
|
|
525
525
|
:type undo: bool | None
|
|
526
526
|
:param index: Index, The current text box
|
|
@@ -528,13 +528,13 @@ def textbox_remove(
|
|
|
528
528
|
"""
|
|
529
529
|
|
|
530
530
|
def unlink(
|
|
531
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
531
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
532
532
|
execution_context: int | str | None = None,
|
|
533
533
|
undo: bool | None = None,
|
|
534
534
|
):
|
|
535
535
|
"""Unlink active font data-block
|
|
536
536
|
|
|
537
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
537
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
538
538
|
:type execution_context: int | str | None
|
|
539
539
|
:type undo: bool | None
|
|
540
540
|
"""
|