fake-bge-module 20250104__py3-none-any.whl → 20250201__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.
- addon_utils/__init__.pyi +11 -6
- aud/__init__.pyi +4 -0
- bge/types/__init__.pyi +66 -27
- bgl/__init__.pyi +2 -2
- bgui/image/__init__.pyi +3 -1
- bgui/system/__init__.pyi +12 -4
- bl_console_utils/autocomplete/complete_calltip/__init__.pyi +5 -2
- bl_console_utils/autocomplete/complete_import/__init__.pyi +6 -3
- bl_console_utils/autocomplete/complete_namespace/__init__.pyi +2 -1
- bl_console_utils/autocomplete/intellisense/__init__.pyi +8 -2
- bl_operators/node/__init__.pyi +78 -0
- bl_ui/anim/__init__.pyi +6 -0
- bl_ui/generic_ui_list/__init__.pyi +2 -2
- bl_ui/node_add_menu_shader/__init__.pyi +0 -1
- bl_ui/node_add_menu_texture/__init__.pyi +1 -0
- bl_ui/properties_data_camera/__init__.pyi +0 -2
- bl_ui/properties_mask_common/__init__.pyi +17 -0
- bl_ui/properties_material_gpencil/__init__.pyi +29 -0
- bl_ui/properties_scene/__init__.pyi +6 -0
- bl_ui/properties_view_layer/__init__.pyi +1 -0
- bl_ui/space_clip/__init__.pyi +53 -0
- bl_ui/space_graph/__init__.pyi +2 -0
- bl_ui/space_image/__init__.pyi +25 -0
- bl_ui/space_node/__init__.pyi +0 -1
- bl_ui/space_sequencer/__init__.pyi +2 -1
- blf/__init__.pyi +6 -3
- bmesh/ops/__init__.pyi +111 -54
- bmesh/types/__init__.pyi +134 -46
- bmesh/utils/__init__.pyi +17 -5
- bpy/__init__.pyi +1 -2
- bpy/_typing/__init__.pyi +4 -0
- bpy/{typing → _typing/rna_enums}/__init__.pyi +36 -36
- bpy/app/__init__.pyi +13 -5
- bpy/app/handlers/__init__.pyi +4 -2
- bpy/app/icons/__init__.pyi +6 -2
- bpy/app/translations/__init__.pyi +17 -8
- bpy/msgbus/__init__.pyi +14 -2
- bpy/ops/action/__init__.pyi +51 -151
- bpy/ops/anim/__init__.pyi +61 -179
- bpy/ops/armature/__init__.pyi +48 -147
- bpy/ops/asset/__init__.pyi +16 -71
- bpy/ops/boid/__init__.pyi +11 -44
- bpy/ops/brush/__init__.pyi +16 -42
- bpy/ops/buttons/__init__.pyi +6 -29
- bpy/ops/cachefile/__init__.pyi +5 -19
- bpy/ops/camera/__init__.pyi +2 -5
- bpy/ops/clip/__init__.pyi +95 -293
- bpy/ops/cloth/__init__.pyi +1 -3
- bpy/ops/collection/__init__.pyi +10 -26
- bpy/ops/console/__init__.pyi +21 -79
- bpy/ops/constraint/__init__.pyi +18 -45
- bpy/ops/curve/__init__.pyi +57 -186
- bpy/ops/curves/__init__.pyi +37 -109
- bpy/ops/cycles/__init__.pyi +3 -9
- bpy/ops/dpaint/__init__.pyi +8 -22
- bpy/ops/ed/__init__.pyi +20 -52
- bpy/ops/export_anim/__init__.pyi +1 -3
- bpy/ops/export_scene/__init__.pyi +55 -32
- bpy/ops/extensions/__init__.pyi +34 -110
- bpy/ops/file/__init__.pyi +40 -167
- bpy/ops/fluid/__init__.pyi +14 -77
- bpy/ops/font/__init__.pyi +23 -85
- bpy/ops/geometry/__init__.pyi +29 -46
- bpy/ops/gizmogroup/__init__.pyi +2 -9
- bpy/ops/gpencil/__init__.pyi +8 -32
- bpy/ops/graph/__init__.pyi +82 -201
- bpy/ops/grease_pencil/__init__.pyi +125 -324
- bpy/ops/image/__init__.pyi +61 -163
- bpy/ops/import_anim/__init__.pyi +1 -3
- bpy/ops/import_curve/__init__.pyi +1 -3
- bpy/ops/import_scene/__init__.pyi +4 -6
- bpy/ops/info/__init__.pyi +7 -29
- bpy/ops/lattice/__init__.pyi +11 -32
- bpy/ops/logic/__init__.pyi +26 -65
- bpy/ops/marker/__init__.pyi +11 -31
- bpy/ops/mask/__init__.pyi +39 -132
- bpy/ops/material/__init__.pyi +3 -19
- bpy/ops/mball/__init__.pyi +8 -19
- bpy/ops/mesh/__init__.pyi +223 -470
- bpy/ops/nla/__init__.pyi +42 -150
- bpy/ops/node/__init__.pyi +169 -393
- bpy/ops/object/__init__.pyi +320 -749
- bpy/ops/outliner/__init__.pyi +76 -268
- bpy/ops/paint/__init__.pyi +67 -147
- bpy/ops/paintcurve/__init__.pyi +8 -33
- bpy/ops/palette/__init__.pyi +7 -27
- bpy/ops/particle/__init__.pyi +39 -134
- bpy/ops/pose/__init__.pyi +64 -182
- bpy/ops/poselib/__init__.pyi +9 -33
- bpy/ops/preferences/__init__.pyi +35 -94
- bpy/ops/ptcache/__init__.pyi +7 -33
- bpy/ops/render/__init__.pyi +13 -37
- bpy/ops/rigidbody/__init__.pyi +22 -54
- bpy/ops/scene/__init__.pyi +47 -130
- bpy/ops/screen/__init__.pyi +46 -144
- bpy/ops/script/__init__.pyi +3 -11
- bpy/ops/sculpt/__init__.pyi +40 -94
- bpy/ops/sculpt_curves/__init__.pyi +4 -10
- bpy/ops/sequencer/__init__.pyi +104 -327
- bpy/ops/sound/__init__.pyi +17 -28
- bpy/ops/spreadsheet/__init__.pyi +4 -15
- bpy/ops/surface/__init__.pyi +6 -13
- bpy/ops/text/__init__.pyi +43 -175
- bpy/ops/text_editor/__init__.pyi +1 -3
- bpy/ops/texture/__init__.pyi +4 -21
- bpy/ops/transform/__init__.pyi +114 -134
- bpy/ops/ui/__init__.pyi +39 -120
- bpy/ops/uilist/__init__.pyi +3 -7
- bpy/ops/uv/__init__.pyi +58 -143
- bpy/ops/view2d/__init__.pyi +14 -39
- bpy/ops/view3d/__init__.pyi +68 -238
- bpy/ops/wm/__init__.pyi +178 -319
- bpy/ops/workspace/__init__.pyi +7 -33
- bpy/ops/world/__init__.pyi +2 -11
- bpy/path/__init__.pyi +16 -6
- bpy/props/__init__.pyi +157 -127
- bpy/types/__init__.pyi +35227 -34838
- bpy/utils/__init__.pyi +71 -25
- bpy/utils/previews/__init__.pyi +2 -1
- bpy/utils/units/__init__.pyi +2 -1
- bpy_extras/anim_utils/__init__.pyi +11 -3
- bpy_extras/bmesh_utils/__init__.pyi +2 -1
- bpy_extras/image_utils/__init__.pyi +5 -2
- bpy_extras/io_utils/__init__.pyi +12 -5
- bpy_extras/mesh_utils/__init__.pyi +27 -6
- bpy_extras/object_utils/__init__.pyi +6 -5
- bpy_extras/view3d_utils/__init__.pyi +9 -2
- {fake_bge_module-20250104.dist-info → fake_bge_module-20250201.dist-info}/METADATA +3 -3
- {fake_bge_module-20250104.dist-info → fake_bge_module-20250201.dist-info}/RECORD +153 -152
- {fake_bge_module-20250104.dist-info → fake_bge_module-20250201.dist-info}/WHEEL +1 -1
- freestyle/chainingiterators/__init__.pyi +7 -2
- freestyle/functions/__init__.pyi +16 -4
- freestyle/shaders/__init__.pyi +5 -1
- freestyle/types/__init__.pyi +103 -30
- freestyle/utils/ContextFunctions/__init__.pyi +2 -2
- freestyle/utils/__init__.pyi +2 -1
- gpu/capabilities/__init__.pyi +2 -1
- gpu/matrix/__init__.pyi +4 -2
- gpu/state/__init__.pyi +2 -2
- gpu/types/__init__.pyi +40 -8
- gpu_extras/batch/__init__.pyi +13 -1
- gpu_extras/presets/__init__.pyi +10 -1
- idprop/types/__init__.pyi +4 -2
- imbuf/__init__.pyi +6 -3
- imbuf/types/__init__.pyi +5 -2
- mathutils/__init__.pyi +126 -35
- mathutils/bvhtree/__init__.pyi +21 -6
- mathutils/geometry/__init__.pyi +68 -22
- mathutils/interpolate/__init__.pyi +5 -1
- mathutils/kdtree/__init__.pyi +21 -8
- mathutils/noise/__init__.pyi +2 -1
- rna_info/__init__.pyi +2 -1
- {fake_bge_module-20250104.dist-info → fake_bge_module-20250201.dist-info}/top_level.txt +0 -0
bpy/ops/ui/__init__.pyi
CHANGED
|
@@ -1,31 +1,25 @@
|
|
|
1
1
|
import typing
|
|
2
2
|
import collections.abc
|
|
3
3
|
import typing_extensions
|
|
4
|
-
import bpy.types
|
|
5
|
-
import mathutils
|
|
6
4
|
|
|
7
5
|
def assign_default_button(
|
|
8
|
-
|
|
9
|
-
execution_context: int | str | None = None,
|
|
10
|
-
undo: bool | None = None,
|
|
6
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
11
7
|
):
|
|
12
8
|
"""Set this property's current value as the new default
|
|
13
9
|
|
|
14
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
15
10
|
:type execution_context: int | str | None
|
|
16
11
|
:type undo: bool | None
|
|
17
12
|
"""
|
|
18
13
|
|
|
19
14
|
def button_execute(
|
|
20
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
21
15
|
execution_context: int | str | None = None,
|
|
22
16
|
undo: bool | None = None,
|
|
17
|
+
/,
|
|
23
18
|
*,
|
|
24
19
|
skip_depressed: bool | None = False,
|
|
25
20
|
):
|
|
26
21
|
"""Presses active button
|
|
27
22
|
|
|
28
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
29
23
|
:type execution_context: int | str | None
|
|
30
24
|
:type undo: bool | None
|
|
31
25
|
:param skip_depressed: Skip Depressed
|
|
@@ -33,39 +27,32 @@ def button_execute(
|
|
|
33
27
|
"""
|
|
34
28
|
|
|
35
29
|
def button_string_clear(
|
|
36
|
-
|
|
37
|
-
execution_context: int | str | None = None,
|
|
38
|
-
undo: bool | None = None,
|
|
30
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
39
31
|
):
|
|
40
32
|
"""Unsets the text of the active button
|
|
41
33
|
|
|
42
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
43
34
|
:type execution_context: int | str | None
|
|
44
35
|
:type undo: bool | None
|
|
45
36
|
"""
|
|
46
37
|
|
|
47
38
|
def copy_as_driver_button(
|
|
48
|
-
|
|
49
|
-
execution_context: int | str | None = None,
|
|
50
|
-
undo: bool | None = None,
|
|
39
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
51
40
|
):
|
|
52
41
|
"""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
42
|
|
|
54
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
55
43
|
:type execution_context: int | str | None
|
|
56
44
|
:type undo: bool | None
|
|
57
45
|
"""
|
|
58
46
|
|
|
59
47
|
def copy_data_path_button(
|
|
60
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
61
48
|
execution_context: int | str | None = None,
|
|
62
49
|
undo: bool | None = None,
|
|
50
|
+
/,
|
|
63
51
|
*,
|
|
64
52
|
full_path: bool | None = False,
|
|
65
53
|
):
|
|
66
54
|
"""Copy the RNA data path for this property to the clipboard
|
|
67
55
|
|
|
68
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
69
56
|
:type execution_context: int | str | None
|
|
70
57
|
:type undo: bool | None
|
|
71
58
|
:param full_path: full_path, Copy full data path
|
|
@@ -73,15 +60,14 @@ def copy_data_path_button(
|
|
|
73
60
|
"""
|
|
74
61
|
|
|
75
62
|
def copy_driver_to_selected_button(
|
|
76
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
77
63
|
execution_context: int | str | None = None,
|
|
78
64
|
undo: bool | None = None,
|
|
65
|
+
/,
|
|
79
66
|
*,
|
|
80
67
|
all: bool | None = False,
|
|
81
68
|
):
|
|
82
69
|
"""Copy the property's driver from the active item to the same property of all selected items, if the same property exists
|
|
83
70
|
|
|
84
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
85
71
|
:type execution_context: int | str | None
|
|
86
72
|
:type undo: bool | None
|
|
87
73
|
:param all: All, Copy to selected the drivers of all elements of the array
|
|
@@ -89,27 +75,23 @@ def copy_driver_to_selected_button(
|
|
|
89
75
|
"""
|
|
90
76
|
|
|
91
77
|
def copy_python_command_button(
|
|
92
|
-
|
|
93
|
-
execution_context: int | str | None = None,
|
|
94
|
-
undo: bool | None = None,
|
|
78
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
95
79
|
):
|
|
96
80
|
"""Copy the Python command matching this button
|
|
97
81
|
|
|
98
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
99
82
|
:type execution_context: int | str | None
|
|
100
83
|
:type undo: bool | None
|
|
101
84
|
"""
|
|
102
85
|
|
|
103
86
|
def copy_to_selected_button(
|
|
104
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
105
87
|
execution_context: int | str | None = None,
|
|
106
88
|
undo: bool | None = None,
|
|
89
|
+
/,
|
|
107
90
|
*,
|
|
108
91
|
all: bool | None = True,
|
|
109
92
|
):
|
|
110
93
|
"""Copy the property's value from the active item to the same property of all selected items if the same property exists
|
|
111
94
|
|
|
112
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
113
95
|
:type execution_context: int | str | None
|
|
114
96
|
:type undo: bool | None
|
|
115
97
|
:param all: All, Copy to selected all elements of the array
|
|
@@ -117,34 +99,35 @@ def copy_to_selected_button(
|
|
|
117
99
|
"""
|
|
118
100
|
|
|
119
101
|
def drop_color(
|
|
120
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
121
102
|
execution_context: int | str | None = None,
|
|
122
103
|
undo: bool | None = None,
|
|
104
|
+
/,
|
|
123
105
|
*,
|
|
124
|
-
color: collections.abc.
|
|
106
|
+
color: collections.abc.Iterable[float] | None = (0.0, 0.0, 0.0, 0.0),
|
|
125
107
|
gamma: bool | None = False,
|
|
108
|
+
has_alpha: bool | None = False,
|
|
126
109
|
):
|
|
127
110
|
"""Drop colors to buttons
|
|
128
111
|
|
|
129
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
130
112
|
:type execution_context: int | str | None
|
|
131
113
|
:type undo: bool | None
|
|
132
114
|
:param color: Color, Source color
|
|
133
|
-
:type color: collections.abc.
|
|
115
|
+
:type color: collections.abc.Iterable[float] | None
|
|
134
116
|
:param gamma: Gamma Corrected, The source color is gamma corrected
|
|
135
117
|
:type gamma: bool | None
|
|
118
|
+
:param has_alpha: Has Alpha, The source color contains an Alpha component
|
|
119
|
+
:type has_alpha: bool | None
|
|
136
120
|
"""
|
|
137
121
|
|
|
138
122
|
def drop_material(
|
|
139
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
140
123
|
execution_context: int | str | None = None,
|
|
141
124
|
undo: bool | None = None,
|
|
125
|
+
/,
|
|
142
126
|
*,
|
|
143
127
|
session_uid: int | None = 0,
|
|
144
128
|
):
|
|
145
129
|
"""Drag material to Material slots in Properties
|
|
146
130
|
|
|
147
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
148
131
|
:type execution_context: int | str | None
|
|
149
132
|
:type undo: bool | None
|
|
150
133
|
:param session_uid: Session UID, Session UID of the data-block to use by the operator
|
|
@@ -152,55 +135,45 @@ def drop_material(
|
|
|
152
135
|
"""
|
|
153
136
|
|
|
154
137
|
def drop_name(
|
|
155
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
156
138
|
execution_context: int | str | None = None,
|
|
157
139
|
undo: bool | None = None,
|
|
140
|
+
/,
|
|
158
141
|
*,
|
|
159
142
|
string: str = "",
|
|
160
143
|
):
|
|
161
144
|
"""Drop name to button
|
|
162
145
|
|
|
163
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
164
146
|
:type execution_context: int | str | None
|
|
165
147
|
:type undo: bool | None
|
|
166
148
|
:param string: String, The string value to drop into the button
|
|
167
149
|
:type string: str
|
|
168
150
|
"""
|
|
169
151
|
|
|
170
|
-
def editsource(
|
|
171
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
172
|
-
execution_context: int | str | None = None,
|
|
173
|
-
undo: bool | None = None,
|
|
174
|
-
):
|
|
152
|
+
def editsource(execution_context: int | str | None = None, undo: bool | None = None):
|
|
175
153
|
"""Edit UI source code of the active button
|
|
176
154
|
|
|
177
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
178
155
|
:type execution_context: int | str | None
|
|
179
156
|
:type undo: bool | None
|
|
180
157
|
"""
|
|
181
158
|
|
|
182
159
|
def eyedropper_bone(
|
|
183
|
-
|
|
184
|
-
execution_context: int | str | None = None,
|
|
185
|
-
undo: bool | None = None,
|
|
160
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
186
161
|
):
|
|
187
162
|
"""Sample a bone from the 3D View or the Outliner to store in a property
|
|
188
163
|
|
|
189
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
190
164
|
:type execution_context: int | str | None
|
|
191
165
|
:type undo: bool | None
|
|
192
166
|
"""
|
|
193
167
|
|
|
194
168
|
def eyedropper_color(
|
|
195
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
196
169
|
execution_context: int | str | None = None,
|
|
197
170
|
undo: bool | None = None,
|
|
171
|
+
/,
|
|
198
172
|
*,
|
|
199
173
|
prop_data_path: str = "",
|
|
200
174
|
):
|
|
201
175
|
"""Sample a color from the Blender window to store in a property
|
|
202
176
|
|
|
203
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
204
177
|
:type execution_context: int | str | None
|
|
205
178
|
:type undo: bool | None
|
|
206
179
|
:param prop_data_path: Data Path, Path of property to be set with the depth
|
|
@@ -208,39 +181,32 @@ def eyedropper_color(
|
|
|
208
181
|
"""
|
|
209
182
|
|
|
210
183
|
def eyedropper_colorramp(
|
|
211
|
-
|
|
212
|
-
execution_context: int | str | None = None,
|
|
213
|
-
undo: bool | None = None,
|
|
184
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
214
185
|
):
|
|
215
186
|
"""Sample a color band
|
|
216
187
|
|
|
217
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
218
188
|
:type execution_context: int | str | None
|
|
219
189
|
:type undo: bool | None
|
|
220
190
|
"""
|
|
221
191
|
|
|
222
192
|
def eyedropper_colorramp_point(
|
|
223
|
-
|
|
224
|
-
execution_context: int | str | None = None,
|
|
225
|
-
undo: bool | None = None,
|
|
193
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
226
194
|
):
|
|
227
195
|
"""Point-sample a color band
|
|
228
196
|
|
|
229
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
230
197
|
:type execution_context: int | str | None
|
|
231
198
|
:type undo: bool | None
|
|
232
199
|
"""
|
|
233
200
|
|
|
234
201
|
def eyedropper_depth(
|
|
235
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
236
202
|
execution_context: int | str | None = None,
|
|
237
203
|
undo: bool | None = None,
|
|
204
|
+
/,
|
|
238
205
|
*,
|
|
239
206
|
prop_data_path: str = "",
|
|
240
207
|
):
|
|
241
208
|
"""Sample depth from the 3D view
|
|
242
209
|
|
|
243
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
244
210
|
:type execution_context: int | str | None
|
|
245
211
|
:type undo: bool | None
|
|
246
212
|
:param prop_data_path: Data Path, Path of property to be set with the depth
|
|
@@ -248,9 +214,9 @@ def eyedropper_depth(
|
|
|
248
214
|
"""
|
|
249
215
|
|
|
250
216
|
def eyedropper_driver(
|
|
251
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
252
217
|
execution_context: int | str | None = None,
|
|
253
218
|
undo: bool | None = None,
|
|
219
|
+
/,
|
|
254
220
|
*,
|
|
255
221
|
mapping_type: typing.Literal[
|
|
256
222
|
"SINGLE_MANY", "DIRECT", "MATCH", "NONE_ALL", "NONE_SINGLE"
|
|
@@ -259,7 +225,6 @@ def eyedropper_driver(
|
|
|
259
225
|
):
|
|
260
226
|
"""Pick a property to use as a driver target
|
|
261
227
|
|
|
262
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
263
228
|
:type execution_context: int | str | None
|
|
264
229
|
:type undo: bool | None
|
|
265
230
|
:param mapping_type: Mapping Type, Method used to match target and driven properties
|
|
@@ -282,16 +247,15 @@ def eyedropper_driver(
|
|
|
282
247
|
"""
|
|
283
248
|
|
|
284
249
|
def eyedropper_grease_pencil_color(
|
|
285
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
286
250
|
execution_context: int | str | None = None,
|
|
287
251
|
undo: bool | None = None,
|
|
252
|
+
/,
|
|
288
253
|
*,
|
|
289
254
|
mode: typing.Literal["MATERIAL", "PALETTE", "BRUSH"] | None = "MATERIAL",
|
|
290
255
|
material_mode: typing.Literal["STROKE", "FILL", "BOTH"] | None = "STROKE",
|
|
291
256
|
):
|
|
292
257
|
"""Sample a color from the Blender Window and create Grease Pencil material
|
|
293
258
|
|
|
294
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
295
259
|
:type execution_context: int | str | None
|
|
296
260
|
:type undo: bool | None
|
|
297
261
|
:param mode: Mode
|
|
@@ -300,88 +264,67 @@ def eyedropper_grease_pencil_color(
|
|
|
300
264
|
:type material_mode: typing.Literal['STROKE','FILL','BOTH'] | None
|
|
301
265
|
"""
|
|
302
266
|
|
|
303
|
-
def eyedropper_id(
|
|
304
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
305
|
-
execution_context: int | str | None = None,
|
|
306
|
-
undo: bool | None = None,
|
|
307
|
-
):
|
|
267
|
+
def eyedropper_id(execution_context: int | str | None = None, undo: bool | None = None):
|
|
308
268
|
"""Sample a data-block from the 3D View to store in a property
|
|
309
269
|
|
|
310
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
311
270
|
:type execution_context: int | str | None
|
|
312
271
|
:type undo: bool | None
|
|
313
272
|
"""
|
|
314
273
|
|
|
315
274
|
def jump_to_target_button(
|
|
316
|
-
|
|
317
|
-
execution_context: int | str | None = None,
|
|
318
|
-
undo: bool | None = None,
|
|
275
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
319
276
|
):
|
|
320
277
|
"""Switch to the target object or bone
|
|
321
278
|
|
|
322
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
323
279
|
:type execution_context: int | str | None
|
|
324
280
|
:type undo: bool | None
|
|
325
281
|
"""
|
|
326
282
|
|
|
327
283
|
def list_start_filter(
|
|
328
|
-
|
|
329
|
-
execution_context: int | str | None = None,
|
|
330
|
-
undo: bool | None = None,
|
|
284
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
331
285
|
):
|
|
332
286
|
"""Start entering filter text for the list in focus
|
|
333
287
|
|
|
334
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
335
288
|
:type execution_context: int | str | None
|
|
336
289
|
:type undo: bool | None
|
|
337
290
|
"""
|
|
338
291
|
|
|
339
292
|
def override_idtemplate_clear(
|
|
340
|
-
|
|
341
|
-
execution_context: int | str | None = None,
|
|
342
|
-
undo: bool | None = None,
|
|
293
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
343
294
|
):
|
|
344
295
|
"""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
|
|
345
296
|
|
|
346
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
347
297
|
:type execution_context: int | str | None
|
|
348
298
|
:type undo: bool | None
|
|
349
299
|
"""
|
|
350
300
|
|
|
351
301
|
def override_idtemplate_make(
|
|
352
|
-
|
|
353
|
-
execution_context: int | str | None = None,
|
|
354
|
-
undo: bool | None = None,
|
|
302
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
355
303
|
):
|
|
356
304
|
"""Create a local override of the selected linked data-block, and its hierarchy of dependencies
|
|
357
305
|
|
|
358
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
359
306
|
:type execution_context: int | str | None
|
|
360
307
|
:type undo: bool | None
|
|
361
308
|
"""
|
|
362
309
|
|
|
363
310
|
def override_idtemplate_reset(
|
|
364
|
-
|
|
365
|
-
execution_context: int | str | None = None,
|
|
366
|
-
undo: bool | None = None,
|
|
311
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
367
312
|
):
|
|
368
313
|
"""Reset the selected local override to its linked reference values
|
|
369
314
|
|
|
370
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
371
315
|
:type execution_context: int | str | None
|
|
372
316
|
:type undo: bool | None
|
|
373
317
|
"""
|
|
374
318
|
|
|
375
319
|
def override_remove_button(
|
|
376
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
377
320
|
execution_context: int | str | None = None,
|
|
378
321
|
undo: bool | None = None,
|
|
322
|
+
/,
|
|
379
323
|
*,
|
|
380
324
|
all: bool | None = True,
|
|
381
325
|
):
|
|
382
326
|
"""Remove an override operation
|
|
383
327
|
|
|
384
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
385
328
|
:type execution_context: int | str | None
|
|
386
329
|
:type undo: bool | None
|
|
387
330
|
:param all: All, Reset to default values all elements of the array
|
|
@@ -389,16 +332,15 @@ def override_remove_button(
|
|
|
389
332
|
"""
|
|
390
333
|
|
|
391
334
|
def override_type_set_button(
|
|
392
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
393
335
|
execution_context: int | str | None = None,
|
|
394
336
|
undo: bool | None = None,
|
|
337
|
+
/,
|
|
395
338
|
*,
|
|
396
339
|
all: bool | None = True,
|
|
397
340
|
type: typing.Literal["NOOP", "REPLACE", "DIFFERENCE", "FACTOR"] | None = "REPLACE",
|
|
398
341
|
):
|
|
399
342
|
"""Create an override operation, or set the type of an existing one
|
|
400
343
|
|
|
401
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
402
344
|
:type execution_context: int | str | None
|
|
403
345
|
:type undo: bool | None
|
|
404
346
|
:param all: All, Reset to default values all elements of the array
|
|
@@ -420,27 +362,23 @@ def override_type_set_button(
|
|
|
420
362
|
"""
|
|
421
363
|
|
|
422
364
|
def reloadtranslation(
|
|
423
|
-
|
|
424
|
-
execution_context: int | str | None = None,
|
|
425
|
-
undo: bool | None = None,
|
|
365
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
426
366
|
):
|
|
427
367
|
"""Force a full reload of UI translation
|
|
428
368
|
|
|
429
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
430
369
|
:type execution_context: int | str | None
|
|
431
370
|
:type undo: bool | None
|
|
432
371
|
"""
|
|
433
372
|
|
|
434
373
|
def reset_default_button(
|
|
435
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
436
374
|
execution_context: int | str | None = None,
|
|
437
375
|
undo: bool | None = None,
|
|
376
|
+
/,
|
|
438
377
|
*,
|
|
439
378
|
all: bool | None = True,
|
|
440
379
|
):
|
|
441
380
|
"""Reset this property's value to its default value
|
|
442
381
|
|
|
443
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
444
382
|
:type execution_context: int | str | None
|
|
445
383
|
:type undo: bool | None
|
|
446
384
|
:param all: All, Reset to default values all elements of the array
|
|
@@ -448,61 +386,42 @@ def reset_default_button(
|
|
|
448
386
|
"""
|
|
449
387
|
|
|
450
388
|
def unset_property_button(
|
|
451
|
-
|
|
452
|
-
execution_context: int | str | None = None,
|
|
453
|
-
undo: bool | None = None,
|
|
389
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
454
390
|
):
|
|
455
391
|
"""Clear the property and use default or generated value in operators
|
|
456
392
|
|
|
457
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
458
393
|
:type execution_context: int | str | None
|
|
459
394
|
:type undo: bool | None
|
|
460
395
|
"""
|
|
461
396
|
|
|
462
|
-
def view_drop(
|
|
463
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
464
|
-
execution_context: int | str | None = None,
|
|
465
|
-
undo: bool | None = None,
|
|
466
|
-
):
|
|
397
|
+
def view_drop(execution_context: int | str | None = None, undo: bool | None = None):
|
|
467
398
|
"""Drag and drop onto a data-set or item within the data-set
|
|
468
399
|
|
|
469
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
470
400
|
:type execution_context: int | str | None
|
|
471
401
|
:type undo: bool | None
|
|
472
402
|
"""
|
|
473
403
|
|
|
474
404
|
def view_item_rename(
|
|
475
|
-
|
|
476
|
-
execution_context: int | str | None = None,
|
|
477
|
-
undo: bool | None = None,
|
|
405
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
478
406
|
):
|
|
479
407
|
"""Rename the active item in the data-set view
|
|
480
408
|
|
|
481
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
482
409
|
:type execution_context: int | str | None
|
|
483
410
|
:type undo: bool | None
|
|
484
411
|
"""
|
|
485
412
|
|
|
486
|
-
def view_scroll(
|
|
487
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
488
|
-
execution_context: int | str | None = None,
|
|
489
|
-
undo: bool | None = None,
|
|
490
|
-
):
|
|
413
|
+
def view_scroll(execution_context: int | str | None = None, undo: bool | None = None):
|
|
491
414
|
"""Undocumented, consider contributing.
|
|
492
415
|
|
|
493
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
494
416
|
:type execution_context: int | str | None
|
|
495
417
|
:type undo: bool | None
|
|
496
418
|
"""
|
|
497
419
|
|
|
498
420
|
def view_start_filter(
|
|
499
|
-
|
|
500
|
-
execution_context: int | str | None = None,
|
|
501
|
-
undo: bool | None = None,
|
|
421
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
502
422
|
):
|
|
503
423
|
"""Start entering filter text for the data-set in focus
|
|
504
424
|
|
|
505
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
506
425
|
:type execution_context: int | str | None
|
|
507
426
|
:type undo: bool | None
|
|
508
427
|
"""
|
bpy/ops/uilist/__init__.pyi
CHANGED
|
@@ -1,19 +1,17 @@
|
|
|
1
1
|
import typing
|
|
2
2
|
import collections.abc
|
|
3
3
|
import typing_extensions
|
|
4
|
-
import bpy.types
|
|
5
4
|
|
|
6
5
|
def entry_add(
|
|
7
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
8
6
|
execution_context: int | str | None = None,
|
|
9
7
|
undo: bool | None = None,
|
|
8
|
+
/,
|
|
10
9
|
*,
|
|
11
10
|
list_path: str = "",
|
|
12
11
|
active_index_path: str = "",
|
|
13
12
|
):
|
|
14
13
|
"""Add an entry to the list after the current active item
|
|
15
14
|
|
|
16
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
17
15
|
:type execution_context: int | str | None
|
|
18
16
|
:type undo: bool | None
|
|
19
17
|
:param list_path: list_path
|
|
@@ -23,9 +21,9 @@ def entry_add(
|
|
|
23
21
|
"""
|
|
24
22
|
|
|
25
23
|
def entry_move(
|
|
26
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
27
24
|
execution_context: int | str | None = None,
|
|
28
25
|
undo: bool | None = None,
|
|
26
|
+
/,
|
|
29
27
|
*,
|
|
30
28
|
list_path: str = "",
|
|
31
29
|
active_index_path: str = "",
|
|
@@ -33,7 +31,6 @@ def entry_move(
|
|
|
33
31
|
):
|
|
34
32
|
"""Move an entry in the list up or down
|
|
35
33
|
|
|
36
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
37
34
|
:type execution_context: int | str | None
|
|
38
35
|
:type undo: bool | None
|
|
39
36
|
:param list_path: list_path
|
|
@@ -51,16 +48,15 @@ def entry_move(
|
|
|
51
48
|
"""
|
|
52
49
|
|
|
53
50
|
def entry_remove(
|
|
54
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
55
51
|
execution_context: int | str | None = None,
|
|
56
52
|
undo: bool | None = None,
|
|
53
|
+
/,
|
|
57
54
|
*,
|
|
58
55
|
list_path: str = "",
|
|
59
56
|
active_index_path: str = "",
|
|
60
57
|
):
|
|
61
58
|
"""Remove the selected entry from the list
|
|
62
59
|
|
|
63
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
64
60
|
:type execution_context: int | str | None
|
|
65
61
|
:type undo: bool | None
|
|
66
62
|
:param list_path: list_path
|