fake-bpy-module 20240927__py3-none-any.whl → 20240929__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
- bl_ui/space_dopesheet/__init__.pyi +25 -0
- bl_ui/space_view3d/__init__.pyi +36 -0
- bpy/__init__.pyi +1 -1
- bpy/ops/action/__init__.pyi +76 -76
- bpy/ops/anim/__init__.pyi +144 -120
- 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 +220 -200
- 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 +449 -226
- bpy/typing/__init__.pyi +1 -0
- bpy_extras/object_utils/__init__.pyi +4 -4
- {fake_bpy_module-20240927.dist-info → fake_bpy_module-20240929.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240927.dist-info → fake_bpy_module-20240929.dist-info}/RECORD +87 -87
- {fake_bpy_module-20240927.dist-info → fake_bpy_module-20240929.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240927.dist-info → fake_bpy_module-20240929.dist-info}/top_level.txt +0 -0
bpy/ops/ui/__init__.pyi
CHANGED
|
@@ -5,19 +5,19 @@ import bpy.types
|
|
|
5
5
|
import mathutils
|
|
6
6
|
|
|
7
7
|
def assign_default_button(
|
|
8
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
8
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
9
9
|
execution_context: int | str | None = None,
|
|
10
10
|
undo: bool | None = None,
|
|
11
11
|
):
|
|
12
12
|
"""Set this property's current value as the new default
|
|
13
13
|
|
|
14
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
14
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
15
15
|
:type execution_context: int | str | None
|
|
16
16
|
:type undo: bool | None
|
|
17
17
|
"""
|
|
18
18
|
|
|
19
19
|
def button_execute(
|
|
20
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
20
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
21
21
|
execution_context: int | str | None = None,
|
|
22
22
|
undo: bool | None = None,
|
|
23
23
|
*,
|
|
@@ -25,7 +25,7 @@ def button_execute(
|
|
|
25
25
|
):
|
|
26
26
|
"""Presses active button
|
|
27
27
|
|
|
28
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
28
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
29
29
|
:type execution_context: int | str | None
|
|
30
30
|
:type undo: bool | None
|
|
31
31
|
:param skip_depressed: Skip Depressed
|
|
@@ -33,31 +33,31 @@ def button_execute(
|
|
|
33
33
|
"""
|
|
34
34
|
|
|
35
35
|
def button_string_clear(
|
|
36
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
36
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
37
37
|
execution_context: int | str | None = None,
|
|
38
38
|
undo: bool | None = None,
|
|
39
39
|
):
|
|
40
40
|
"""Unsets the text of the active button
|
|
41
41
|
|
|
42
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
42
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
43
43
|
:type execution_context: int | str | None
|
|
44
44
|
:type undo: bool | None
|
|
45
45
|
"""
|
|
46
46
|
|
|
47
47
|
def copy_as_driver_button(
|
|
48
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
48
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
49
49
|
execution_context: int | str | None = None,
|
|
50
50
|
undo: bool | None = None,
|
|
51
51
|
):
|
|
52
52
|
"""Create a new driver with this property as input, and copy it to the internal clipboard. Use Paste Driver to add it to the target property, or Paste Driver Variables to extend an existing driver
|
|
53
53
|
|
|
54
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
54
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
55
55
|
:type execution_context: int | str | None
|
|
56
56
|
:type undo: bool | None
|
|
57
57
|
"""
|
|
58
58
|
|
|
59
59
|
def copy_data_path_button(
|
|
60
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
60
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
61
61
|
execution_context: int | str | None = None,
|
|
62
62
|
undo: bool | None = None,
|
|
63
63
|
*,
|
|
@@ -65,7 +65,7 @@ def copy_data_path_button(
|
|
|
65
65
|
):
|
|
66
66
|
"""Copy the RNA data path for this property to the clipboard
|
|
67
67
|
|
|
68
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
68
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
69
69
|
:type execution_context: int | str | None
|
|
70
70
|
:type undo: bool | None
|
|
71
71
|
:param full_path: full_path, Copy full data path
|
|
@@ -73,7 +73,7 @@ def copy_data_path_button(
|
|
|
73
73
|
"""
|
|
74
74
|
|
|
75
75
|
def copy_driver_to_selected_button(
|
|
76
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
76
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
77
77
|
execution_context: int | str | None = None,
|
|
78
78
|
undo: bool | None = None,
|
|
79
79
|
*,
|
|
@@ -81,7 +81,7 @@ def copy_driver_to_selected_button(
|
|
|
81
81
|
):
|
|
82
82
|
"""Copy the property's driver from the active item to the same property of all selected items, if the same property exists
|
|
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 all: All, Copy to selected the drivers of all elements of the array
|
|
@@ -89,19 +89,19 @@ def copy_driver_to_selected_button(
|
|
|
89
89
|
"""
|
|
90
90
|
|
|
91
91
|
def copy_python_command_button(
|
|
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
|
"""Copy the Python command matching this button
|
|
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 copy_to_selected_button(
|
|
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
|
*,
|
|
@@ -109,7 +109,7 @@ def copy_to_selected_button(
|
|
|
109
109
|
):
|
|
110
110
|
"""Copy the property's value from the active item to the same property of all selected items if the same property exists
|
|
111
111
|
|
|
112
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
112
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
113
113
|
:type execution_context: int | str | None
|
|
114
114
|
:type undo: bool | None
|
|
115
115
|
:param all: All, Copy to selected all elements of the array
|
|
@@ -117,7 +117,7 @@ def copy_to_selected_button(
|
|
|
117
117
|
"""
|
|
118
118
|
|
|
119
119
|
def drop_color(
|
|
120
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
120
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
121
121
|
execution_context: int | str | None = None,
|
|
122
122
|
undo: bool | None = None,
|
|
123
123
|
*,
|
|
@@ -126,7 +126,7 @@ def drop_color(
|
|
|
126
126
|
):
|
|
127
127
|
"""Drop colors to buttons
|
|
128
128
|
|
|
129
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
129
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
130
130
|
:type execution_context: int | str | None
|
|
131
131
|
:type undo: bool | None
|
|
132
132
|
:param color: Color, Source color
|
|
@@ -136,7 +136,7 @@ def drop_color(
|
|
|
136
136
|
"""
|
|
137
137
|
|
|
138
138
|
def drop_material(
|
|
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
|
*,
|
|
@@ -144,7 +144,7 @@ def drop_material(
|
|
|
144
144
|
):
|
|
145
145
|
"""Drag material to Material slots in Properties
|
|
146
146
|
|
|
147
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
147
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
148
148
|
:type execution_context: int | str | None
|
|
149
149
|
:type undo: bool | None
|
|
150
150
|
:param session_uid: Session UID, Session UID of the data-block to use by the operator
|
|
@@ -152,7 +152,7 @@ def drop_material(
|
|
|
152
152
|
"""
|
|
153
153
|
|
|
154
154
|
def drop_name(
|
|
155
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
155
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
156
156
|
execution_context: int | str | None = None,
|
|
157
157
|
undo: bool | None = None,
|
|
158
158
|
*,
|
|
@@ -160,7 +160,7 @@ def drop_name(
|
|
|
160
160
|
):
|
|
161
161
|
"""Drop name to button
|
|
162
162
|
|
|
163
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
163
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
164
164
|
:type execution_context: int | str | None
|
|
165
165
|
:type undo: bool | None
|
|
166
166
|
:param string: String, The string value to drop into the button
|
|
@@ -168,31 +168,31 @@ def drop_name(
|
|
|
168
168
|
"""
|
|
169
169
|
|
|
170
170
|
def editsource(
|
|
171
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
171
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
172
172
|
execution_context: int | str | None = None,
|
|
173
173
|
undo: bool | None = None,
|
|
174
174
|
):
|
|
175
175
|
"""Edit UI source code of the active button
|
|
176
176
|
|
|
177
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
177
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
178
178
|
:type execution_context: int | str | None
|
|
179
179
|
:type undo: bool | None
|
|
180
180
|
"""
|
|
181
181
|
|
|
182
182
|
def eyedropper_bone(
|
|
183
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
183
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
184
184
|
execution_context: int | str | None = None,
|
|
185
185
|
undo: bool | None = None,
|
|
186
186
|
):
|
|
187
187
|
"""Sample a bone from the 3D View or the Outliner to store in a property
|
|
188
188
|
|
|
189
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
189
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
190
190
|
:type execution_context: int | str | None
|
|
191
191
|
:type undo: bool | None
|
|
192
192
|
"""
|
|
193
193
|
|
|
194
194
|
def eyedropper_color(
|
|
195
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
195
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
196
196
|
execution_context: int | str | None = None,
|
|
197
197
|
undo: bool | None = None,
|
|
198
198
|
*,
|
|
@@ -200,7 +200,7 @@ def eyedropper_color(
|
|
|
200
200
|
):
|
|
201
201
|
"""Sample a color from the Blender window to store in a property
|
|
202
202
|
|
|
203
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
203
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
204
204
|
:type execution_context: int | str | None
|
|
205
205
|
:type undo: bool | None
|
|
206
206
|
:param prop_data_path: Data Path, Path of property to be set with the depth
|
|
@@ -208,31 +208,31 @@ def eyedropper_color(
|
|
|
208
208
|
"""
|
|
209
209
|
|
|
210
210
|
def eyedropper_colorramp(
|
|
211
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
211
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
212
212
|
execution_context: int | str | None = None,
|
|
213
213
|
undo: bool | None = None,
|
|
214
214
|
):
|
|
215
215
|
"""Sample a color band
|
|
216
216
|
|
|
217
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
217
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
218
218
|
:type execution_context: int | str | None
|
|
219
219
|
:type undo: bool | None
|
|
220
220
|
"""
|
|
221
221
|
|
|
222
222
|
def eyedropper_colorramp_point(
|
|
223
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
223
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
224
224
|
execution_context: int | str | None = None,
|
|
225
225
|
undo: bool | None = None,
|
|
226
226
|
):
|
|
227
227
|
"""Point-sample a color band
|
|
228
228
|
|
|
229
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
229
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
230
230
|
:type execution_context: int | str | None
|
|
231
231
|
:type undo: bool | None
|
|
232
232
|
"""
|
|
233
233
|
|
|
234
234
|
def eyedropper_depth(
|
|
235
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
235
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
236
236
|
execution_context: int | str | None = None,
|
|
237
237
|
undo: bool | None = None,
|
|
238
238
|
*,
|
|
@@ -240,7 +240,7 @@ def eyedropper_depth(
|
|
|
240
240
|
):
|
|
241
241
|
"""Sample depth from the 3D view
|
|
242
242
|
|
|
243
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
243
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
244
244
|
:type execution_context: int | str | None
|
|
245
245
|
:type undo: bool | None
|
|
246
246
|
:param prop_data_path: Data Path, Path of property to be set with the depth
|
|
@@ -248,7 +248,7 @@ def eyedropper_depth(
|
|
|
248
248
|
"""
|
|
249
249
|
|
|
250
250
|
def eyedropper_driver(
|
|
251
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
251
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
252
252
|
execution_context: int | str | None = None,
|
|
253
253
|
undo: bool | None = None,
|
|
254
254
|
*,
|
|
@@ -259,7 +259,7 @@ def eyedropper_driver(
|
|
|
259
259
|
):
|
|
260
260
|
"""Pick a property to use as a driver target
|
|
261
261
|
|
|
262
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
262
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
263
263
|
:type execution_context: int | str | None
|
|
264
264
|
:type undo: bool | None
|
|
265
265
|
:param mapping_type: Mapping Type, Method used to match target and driven properties
|
|
@@ -282,7 +282,7 @@ def eyedropper_driver(
|
|
|
282
282
|
"""
|
|
283
283
|
|
|
284
284
|
def eyedropper_gpencil_color(
|
|
285
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
285
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
286
286
|
execution_context: int | str | None = None,
|
|
287
287
|
undo: bool | None = None,
|
|
288
288
|
*,
|
|
@@ -290,7 +290,7 @@ def eyedropper_gpencil_color(
|
|
|
290
290
|
):
|
|
291
291
|
"""Sample a color from the Blender Window and create Grease Pencil material
|
|
292
292
|
|
|
293
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
293
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
294
294
|
:type execution_context: int | str | None
|
|
295
295
|
:type undo: bool | None
|
|
296
296
|
:param mode: Mode
|
|
@@ -298,7 +298,7 @@ def eyedropper_gpencil_color(
|
|
|
298
298
|
"""
|
|
299
299
|
|
|
300
300
|
def eyedropper_grease_pencil_color(
|
|
301
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
301
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
302
302
|
execution_context: int | str | None = None,
|
|
303
303
|
undo: bool | None = None,
|
|
304
304
|
*,
|
|
@@ -307,7 +307,7 @@ def eyedropper_grease_pencil_color(
|
|
|
307
307
|
):
|
|
308
308
|
"""Sample a color from the Blender Window and create Grease Pencil material
|
|
309
309
|
|
|
310
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
310
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
311
311
|
:type execution_context: int | str | None
|
|
312
312
|
:type undo: bool | None
|
|
313
313
|
:param mode: Mode
|
|
@@ -317,79 +317,79 @@ def eyedropper_grease_pencil_color(
|
|
|
317
317
|
"""
|
|
318
318
|
|
|
319
319
|
def eyedropper_id(
|
|
320
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
320
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
321
321
|
execution_context: int | str | None = None,
|
|
322
322
|
undo: bool | None = None,
|
|
323
323
|
):
|
|
324
324
|
"""Sample a data-block from the 3D View to store in a property
|
|
325
325
|
|
|
326
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
326
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
327
327
|
:type execution_context: int | str | None
|
|
328
328
|
:type undo: bool | None
|
|
329
329
|
"""
|
|
330
330
|
|
|
331
331
|
def jump_to_target_button(
|
|
332
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
332
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
333
333
|
execution_context: int | str | None = None,
|
|
334
334
|
undo: bool | None = None,
|
|
335
335
|
):
|
|
336
336
|
"""Switch to the target object or bone
|
|
337
337
|
|
|
338
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
338
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
339
339
|
:type execution_context: int | str | None
|
|
340
340
|
:type undo: bool | None
|
|
341
341
|
"""
|
|
342
342
|
|
|
343
343
|
def list_start_filter(
|
|
344
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
344
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
345
345
|
execution_context: int | str | None = None,
|
|
346
346
|
undo: bool | None = None,
|
|
347
347
|
):
|
|
348
348
|
"""Start entering filter text for the list in focus
|
|
349
349
|
|
|
350
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
350
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
351
351
|
:type execution_context: int | str | None
|
|
352
352
|
:type undo: bool | None
|
|
353
353
|
"""
|
|
354
354
|
|
|
355
355
|
def override_idtemplate_clear(
|
|
356
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
356
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
357
357
|
execution_context: int | str | None = None,
|
|
358
358
|
undo: bool | None = None,
|
|
359
359
|
):
|
|
360
360
|
"""Delete the selected local override and relink its usages to the linked data-block if possible, else reset it and mark it as non editable
|
|
361
361
|
|
|
362
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
362
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
363
363
|
:type execution_context: int | str | None
|
|
364
364
|
:type undo: bool | None
|
|
365
365
|
"""
|
|
366
366
|
|
|
367
367
|
def override_idtemplate_make(
|
|
368
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
368
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
369
369
|
execution_context: int | str | None = None,
|
|
370
370
|
undo: bool | None = None,
|
|
371
371
|
):
|
|
372
372
|
"""Create a local override of the selected linked data-block, and its hierarchy of dependencies
|
|
373
373
|
|
|
374
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
374
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
375
375
|
:type execution_context: int | str | None
|
|
376
376
|
:type undo: bool | None
|
|
377
377
|
"""
|
|
378
378
|
|
|
379
379
|
def override_idtemplate_reset(
|
|
380
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
380
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
381
381
|
execution_context: int | str | None = None,
|
|
382
382
|
undo: bool | None = None,
|
|
383
383
|
):
|
|
384
384
|
"""Reset the selected local override to its linked reference values
|
|
385
385
|
|
|
386
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
386
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
387
387
|
:type execution_context: int | str | None
|
|
388
388
|
:type undo: bool | None
|
|
389
389
|
"""
|
|
390
390
|
|
|
391
391
|
def override_remove_button(
|
|
392
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
392
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
393
393
|
execution_context: int | str | None = None,
|
|
394
394
|
undo: bool | None = None,
|
|
395
395
|
*,
|
|
@@ -397,7 +397,7 @@ def override_remove_button(
|
|
|
397
397
|
):
|
|
398
398
|
"""Remove an override operation
|
|
399
399
|
|
|
400
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
400
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
401
401
|
:type execution_context: int | str | None
|
|
402
402
|
:type undo: bool | None
|
|
403
403
|
:param all: All, Reset to default values all elements of the array
|
|
@@ -405,7 +405,7 @@ def override_remove_button(
|
|
|
405
405
|
"""
|
|
406
406
|
|
|
407
407
|
def override_type_set_button(
|
|
408
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
408
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
409
409
|
execution_context: int | str | None = None,
|
|
410
410
|
undo: bool | None = None,
|
|
411
411
|
*,
|
|
@@ -414,7 +414,7 @@ def override_type_set_button(
|
|
|
414
414
|
):
|
|
415
415
|
"""Create an override operation, or set the type of an existing one
|
|
416
416
|
|
|
417
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
417
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
418
418
|
:type execution_context: int | str | None
|
|
419
419
|
:type undo: bool | None
|
|
420
420
|
:param all: All, Reset to default values all elements of the array
|
|
@@ -436,19 +436,19 @@ def override_type_set_button(
|
|
|
436
436
|
"""
|
|
437
437
|
|
|
438
438
|
def reloadtranslation(
|
|
439
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
439
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
440
440
|
execution_context: int | str | None = None,
|
|
441
441
|
undo: bool | None = None,
|
|
442
442
|
):
|
|
443
443
|
"""Force a full reload of UI translation
|
|
444
444
|
|
|
445
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
445
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
446
446
|
:type execution_context: int | str | None
|
|
447
447
|
:type undo: bool | None
|
|
448
448
|
"""
|
|
449
449
|
|
|
450
450
|
def reset_default_button(
|
|
451
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
451
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
452
452
|
execution_context: int | str | None = None,
|
|
453
453
|
undo: bool | None = None,
|
|
454
454
|
*,
|
|
@@ -456,7 +456,7 @@ def reset_default_button(
|
|
|
456
456
|
):
|
|
457
457
|
"""Reset this property's value to its default value
|
|
458
458
|
|
|
459
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
459
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
460
460
|
:type execution_context: int | str | None
|
|
461
461
|
:type undo: bool | None
|
|
462
462
|
:param all: All, Reset to default values all elements of the array
|
|
@@ -464,49 +464,49 @@ def reset_default_button(
|
|
|
464
464
|
"""
|
|
465
465
|
|
|
466
466
|
def unset_property_button(
|
|
467
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
467
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
468
468
|
execution_context: int | str | None = None,
|
|
469
469
|
undo: bool | None = None,
|
|
470
470
|
):
|
|
471
471
|
"""Clear the property and use default or generated value in operators
|
|
472
472
|
|
|
473
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
473
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
474
474
|
:type execution_context: int | str | None
|
|
475
475
|
:type undo: bool | None
|
|
476
476
|
"""
|
|
477
477
|
|
|
478
478
|
def view_drop(
|
|
479
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
479
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
480
480
|
execution_context: int | str | None = None,
|
|
481
481
|
undo: bool | None = None,
|
|
482
482
|
):
|
|
483
483
|
"""Drag and drop onto a data-set or item within the data-set
|
|
484
484
|
|
|
485
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
485
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
486
486
|
:type execution_context: int | str | None
|
|
487
487
|
:type undo: bool | None
|
|
488
488
|
"""
|
|
489
489
|
|
|
490
490
|
def view_item_rename(
|
|
491
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
491
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
492
492
|
execution_context: int | str | None = None,
|
|
493
493
|
undo: bool | None = None,
|
|
494
494
|
):
|
|
495
495
|
"""Rename the active item in the data-set view
|
|
496
496
|
|
|
497
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
497
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
498
498
|
:type execution_context: int | str | None
|
|
499
499
|
:type undo: bool | None
|
|
500
500
|
"""
|
|
501
501
|
|
|
502
502
|
def view_start_filter(
|
|
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
|
"""Start entering filter text for the data-set in focus
|
|
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
|
"""
|
bpy/ops/uilist/__init__.pyi
CHANGED
|
@@ -4,7 +4,7 @@ import typing_extensions
|
|
|
4
4
|
import bpy.types
|
|
5
5
|
|
|
6
6
|
def entry_add(
|
|
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
|
*,
|
|
@@ -13,7 +13,7 @@ def entry_add(
|
|
|
13
13
|
):
|
|
14
14
|
"""Add an entry to the list after the current active item
|
|
15
15
|
|
|
16
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
16
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
17
17
|
:type execution_context: int | str | None
|
|
18
18
|
:type undo: bool | None
|
|
19
19
|
:param list_path: list_path
|
|
@@ -23,7 +23,7 @@ def entry_add(
|
|
|
23
23
|
"""
|
|
24
24
|
|
|
25
25
|
def entry_move(
|
|
26
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
26
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
27
27
|
execution_context: int | str | None = None,
|
|
28
28
|
undo: bool | None = None,
|
|
29
29
|
*,
|
|
@@ -33,7 +33,7 @@ def entry_move(
|
|
|
33
33
|
):
|
|
34
34
|
"""Move an entry in the list up or down
|
|
35
35
|
|
|
36
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
36
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
37
37
|
:type execution_context: int | str | None
|
|
38
38
|
:type undo: bool | None
|
|
39
39
|
:param list_path: list_path
|
|
@@ -51,7 +51,7 @@ def entry_move(
|
|
|
51
51
|
"""
|
|
52
52
|
|
|
53
53
|
def entry_remove(
|
|
54
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
54
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
55
55
|
execution_context: int | str | None = None,
|
|
56
56
|
undo: bool | None = None,
|
|
57
57
|
*,
|
|
@@ -60,7 +60,7 @@ def entry_remove(
|
|
|
60
60
|
):
|
|
61
61
|
"""Remove the selected entry from the list
|
|
62
62
|
|
|
63
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
63
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
64
64
|
:type execution_context: int | str | None
|
|
65
65
|
:type undo: bool | None
|
|
66
66
|
:param list_path: list_path
|