fake-bpy-module 20240811__py3-none-any.whl → 20240813__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/space_view3d/__init__.pyi +31 -0
- bpy/ops/action/__init__.pyi +76 -76
- bpy/ops/anim/__init__.pyi +110 -110
- 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 +166 -166
- 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 +208 -208
- bpy/ops/object/__init__.pyi +473 -473
- 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 +72 -72
- bpy/ops/sculpt_curves/__init__.pyi +8 -8
- bpy/ops/sequencer/__init__.pyi +174 -174
- 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 +226 -226
- bpy/ops/workspace/__init__.pyi +14 -14
- bpy/ops/world/__init__.pyi +4 -4
- bpy/types/__init__.pyi +76 -64
- {fake_bpy_module-20240811.dist-info → fake_bpy_module-20240813.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240811.dist-info → fake_bpy_module-20240813.dist-info}/RECORD +83 -83
- freestyle/utils/__init__.pyi +1 -1
- {fake_bpy_module-20240811.dist-info → fake_bpy_module-20240813.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240811.dist-info → fake_bpy_module-20240813.dist-info}/top_level.txt +0 -0
bpy/ops/fluid/__init__.pyi
CHANGED
|
@@ -7,13 +7,13 @@ GenericType1 = typing.TypeVar("GenericType1")
|
|
|
7
7
|
GenericType2 = typing.TypeVar("GenericType2")
|
|
8
8
|
|
|
9
9
|
def bake_all(
|
|
10
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
10
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
11
11
|
execution_context: int | str | None = None,
|
|
12
12
|
undo: bool | None = None,
|
|
13
13
|
):
|
|
14
14
|
"""Bake Entire Fluid Simulation
|
|
15
15
|
|
|
16
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
16
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
17
17
|
:type execution_context: int | str | None
|
|
18
18
|
:type undo: bool | None
|
|
19
19
|
"""
|
|
@@ -21,13 +21,13 @@ def bake_all(
|
|
|
21
21
|
...
|
|
22
22
|
|
|
23
23
|
def bake_data(
|
|
24
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
24
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
25
25
|
execution_context: int | str | None = None,
|
|
26
26
|
undo: bool | None = None,
|
|
27
27
|
):
|
|
28
28
|
"""Bake Fluid Data
|
|
29
29
|
|
|
30
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
30
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
31
31
|
:type execution_context: int | str | None
|
|
32
32
|
:type undo: bool | None
|
|
33
33
|
"""
|
|
@@ -35,13 +35,13 @@ def bake_data(
|
|
|
35
35
|
...
|
|
36
36
|
|
|
37
37
|
def bake_guides(
|
|
38
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
38
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
39
39
|
execution_context: int | str | None = None,
|
|
40
40
|
undo: bool | None = None,
|
|
41
41
|
):
|
|
42
42
|
"""Bake Fluid Guiding
|
|
43
43
|
|
|
44
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
44
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
45
45
|
:type execution_context: int | str | None
|
|
46
46
|
:type undo: bool | None
|
|
47
47
|
"""
|
|
@@ -49,13 +49,13 @@ def bake_guides(
|
|
|
49
49
|
...
|
|
50
50
|
|
|
51
51
|
def bake_mesh(
|
|
52
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
52
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
53
53
|
execution_context: int | str | None = None,
|
|
54
54
|
undo: bool | None = None,
|
|
55
55
|
):
|
|
56
56
|
"""Bake Fluid Mesh
|
|
57
57
|
|
|
58
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
58
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
59
59
|
:type execution_context: int | str | None
|
|
60
60
|
:type undo: bool | None
|
|
61
61
|
"""
|
|
@@ -63,13 +63,13 @@ def bake_mesh(
|
|
|
63
63
|
...
|
|
64
64
|
|
|
65
65
|
def bake_noise(
|
|
66
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
66
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
67
67
|
execution_context: int | str | None = None,
|
|
68
68
|
undo: bool | None = None,
|
|
69
69
|
):
|
|
70
70
|
"""Bake Fluid Noise
|
|
71
71
|
|
|
72
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
72
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
73
73
|
:type execution_context: int | str | None
|
|
74
74
|
:type undo: bool | None
|
|
75
75
|
"""
|
|
@@ -77,13 +77,13 @@ def bake_noise(
|
|
|
77
77
|
...
|
|
78
78
|
|
|
79
79
|
def bake_particles(
|
|
80
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
80
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
81
81
|
execution_context: int | str | None = None,
|
|
82
82
|
undo: bool | None = None,
|
|
83
83
|
):
|
|
84
84
|
"""Bake Fluid Particles
|
|
85
85
|
|
|
86
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
86
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
87
87
|
:type execution_context: int | str | None
|
|
88
88
|
:type undo: bool | None
|
|
89
89
|
"""
|
|
@@ -91,13 +91,13 @@ def bake_particles(
|
|
|
91
91
|
...
|
|
92
92
|
|
|
93
93
|
def free_all(
|
|
94
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
94
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
95
95
|
execution_context: int | str | None = None,
|
|
96
96
|
undo: bool | None = None,
|
|
97
97
|
):
|
|
98
98
|
"""Free Entire Fluid Simulation
|
|
99
99
|
|
|
100
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
100
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
101
101
|
:type execution_context: int | str | None
|
|
102
102
|
:type undo: bool | None
|
|
103
103
|
"""
|
|
@@ -105,13 +105,13 @@ def free_all(
|
|
|
105
105
|
...
|
|
106
106
|
|
|
107
107
|
def free_data(
|
|
108
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
108
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
109
109
|
execution_context: int | str | None = None,
|
|
110
110
|
undo: bool | None = None,
|
|
111
111
|
):
|
|
112
112
|
"""Free Fluid Data
|
|
113
113
|
|
|
114
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
114
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
115
115
|
:type execution_context: int | str | None
|
|
116
116
|
:type undo: bool | None
|
|
117
117
|
"""
|
|
@@ -119,13 +119,13 @@ def free_data(
|
|
|
119
119
|
...
|
|
120
120
|
|
|
121
121
|
def free_guides(
|
|
122
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
122
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
123
123
|
execution_context: int | str | None = None,
|
|
124
124
|
undo: bool | None = None,
|
|
125
125
|
):
|
|
126
126
|
"""Free Fluid Guiding
|
|
127
127
|
|
|
128
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
128
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
129
129
|
:type execution_context: int | str | None
|
|
130
130
|
:type undo: bool | None
|
|
131
131
|
"""
|
|
@@ -133,13 +133,13 @@ def free_guides(
|
|
|
133
133
|
...
|
|
134
134
|
|
|
135
135
|
def free_mesh(
|
|
136
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
136
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
137
137
|
execution_context: int | str | None = None,
|
|
138
138
|
undo: bool | None = None,
|
|
139
139
|
):
|
|
140
140
|
"""Free Fluid Mesh
|
|
141
141
|
|
|
142
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
142
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
143
143
|
:type execution_context: int | str | None
|
|
144
144
|
:type undo: bool | None
|
|
145
145
|
"""
|
|
@@ -147,13 +147,13 @@ def free_mesh(
|
|
|
147
147
|
...
|
|
148
148
|
|
|
149
149
|
def free_noise(
|
|
150
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
150
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
151
151
|
execution_context: int | str | None = None,
|
|
152
152
|
undo: bool | None = None,
|
|
153
153
|
):
|
|
154
154
|
"""Free Fluid Noise
|
|
155
155
|
|
|
156
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
156
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
157
157
|
:type execution_context: int | str | None
|
|
158
158
|
:type undo: bool | None
|
|
159
159
|
"""
|
|
@@ -161,13 +161,13 @@ def free_noise(
|
|
|
161
161
|
...
|
|
162
162
|
|
|
163
163
|
def free_particles(
|
|
164
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
164
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
165
165
|
execution_context: int | str | None = None,
|
|
166
166
|
undo: bool | None = None,
|
|
167
167
|
):
|
|
168
168
|
"""Free Fluid Particles
|
|
169
169
|
|
|
170
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
170
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
171
171
|
:type execution_context: int | str | None
|
|
172
172
|
:type undo: bool | None
|
|
173
173
|
"""
|
|
@@ -175,13 +175,13 @@ def free_particles(
|
|
|
175
175
|
...
|
|
176
176
|
|
|
177
177
|
def pause_bake(
|
|
178
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
178
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
179
179
|
execution_context: int | str | None = None,
|
|
180
180
|
undo: bool | None = None,
|
|
181
181
|
):
|
|
182
182
|
"""Pause Bake
|
|
183
183
|
|
|
184
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
184
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
185
185
|
:type execution_context: int | str | None
|
|
186
186
|
:type undo: bool | None
|
|
187
187
|
"""
|
|
@@ -189,7 +189,7 @@ def pause_bake(
|
|
|
189
189
|
...
|
|
190
190
|
|
|
191
191
|
def preset_add(
|
|
192
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
192
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
193
193
|
execution_context: int | str | None = None,
|
|
194
194
|
undo: bool | None = None,
|
|
195
195
|
*,
|
|
@@ -199,7 +199,7 @@ def preset_add(
|
|
|
199
199
|
):
|
|
200
200
|
"""Add or remove a Fluid Preset
|
|
201
201
|
|
|
202
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
202
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
203
203
|
:type execution_context: int | str | None
|
|
204
204
|
:type undo: bool | None
|
|
205
205
|
:param name: Name, Name of the preset, used to make the path name
|
bpy/ops/font/__init__.pyi
CHANGED
|
@@ -7,7 +7,7 @@ GenericType1 = typing.TypeVar("GenericType1")
|
|
|
7
7
|
GenericType2 = typing.TypeVar("GenericType2")
|
|
8
8
|
|
|
9
9
|
def case_set(
|
|
10
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
10
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
11
11
|
execution_context: int | str | None = None,
|
|
12
12
|
undo: bool | None = None,
|
|
13
13
|
*,
|
|
@@ -15,7 +15,7 @@ def case_set(
|
|
|
15
15
|
):
|
|
16
16
|
"""Set font case
|
|
17
17
|
|
|
18
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
18
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
19
19
|
:type execution_context: int | str | None
|
|
20
20
|
:type undo: bool | None
|
|
21
21
|
:param case: Case, Lower or upper case
|
|
@@ -25,13 +25,13 @@ def case_set(
|
|
|
25
25
|
...
|
|
26
26
|
|
|
27
27
|
def case_toggle(
|
|
28
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
28
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
29
29
|
execution_context: int | str | None = None,
|
|
30
30
|
undo: bool | None = None,
|
|
31
31
|
):
|
|
32
32
|
"""Toggle font case
|
|
33
33
|
|
|
34
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
34
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
35
35
|
:type execution_context: int | str | None
|
|
36
36
|
:type undo: bool | None
|
|
37
37
|
"""
|
|
@@ -39,7 +39,7 @@ def case_toggle(
|
|
|
39
39
|
...
|
|
40
40
|
|
|
41
41
|
def change_character(
|
|
42
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
42
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
43
43
|
execution_context: int | str | None = None,
|
|
44
44
|
undo: bool | None = None,
|
|
45
45
|
*,
|
|
@@ -47,7 +47,7 @@ def change_character(
|
|
|
47
47
|
):
|
|
48
48
|
"""Change font character code
|
|
49
49
|
|
|
50
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
50
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
51
51
|
:type execution_context: int | str | None
|
|
52
52
|
:type undo: bool | None
|
|
53
53
|
:param delta: Delta, Number to increase or decrease character code with
|
|
@@ -57,7 +57,7 @@ def change_character(
|
|
|
57
57
|
...
|
|
58
58
|
|
|
59
59
|
def change_spacing(
|
|
60
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
60
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
61
61
|
execution_context: int | str | None = None,
|
|
62
62
|
undo: bool | None = None,
|
|
63
63
|
*,
|
|
@@ -65,7 +65,7 @@ def change_spacing(
|
|
|
65
65
|
):
|
|
66
66
|
"""Change font spacing
|
|
67
67
|
|
|
68
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
68
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
69
69
|
:type execution_context: int | str | None
|
|
70
70
|
:type undo: bool | None
|
|
71
71
|
:param delta: Delta, Amount to decrease or increase character spacing with
|
|
@@ -75,7 +75,7 @@ def change_spacing(
|
|
|
75
75
|
...
|
|
76
76
|
|
|
77
77
|
def delete(
|
|
78
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
78
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
79
79
|
execution_context: int | str | None = None,
|
|
80
80
|
undo: bool | None = None,
|
|
81
81
|
*,
|
|
@@ -92,7 +92,7 @@ def delete(
|
|
|
92
92
|
):
|
|
93
93
|
"""Delete text by cursor position
|
|
94
94
|
|
|
95
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
95
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
96
96
|
:type execution_context: int | str | None
|
|
97
97
|
:type undo: bool | None
|
|
98
98
|
:param type: Type, Which part of the text to delete
|
|
@@ -102,13 +102,13 @@ def delete(
|
|
|
102
102
|
...
|
|
103
103
|
|
|
104
104
|
def line_break(
|
|
105
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
105
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
106
106
|
execution_context: int | str | None = None,
|
|
107
107
|
undo: bool | None = None,
|
|
108
108
|
):
|
|
109
109
|
"""Insert line break at cursor position
|
|
110
110
|
|
|
111
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
111
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
112
112
|
:type execution_context: int | str | None
|
|
113
113
|
:type undo: bool | None
|
|
114
114
|
"""
|
|
@@ -116,7 +116,7 @@ def line_break(
|
|
|
116
116
|
...
|
|
117
117
|
|
|
118
118
|
def move(
|
|
119
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
119
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
120
120
|
execution_context: int | str | None = None,
|
|
121
121
|
undo: bool | None = None,
|
|
122
122
|
*,
|
|
@@ -138,7 +138,7 @@ def move(
|
|
|
138
138
|
):
|
|
139
139
|
"""Move cursor to position type
|
|
140
140
|
|
|
141
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
141
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
142
142
|
:type execution_context: int | str | None
|
|
143
143
|
:type undo: bool | None
|
|
144
144
|
:param type: Type, Where to move cursor to
|
|
@@ -148,7 +148,7 @@ def move(
|
|
|
148
148
|
...
|
|
149
149
|
|
|
150
150
|
def move_select(
|
|
151
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
151
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
152
152
|
execution_context: int | str | None = None,
|
|
153
153
|
undo: bool | None = None,
|
|
154
154
|
*,
|
|
@@ -170,7 +170,7 @@ def move_select(
|
|
|
170
170
|
):
|
|
171
171
|
"""Move the cursor while selecting
|
|
172
172
|
|
|
173
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
173
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
174
174
|
:type execution_context: int | str | None
|
|
175
175
|
:type undo: bool | None
|
|
176
176
|
:param type: Type, Where to move cursor to, to make a selection
|
|
@@ -180,7 +180,7 @@ def move_select(
|
|
|
180
180
|
...
|
|
181
181
|
|
|
182
182
|
def open(
|
|
183
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
183
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
184
184
|
execution_context: int | str | None = None,
|
|
185
185
|
undo: bool | None = None,
|
|
186
186
|
*,
|
|
@@ -214,7 +214,7 @@ def open(
|
|
|
214
214
|
):
|
|
215
215
|
"""Load a new font from a file
|
|
216
216
|
|
|
217
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
217
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
218
218
|
:type execution_context: int | str | None
|
|
219
219
|
:type undo: bool | None
|
|
220
220
|
:param filepath: File Path, Path to file
|
|
@@ -282,13 +282,13 @@ def open(
|
|
|
282
282
|
...
|
|
283
283
|
|
|
284
284
|
def select_all(
|
|
285
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
285
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
286
286
|
execution_context: int | str | None = None,
|
|
287
287
|
undo: bool | None = None,
|
|
288
288
|
):
|
|
289
289
|
"""Select all text
|
|
290
290
|
|
|
291
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
291
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
292
292
|
:type execution_context: int | str | None
|
|
293
293
|
:type undo: bool | None
|
|
294
294
|
"""
|
|
@@ -296,13 +296,13 @@ def select_all(
|
|
|
296
296
|
...
|
|
297
297
|
|
|
298
298
|
def select_word(
|
|
299
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
299
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
300
300
|
execution_context: int | str | None = None,
|
|
301
301
|
undo: bool | None = None,
|
|
302
302
|
):
|
|
303
303
|
"""Select word under cursor
|
|
304
304
|
|
|
305
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
305
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
306
306
|
:type execution_context: int | str | None
|
|
307
307
|
:type undo: bool | None
|
|
308
308
|
"""
|
|
@@ -310,13 +310,13 @@ def select_word(
|
|
|
310
310
|
...
|
|
311
311
|
|
|
312
312
|
def selection_set(
|
|
313
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
313
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
314
314
|
execution_context: int | str | None = None,
|
|
315
315
|
undo: bool | None = None,
|
|
316
316
|
):
|
|
317
317
|
"""Set cursor selection
|
|
318
318
|
|
|
319
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
319
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
320
320
|
:type execution_context: int | str | None
|
|
321
321
|
:type undo: bool | None
|
|
322
322
|
"""
|
|
@@ -324,7 +324,7 @@ def selection_set(
|
|
|
324
324
|
...
|
|
325
325
|
|
|
326
326
|
def style_set(
|
|
327
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
327
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
328
328
|
execution_context: int | str | None = None,
|
|
329
329
|
undo: bool | None = None,
|
|
330
330
|
*,
|
|
@@ -333,7 +333,7 @@ def style_set(
|
|
|
333
333
|
):
|
|
334
334
|
"""Set font style
|
|
335
335
|
|
|
336
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
336
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
337
337
|
:type execution_context: int | str | None
|
|
338
338
|
:type undo: bool | None
|
|
339
339
|
:param style: Style, Style to set selection to
|
|
@@ -345,7 +345,7 @@ def style_set(
|
|
|
345
345
|
...
|
|
346
346
|
|
|
347
347
|
def style_toggle(
|
|
348
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
348
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
349
349
|
execution_context: int | str | None = None,
|
|
350
350
|
undo: bool | None = None,
|
|
351
351
|
*,
|
|
@@ -353,7 +353,7 @@ def style_toggle(
|
|
|
353
353
|
):
|
|
354
354
|
"""Toggle font style
|
|
355
355
|
|
|
356
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
356
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
357
357
|
:type execution_context: int | str | None
|
|
358
358
|
:type undo: bool | None
|
|
359
359
|
:param style: Style, Style to set selection to
|
|
@@ -363,13 +363,13 @@ def style_toggle(
|
|
|
363
363
|
...
|
|
364
364
|
|
|
365
365
|
def text_copy(
|
|
366
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
366
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
367
367
|
execution_context: int | str | None = None,
|
|
368
368
|
undo: bool | None = None,
|
|
369
369
|
):
|
|
370
370
|
"""Copy selected text to clipboard
|
|
371
371
|
|
|
372
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
372
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
373
373
|
:type execution_context: int | str | None
|
|
374
374
|
:type undo: bool | None
|
|
375
375
|
"""
|
|
@@ -377,13 +377,13 @@ def text_copy(
|
|
|
377
377
|
...
|
|
378
378
|
|
|
379
379
|
def text_cut(
|
|
380
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
380
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
381
381
|
execution_context: int | str | None = None,
|
|
382
382
|
undo: bool | None = None,
|
|
383
383
|
):
|
|
384
384
|
"""Cut selected text to clipboard
|
|
385
385
|
|
|
386
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
386
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
387
387
|
:type execution_context: int | str | None
|
|
388
388
|
:type undo: bool | None
|
|
389
389
|
"""
|
|
@@ -391,7 +391,7 @@ def text_cut(
|
|
|
391
391
|
...
|
|
392
392
|
|
|
393
393
|
def text_insert(
|
|
394
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
394
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
395
395
|
execution_context: int | str | None = None,
|
|
396
396
|
undo: bool | None = None,
|
|
397
397
|
*,
|
|
@@ -400,7 +400,7 @@ def text_insert(
|
|
|
400
400
|
):
|
|
401
401
|
"""Insert text at cursor position
|
|
402
402
|
|
|
403
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
403
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
404
404
|
:type execution_context: int | str | None
|
|
405
405
|
:type undo: bool | None
|
|
406
406
|
:param text: Text, Text to insert at the cursor position
|
|
@@ -412,13 +412,13 @@ def text_insert(
|
|
|
412
412
|
...
|
|
413
413
|
|
|
414
414
|
def text_insert_unicode(
|
|
415
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
415
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
416
416
|
execution_context: int | str | None = None,
|
|
417
417
|
undo: bool | None = None,
|
|
418
418
|
):
|
|
419
419
|
"""Insert Unicode Character
|
|
420
420
|
|
|
421
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
421
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
422
422
|
:type execution_context: int | str | None
|
|
423
423
|
:type undo: bool | None
|
|
424
424
|
"""
|
|
@@ -426,7 +426,7 @@ def text_insert_unicode(
|
|
|
426
426
|
...
|
|
427
427
|
|
|
428
428
|
def text_paste(
|
|
429
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
429
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
430
430
|
execution_context: int | str | None = None,
|
|
431
431
|
undo: bool | None = None,
|
|
432
432
|
*,
|
|
@@ -434,7 +434,7 @@ def text_paste(
|
|
|
434
434
|
):
|
|
435
435
|
"""Paste text from clipboard
|
|
436
436
|
|
|
437
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
437
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
438
438
|
:type execution_context: int | str | None
|
|
439
439
|
:type undo: bool | None
|
|
440
440
|
:param selection: Selection, Paste text selected elsewhere rather than copied (X11/Wayland only)
|
|
@@ -444,7 +444,7 @@ def text_paste(
|
|
|
444
444
|
...
|
|
445
445
|
|
|
446
446
|
def text_paste_from_file(
|
|
447
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
447
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
448
448
|
execution_context: int | str | None = None,
|
|
449
449
|
undo: bool | None = None,
|
|
450
450
|
*,
|
|
@@ -477,7 +477,7 @@ def text_paste_from_file(
|
|
|
477
477
|
):
|
|
478
478
|
"""Paste contents from file
|
|
479
479
|
|
|
480
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
480
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
481
481
|
:type execution_context: int | str | None
|
|
482
482
|
:type undo: bool | None
|
|
483
483
|
:param filepath: File Path, Path to file
|
|
@@ -543,13 +543,13 @@ def text_paste_from_file(
|
|
|
543
543
|
...
|
|
544
544
|
|
|
545
545
|
def textbox_add(
|
|
546
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
546
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
547
547
|
execution_context: int | str | None = None,
|
|
548
548
|
undo: bool | None = None,
|
|
549
549
|
):
|
|
550
550
|
"""Add a new text box
|
|
551
551
|
|
|
552
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
552
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
553
553
|
:type execution_context: int | str | None
|
|
554
554
|
:type undo: bool | None
|
|
555
555
|
"""
|
|
@@ -557,7 +557,7 @@ def textbox_add(
|
|
|
557
557
|
...
|
|
558
558
|
|
|
559
559
|
def textbox_remove(
|
|
560
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
560
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
561
561
|
execution_context: int | str | None = None,
|
|
562
562
|
undo: bool | None = None,
|
|
563
563
|
*,
|
|
@@ -565,7 +565,7 @@ def textbox_remove(
|
|
|
565
565
|
):
|
|
566
566
|
"""Remove the text box
|
|
567
567
|
|
|
568
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
568
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
569
569
|
:type execution_context: int | str | None
|
|
570
570
|
:type undo: bool | None
|
|
571
571
|
:param index: Index, The current text box
|
|
@@ -575,13 +575,13 @@ def textbox_remove(
|
|
|
575
575
|
...
|
|
576
576
|
|
|
577
577
|
def unlink(
|
|
578
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
578
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
579
579
|
execution_context: int | str | None = None,
|
|
580
580
|
undo: bool | None = None,
|
|
581
581
|
):
|
|
582
582
|
"""Unlink active font data-block
|
|
583
583
|
|
|
584
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
584
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
585
585
|
:type execution_context: int | str | None
|
|
586
586
|
:type undo: bool | None
|
|
587
587
|
"""
|