fake-bpy-module 20241009__py3-none-any.whl → 20241010__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/__init__.pyi +0 -1
- bmesh/types/__init__.pyi +56 -140
- bmesh/utils/__init__.pyi +4 -1
- bpy/app/__init__.pyi +4 -2
- bpy/ops/ui/__init__.pyi +0 -16
- bpy/props/__init__.pyi +59 -58
- bpy/types/__init__.pyi +211 -226
- bpy/typing/__init__.pyi +10 -10
- {fake_bpy_module-20241009.dist-info → fake_bpy_module-20241010.dist-info}/METADATA +1 -1
- {fake_bpy_module-20241009.dist-info → fake_bpy_module-20241010.dist-info}/RECORD +17 -18
- freestyle/functions/__init__.pyi +17 -5
- freestyle/types/__init__.pyi +7 -3
- gpu/shader/__init__.pyi +5 -2
- gpu/types/__init__.pyi +4 -2
- mathutils/geometry/__init__.pyi +4 -2
- bl_ui/properties_data_gpencil/__init__.pyi +0 -357
- {fake_bpy_module-20241009.dist-info → fake_bpy_module-20241010.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20241009.dist-info → fake_bpy_module-20241010.dist-info}/top_level.txt +0 -0
|
@@ -1,357 +0,0 @@
|
|
|
1
|
-
import typing
|
|
2
|
-
import collections.abc
|
|
3
|
-
import typing_extensions
|
|
4
|
-
import bl_ui.space_properties
|
|
5
|
-
import bpy.types
|
|
6
|
-
import rna_prop_ui
|
|
7
|
-
|
|
8
|
-
class DATA_PT_context_gpencil(DataButtonsPanel, bpy.types.Panel):
|
|
9
|
-
bl_context: typing.Any
|
|
10
|
-
bl_label: typing.Any
|
|
11
|
-
bl_options: typing.Any
|
|
12
|
-
bl_region_type: typing.Any
|
|
13
|
-
bl_rna: typing.Any
|
|
14
|
-
bl_space_type: typing.Any
|
|
15
|
-
id_data: typing.Any
|
|
16
|
-
|
|
17
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
18
|
-
"""
|
|
19
|
-
|
|
20
|
-
:return: The RNA type or default when not found.
|
|
21
|
-
:rtype: bpy.types.Struct
|
|
22
|
-
"""
|
|
23
|
-
|
|
24
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
25
|
-
"""
|
|
26
|
-
|
|
27
|
-
:return: The class or default when not found.
|
|
28
|
-
:rtype: typing.Any
|
|
29
|
-
"""
|
|
30
|
-
|
|
31
|
-
def draw(self, context):
|
|
32
|
-
"""
|
|
33
|
-
|
|
34
|
-
:param context:
|
|
35
|
-
"""
|
|
36
|
-
|
|
37
|
-
class DATA_PT_custom_props_gpencil(
|
|
38
|
-
rna_prop_ui.PropertyPanel, DataButtonsPanel, bpy.types.Panel
|
|
39
|
-
):
|
|
40
|
-
"""The subclass should have its own poll function
|
|
41
|
-
and the variable '_context_path' MUST be set.
|
|
42
|
-
"""
|
|
43
|
-
|
|
44
|
-
bl_context: typing.Any
|
|
45
|
-
bl_label: typing.Any
|
|
46
|
-
bl_options: typing.Any
|
|
47
|
-
bl_order: typing.Any
|
|
48
|
-
bl_region_type: typing.Any
|
|
49
|
-
bl_rna: typing.Any
|
|
50
|
-
bl_space_type: typing.Any
|
|
51
|
-
id_data: typing.Any
|
|
52
|
-
|
|
53
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
54
|
-
"""
|
|
55
|
-
|
|
56
|
-
:return: The RNA type or default when not found.
|
|
57
|
-
:rtype: bpy.types.Struct
|
|
58
|
-
"""
|
|
59
|
-
|
|
60
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
61
|
-
"""
|
|
62
|
-
|
|
63
|
-
:return: The class or default when not found.
|
|
64
|
-
:rtype: typing.Any
|
|
65
|
-
"""
|
|
66
|
-
|
|
67
|
-
class DATA_PT_gpencil_animation(
|
|
68
|
-
rna_prop_ui.PropertyPanel,
|
|
69
|
-
DataButtonsPanel,
|
|
70
|
-
bl_ui.space_properties.PropertiesAnimationMixin,
|
|
71
|
-
bpy.types.Panel,
|
|
72
|
-
):
|
|
73
|
-
"""Mix-in class for Animation panels.This class can be used to show a generic 'Animation' panel for IDs shown in
|
|
74
|
-
the properties editor. Specific ID types need specific subclasses.For an example, see DATA_PT_camera_animation in properties_data_camera.py
|
|
75
|
-
"""
|
|
76
|
-
|
|
77
|
-
bl_context: typing.Any
|
|
78
|
-
bl_label: typing.Any
|
|
79
|
-
bl_options: typing.Any
|
|
80
|
-
bl_order: typing.Any
|
|
81
|
-
bl_region_type: typing.Any
|
|
82
|
-
bl_rna: typing.Any
|
|
83
|
-
bl_space_type: typing.Any
|
|
84
|
-
id_data: typing.Any
|
|
85
|
-
|
|
86
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
87
|
-
"""
|
|
88
|
-
|
|
89
|
-
:return: The RNA type or default when not found.
|
|
90
|
-
:rtype: bpy.types.Struct
|
|
91
|
-
"""
|
|
92
|
-
|
|
93
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
94
|
-
"""
|
|
95
|
-
|
|
96
|
-
:return: The class or default when not found.
|
|
97
|
-
:rtype: typing.Any
|
|
98
|
-
"""
|
|
99
|
-
|
|
100
|
-
class DATA_PT_gpencil_canvas(DataButtonsPanel, bpy.types.Panel):
|
|
101
|
-
bl_context: typing.Any
|
|
102
|
-
bl_label: typing.Any
|
|
103
|
-
bl_options: typing.Any
|
|
104
|
-
bl_parent_id: typing.Any
|
|
105
|
-
bl_region_type: typing.Any
|
|
106
|
-
bl_rna: typing.Any
|
|
107
|
-
bl_space_type: typing.Any
|
|
108
|
-
id_data: typing.Any
|
|
109
|
-
|
|
110
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
111
|
-
"""
|
|
112
|
-
|
|
113
|
-
:return: The RNA type or default when not found.
|
|
114
|
-
:rtype: bpy.types.Struct
|
|
115
|
-
"""
|
|
116
|
-
|
|
117
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
118
|
-
"""
|
|
119
|
-
|
|
120
|
-
:return: The class or default when not found.
|
|
121
|
-
:rtype: typing.Any
|
|
122
|
-
"""
|
|
123
|
-
|
|
124
|
-
def draw(self, context):
|
|
125
|
-
"""
|
|
126
|
-
|
|
127
|
-
:param context:
|
|
128
|
-
"""
|
|
129
|
-
|
|
130
|
-
class DATA_PT_gpencil_display(DataButtonsPanel, bpy.types.Panel):
|
|
131
|
-
bl_context: typing.Any
|
|
132
|
-
bl_label: typing.Any
|
|
133
|
-
bl_options: typing.Any
|
|
134
|
-
bl_region_type: typing.Any
|
|
135
|
-
bl_rna: typing.Any
|
|
136
|
-
bl_space_type: typing.Any
|
|
137
|
-
id_data: typing.Any
|
|
138
|
-
|
|
139
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
140
|
-
"""
|
|
141
|
-
|
|
142
|
-
:return: The RNA type or default when not found.
|
|
143
|
-
:rtype: bpy.types.Struct
|
|
144
|
-
"""
|
|
145
|
-
|
|
146
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
147
|
-
"""
|
|
148
|
-
|
|
149
|
-
:return: The class or default when not found.
|
|
150
|
-
:rtype: typing.Any
|
|
151
|
-
"""
|
|
152
|
-
|
|
153
|
-
def draw(self, context):
|
|
154
|
-
"""
|
|
155
|
-
|
|
156
|
-
:param context:
|
|
157
|
-
"""
|
|
158
|
-
|
|
159
|
-
class DATA_PT_gpencil_onion_skinning(DataButtonsPanel, bpy.types.Panel):
|
|
160
|
-
bl_context: typing.Any
|
|
161
|
-
bl_label: typing.Any
|
|
162
|
-
bl_region_type: typing.Any
|
|
163
|
-
bl_rna: typing.Any
|
|
164
|
-
bl_space_type: typing.Any
|
|
165
|
-
id_data: typing.Any
|
|
166
|
-
|
|
167
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
168
|
-
"""
|
|
169
|
-
|
|
170
|
-
:return: The RNA type or default when not found.
|
|
171
|
-
:rtype: bpy.types.Struct
|
|
172
|
-
"""
|
|
173
|
-
|
|
174
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
175
|
-
"""
|
|
176
|
-
|
|
177
|
-
:return: The class or default when not found.
|
|
178
|
-
:rtype: typing.Any
|
|
179
|
-
"""
|
|
180
|
-
|
|
181
|
-
def draw(self, context):
|
|
182
|
-
"""
|
|
183
|
-
|
|
184
|
-
:param context:
|
|
185
|
-
"""
|
|
186
|
-
|
|
187
|
-
class DATA_PT_gpencil_onion_skinning_custom_colors(DataButtonsPanel, bpy.types.Panel):
|
|
188
|
-
bl_context: typing.Any
|
|
189
|
-
bl_label: typing.Any
|
|
190
|
-
bl_options: typing.Any
|
|
191
|
-
bl_parent_id: typing.Any
|
|
192
|
-
bl_region_type: typing.Any
|
|
193
|
-
bl_rna: typing.Any
|
|
194
|
-
bl_space_type: typing.Any
|
|
195
|
-
id_data: typing.Any
|
|
196
|
-
|
|
197
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
198
|
-
"""
|
|
199
|
-
|
|
200
|
-
:return: The RNA type or default when not found.
|
|
201
|
-
:rtype: bpy.types.Struct
|
|
202
|
-
"""
|
|
203
|
-
|
|
204
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
205
|
-
"""
|
|
206
|
-
|
|
207
|
-
:return: The class or default when not found.
|
|
208
|
-
:rtype: typing.Any
|
|
209
|
-
"""
|
|
210
|
-
|
|
211
|
-
def draw(self, context):
|
|
212
|
-
"""
|
|
213
|
-
|
|
214
|
-
:param context:
|
|
215
|
-
"""
|
|
216
|
-
|
|
217
|
-
def draw_header(self, context):
|
|
218
|
-
"""
|
|
219
|
-
|
|
220
|
-
:param context:
|
|
221
|
-
"""
|
|
222
|
-
|
|
223
|
-
class DATA_PT_gpencil_onion_skinning_display(DataButtonsPanel, bpy.types.Panel):
|
|
224
|
-
bl_context: typing.Any
|
|
225
|
-
bl_label: typing.Any
|
|
226
|
-
bl_options: typing.Any
|
|
227
|
-
bl_parent_id: typing.Any
|
|
228
|
-
bl_region_type: typing.Any
|
|
229
|
-
bl_rna: typing.Any
|
|
230
|
-
bl_space_type: typing.Any
|
|
231
|
-
id_data: typing.Any
|
|
232
|
-
|
|
233
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
234
|
-
"""
|
|
235
|
-
|
|
236
|
-
:return: The RNA type or default when not found.
|
|
237
|
-
:rtype: bpy.types.Struct
|
|
238
|
-
"""
|
|
239
|
-
|
|
240
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
241
|
-
"""
|
|
242
|
-
|
|
243
|
-
:return: The class or default when not found.
|
|
244
|
-
:rtype: typing.Any
|
|
245
|
-
"""
|
|
246
|
-
|
|
247
|
-
def draw(self, context):
|
|
248
|
-
"""
|
|
249
|
-
|
|
250
|
-
:param context:
|
|
251
|
-
"""
|
|
252
|
-
|
|
253
|
-
class DATA_PT_gpencil_strokes(DataButtonsPanel, bpy.types.Panel):
|
|
254
|
-
bl_context: typing.Any
|
|
255
|
-
bl_label: typing.Any
|
|
256
|
-
bl_options: typing.Any
|
|
257
|
-
bl_region_type: typing.Any
|
|
258
|
-
bl_rna: typing.Any
|
|
259
|
-
bl_space_type: typing.Any
|
|
260
|
-
id_data: typing.Any
|
|
261
|
-
|
|
262
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
263
|
-
"""
|
|
264
|
-
|
|
265
|
-
:return: The RNA type or default when not found.
|
|
266
|
-
:rtype: bpy.types.Struct
|
|
267
|
-
"""
|
|
268
|
-
|
|
269
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
270
|
-
"""
|
|
271
|
-
|
|
272
|
-
:return: The class or default when not found.
|
|
273
|
-
:rtype: typing.Any
|
|
274
|
-
"""
|
|
275
|
-
|
|
276
|
-
def draw(self, context):
|
|
277
|
-
"""
|
|
278
|
-
|
|
279
|
-
:param context:
|
|
280
|
-
"""
|
|
281
|
-
|
|
282
|
-
class DataButtonsPanel:
|
|
283
|
-
bl_context: typing.Any
|
|
284
|
-
bl_region_type: typing.Any
|
|
285
|
-
bl_space_type: typing.Any
|
|
286
|
-
|
|
287
|
-
@classmethod
|
|
288
|
-
def poll(cls, context):
|
|
289
|
-
"""
|
|
290
|
-
|
|
291
|
-
:param context:
|
|
292
|
-
"""
|
|
293
|
-
|
|
294
|
-
class GPENCIL_UL_vgroups(bpy.types.UIList):
|
|
295
|
-
bl_rna: typing.Any
|
|
296
|
-
id_data: typing.Any
|
|
297
|
-
|
|
298
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
299
|
-
"""
|
|
300
|
-
|
|
301
|
-
:return: The RNA type or default when not found.
|
|
302
|
-
:rtype: bpy.types.Struct
|
|
303
|
-
"""
|
|
304
|
-
|
|
305
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
306
|
-
"""
|
|
307
|
-
|
|
308
|
-
:return: The class or default when not found.
|
|
309
|
-
:rtype: typing.Any
|
|
310
|
-
"""
|
|
311
|
-
|
|
312
|
-
def draw_item(
|
|
313
|
-
self,
|
|
314
|
-
_context,
|
|
315
|
-
layout,
|
|
316
|
-
_data,
|
|
317
|
-
item,
|
|
318
|
-
icon,
|
|
319
|
-
_active_data,
|
|
320
|
-
_active_propname,
|
|
321
|
-
_index,
|
|
322
|
-
):
|
|
323
|
-
"""
|
|
324
|
-
|
|
325
|
-
:param _context:
|
|
326
|
-
:param layout:
|
|
327
|
-
:param _data:
|
|
328
|
-
:param item:
|
|
329
|
-
:param icon:
|
|
330
|
-
:param _active_data:
|
|
331
|
-
:param _active_propname:
|
|
332
|
-
:param _index:
|
|
333
|
-
"""
|
|
334
|
-
|
|
335
|
-
class LayerDataButtonsPanel:
|
|
336
|
-
bl_context: typing.Any
|
|
337
|
-
bl_region_type: typing.Any
|
|
338
|
-
bl_space_type: typing.Any
|
|
339
|
-
|
|
340
|
-
@classmethod
|
|
341
|
-
def poll(cls, context):
|
|
342
|
-
"""
|
|
343
|
-
|
|
344
|
-
:param context:
|
|
345
|
-
"""
|
|
346
|
-
|
|
347
|
-
class ObjectButtonsPanel:
|
|
348
|
-
bl_context: typing.Any
|
|
349
|
-
bl_region_type: typing.Any
|
|
350
|
-
bl_space_type: typing.Any
|
|
351
|
-
|
|
352
|
-
@classmethod
|
|
353
|
-
def poll(cls, context):
|
|
354
|
-
"""
|
|
355
|
-
|
|
356
|
-
:param context:
|
|
357
|
-
"""
|
|
File without changes
|
|
File without changes
|