fake-bpy-module 20240801__py3-none-any.whl → 20240803__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.
- bmesh/ops/__init__.pyi +28 -28
- bmesh/types/__init__.pyi +5 -5
- bmesh/utils/__init__.pyi +2 -2
- bpy/ops/grease_pencil/__init__.pyi +18 -0
- bpy/path/__init__.pyi +33 -39
- bpy/props/__init__.pyi +4 -4
- bpy/types/__init__.pyi +29116 -29110
- bpy/utils/__init__.pyi +71 -81
- {fake_bpy_module-20240801.dist-info → fake_bpy_module-20240803.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240801.dist-info → fake_bpy_module-20240803.dist-info}/RECORD +18 -18
- freestyle/functions/__init__.pyi +47 -19
- freestyle/predicates/__init__.pyi +1 -1
- freestyle/utils/__init__.pyi +1 -1
- gpu/types/__init__.pyi +4 -6
- imbuf/__init__.pyi +2 -2
- mathutils/bvhtree/__init__.pyi +1 -1
- {fake_bpy_module-20240801.dist-info → fake_bpy_module-20240803.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240801.dist-info → fake_bpy_module-20240803.dist-info}/top_level.txt +0 -0
bpy/utils/__init__.pyi
CHANGED
|
@@ -30,82 +30,78 @@ def app_template_paths(*, path: str | None = None):
|
|
|
30
30
|
...
|
|
31
31
|
|
|
32
32
|
def blend_paths(
|
|
33
|
-
absolute: bool
|
|
34
|
-
packed: bool | None = False,
|
|
35
|
-
local: bool | None = False,
|
|
33
|
+
absolute: bool = False, packed: bool = False, local: bool = False
|
|
36
34
|
) -> list[str]:
|
|
37
35
|
"""Returns a list of paths to external files referenced by the loaded .blend file.
|
|
38
36
|
|
|
39
37
|
:param absolute: When true the paths returned are made absolute.
|
|
40
|
-
:type absolute: bool
|
|
38
|
+
:type absolute: bool
|
|
41
39
|
:param packed: When true skip file paths for packed data.
|
|
42
|
-
:type packed: bool
|
|
40
|
+
:type packed: bool
|
|
43
41
|
:param local: When true skip linked library paths.
|
|
44
|
-
:type local: bool
|
|
42
|
+
:type local: bool
|
|
45
43
|
:return: path list.
|
|
46
44
|
:rtype: list[str]
|
|
47
45
|
"""
|
|
48
46
|
|
|
49
47
|
...
|
|
50
48
|
|
|
51
|
-
def escape_identifier(string: str
|
|
49
|
+
def escape_identifier(string: str) -> str:
|
|
52
50
|
"""Simple string escaping function used for animation paths.
|
|
53
51
|
|
|
54
52
|
:param string: text
|
|
55
|
-
:type string: str
|
|
53
|
+
:type string: str
|
|
56
54
|
:return: The escaped string.
|
|
57
55
|
:rtype: str
|
|
58
56
|
"""
|
|
59
57
|
|
|
60
58
|
...
|
|
61
59
|
|
|
62
|
-
def execfile(filepath: str
|
|
60
|
+
def execfile(filepath: str, *, mod=None):
|
|
63
61
|
"""Execute a file path as a Python script.
|
|
64
62
|
|
|
65
63
|
:param filepath: Path of the script to execute.
|
|
66
|
-
:type filepath: str
|
|
64
|
+
:type filepath: str
|
|
67
65
|
:param mod: Optional cached module, the result of a previous execution.
|
|
68
66
|
:return: The module which can be passed back in as mod.
|
|
69
67
|
"""
|
|
70
68
|
|
|
71
69
|
...
|
|
72
70
|
|
|
73
|
-
def extension_path_user(
|
|
74
|
-
package: str | None, *, path: str | None = "", create: bool | None = False
|
|
75
|
-
) -> str:
|
|
71
|
+
def extension_path_user(package: str, *, path: str = "", create: bool = False) -> str:
|
|
76
72
|
"""Return a user writable directory associated with an extension.
|
|
77
73
|
|
|
78
74
|
:param package: The __package__ of the extension.
|
|
79
|
-
:type package: str
|
|
75
|
+
:type package: str
|
|
80
76
|
:param path: Optional subdirectory.
|
|
81
|
-
:type path: str
|
|
77
|
+
:type path: str
|
|
82
78
|
:param create: Treat the path as a directory and create it if its not existing.
|
|
83
|
-
:type create: bool
|
|
79
|
+
:type create: bool
|
|
84
80
|
:return: a path.
|
|
85
81
|
:rtype: str
|
|
86
82
|
"""
|
|
87
83
|
|
|
88
84
|
...
|
|
89
85
|
|
|
90
|
-
def flip_name(name: str
|
|
86
|
+
def flip_name(name: str, strip_digits: bool = False) -> str:
|
|
91
87
|
"""Flip a name between left/right sides, useful for
|
|
92
88
|
mirroring bone names.
|
|
93
89
|
|
|
94
90
|
:param name: Bone name to flip.
|
|
95
|
-
:type name: str
|
|
91
|
+
:type name: str
|
|
96
92
|
:param strip_digits: Whether to remove .### suffix.
|
|
97
|
-
:type strip_digits: bool
|
|
93
|
+
:type strip_digits: bool
|
|
98
94
|
:return: The flipped name.
|
|
99
95
|
:rtype: str
|
|
100
96
|
"""
|
|
101
97
|
|
|
102
98
|
...
|
|
103
99
|
|
|
104
|
-
def is_path_builtin(path: str
|
|
100
|
+
def is_path_builtin(path: str) -> bool:
|
|
105
101
|
"""Returns True if the path is one of the built-in paths used by Blender.
|
|
106
102
|
|
|
107
103
|
:param path: Path you want to check if it is in the built-in settings directory
|
|
108
|
-
:type path: str
|
|
104
|
+
:type path: str
|
|
109
105
|
:rtype: bool
|
|
110
106
|
"""
|
|
111
107
|
|
|
@@ -115,45 +111,43 @@ def keyconfig_init(): ...
|
|
|
115
111
|
def keyconfig_set(filepath, *, report=None): ...
|
|
116
112
|
def load_scripts(
|
|
117
113
|
*,
|
|
118
|
-
reload_scripts: bool
|
|
119
|
-
refresh_scripts: bool
|
|
120
|
-
extensions: bool
|
|
114
|
+
reload_scripts: bool = False,
|
|
115
|
+
refresh_scripts: bool = False,
|
|
116
|
+
extensions: bool = True,
|
|
121
117
|
):
|
|
122
118
|
"""Load scripts and run each modules register function.
|
|
123
119
|
|
|
124
120
|
:param reload_scripts: Causes all scripts to have their unregister method
|
|
125
121
|
called before loading.
|
|
126
|
-
:type reload_scripts: bool
|
|
122
|
+
:type reload_scripts: bool
|
|
127
123
|
:param refresh_scripts: only load scripts which are not already loaded
|
|
128
124
|
as modules.
|
|
129
|
-
:type refresh_scripts: bool
|
|
125
|
+
:type refresh_scripts: bool
|
|
130
126
|
:param extensions: Loads additional scripts (add-ons & app-templates).
|
|
131
|
-
:type extensions: bool
|
|
127
|
+
:type extensions: bool
|
|
132
128
|
"""
|
|
133
129
|
|
|
134
130
|
...
|
|
135
131
|
|
|
136
|
-
def load_scripts_extensions(*, reload_scripts: bool
|
|
132
|
+
def load_scripts_extensions(*, reload_scripts: bool = False):
|
|
137
133
|
"""Load extensions scripts (add-ons and app-templates)
|
|
138
134
|
|
|
139
135
|
:param reload_scripts: Causes all scripts to have their unregister method
|
|
140
136
|
called before loading.
|
|
141
|
-
:type reload_scripts: bool
|
|
137
|
+
:type reload_scripts: bool
|
|
142
138
|
"""
|
|
143
139
|
|
|
144
140
|
...
|
|
145
141
|
|
|
146
|
-
def make_rna_paths(
|
|
147
|
-
struct_name: str | None, prop_name: str | None, enum_name: str | None
|
|
148
|
-
):
|
|
142
|
+
def make_rna_paths(struct_name: str, prop_name: str, enum_name: str):
|
|
149
143
|
"""Create RNA "paths" from given names.
|
|
150
144
|
|
|
151
145
|
:param struct_name: Name of a RNA struct (like e.g. "Scene").
|
|
152
|
-
:type struct_name: str
|
|
146
|
+
:type struct_name: str
|
|
153
147
|
:param prop_name: Name of a RNA struct's property.
|
|
154
|
-
:type prop_name: str
|
|
148
|
+
:type prop_name: str
|
|
155
149
|
:param enum_name: Name of a RNA enum identifier.
|
|
156
|
-
:type enum_name: str
|
|
150
|
+
:type enum_name: str
|
|
157
151
|
:return: A triple of three "RNA paths"
|
|
158
152
|
(most_complete_path, "struct.prop", "struct.prop:'enum'").
|
|
159
153
|
If no enum_name is given, the third element will always be void.
|
|
@@ -172,14 +166,14 @@ def manual_language_code(default="en") -> str:
|
|
|
172
166
|
...
|
|
173
167
|
|
|
174
168
|
def manual_map(): ...
|
|
175
|
-
def modules_from_path(path: str
|
|
169
|
+
def modules_from_path(path: str, loaded_modules: set) -> list:
|
|
176
170
|
"""Load all modules in a path and return them as a list.
|
|
177
171
|
|
|
178
172
|
:param path: this path is scanned for scripts and packages.
|
|
179
|
-
:type path: str
|
|
173
|
+
:type path: str
|
|
180
174
|
:param loaded_modules: already loaded module names, files matching these
|
|
181
175
|
names will be ignored.
|
|
182
|
-
:type loaded_modules: set
|
|
176
|
+
:type loaded_modules: set
|
|
183
177
|
:return: all loaded modules.
|
|
184
178
|
:rtype: list
|
|
185
179
|
"""
|
|
@@ -187,11 +181,11 @@ def modules_from_path(path: str | None, loaded_modules: set | None) -> list:
|
|
|
187
181
|
...
|
|
188
182
|
|
|
189
183
|
def preset_find(name, preset_path, *, display_name=False, ext=".py"): ...
|
|
190
|
-
def preset_paths(subdir: str
|
|
184
|
+
def preset_paths(subdir: str) -> list:
|
|
191
185
|
"""Returns a list of paths for a specific preset.
|
|
192
186
|
|
|
193
187
|
:param subdir: preset subdirectory (must not be an absolute path).
|
|
194
|
-
:type subdir: str
|
|
188
|
+
:type subdir: str
|
|
195
189
|
:return: script paths.
|
|
196
190
|
:rtype: list
|
|
197
191
|
"""
|
|
@@ -224,7 +218,7 @@ def register_classes_factory(classes):
|
|
|
224
218
|
|
|
225
219
|
...
|
|
226
220
|
|
|
227
|
-
def register_cli_command(id: str
|
|
221
|
+
def register_cli_command(id: str, execute: collections.abc.Callable):
|
|
228
222
|
"""Register a command, accessible via the (-c / --command) command-line argument.Custom CommandsRegistering commands makes it possible to conveniently expose command line
|
|
229
223
|
functionality via commands passed to (-c / --command).Using Python Argument ParsingThis example shows how the Python argparse module can be used with a custom command.Using argparse is generally recommended as it has many useful utilities and
|
|
230
224
|
generates a --help message for your command.
|
|
@@ -232,18 +226,18 @@ def register_cli_command(id: str | None, execute: collections.abc.Callable | Non
|
|
|
232
226
|
:param id: The command identifier (must pass an str.isidentifier check).
|
|
233
227
|
|
|
234
228
|
If the id is already registered, a warning is printed and the command is inaccessible to prevent accidents invoking the wrong command.
|
|
235
|
-
:type id: str
|
|
229
|
+
:type id: str
|
|
236
230
|
:param execute: Callback, taking a single list of strings and returns an int.
|
|
237
231
|
The arguments are built from all command-line arguments following the command id.
|
|
238
232
|
The return value should be 0 for success, 1 on failure (specific error codes from the os module can also be used).
|
|
239
|
-
:type execute: collections.abc.Callable
|
|
233
|
+
:type execute: collections.abc.Callable
|
|
240
234
|
:return: The command handle which can be passed to `unregister_cli_command`.
|
|
241
235
|
"""
|
|
242
236
|
|
|
243
237
|
...
|
|
244
238
|
|
|
245
239
|
def register_manual_map(manual_hook): ...
|
|
246
|
-
def register_preset_path(path: str
|
|
240
|
+
def register_preset_path(path: str) -> bool:
|
|
247
241
|
"""Register a preset search path.
|
|
248
242
|
|
|
249
243
|
:param path: preset directory (must be an absolute path).
|
|
@@ -254,55 +248,53 @@ def register_preset_path(path: str | None) -> bool:
|
|
|
254
248
|
When the __init__.py is in the same location as a presets directory.
|
|
255
249
|
For example an operators preset would be located under: presets/operator/{operator.id}/
|
|
256
250
|
where operator.id is the bl_idname of the operator.
|
|
257
|
-
:type path: str
|
|
251
|
+
:type path: str
|
|
258
252
|
:return: success
|
|
259
253
|
:rtype: bool
|
|
260
254
|
"""
|
|
261
255
|
|
|
262
256
|
...
|
|
263
257
|
|
|
264
|
-
def register_submodule_factory(
|
|
265
|
-
module_name: str | None, submodule_names: list[str] | None
|
|
266
|
-
):
|
|
258
|
+
def register_submodule_factory(module_name: str, submodule_names: list[str]):
|
|
267
259
|
"""Utility function to create register and unregister functions
|
|
268
260
|
which simply load submodules,
|
|
269
261
|
calling their register & unregister functions.
|
|
270
262
|
|
|
271
263
|
:param module_name: The module name, typically __name__.
|
|
272
|
-
:type module_name: str
|
|
264
|
+
:type module_name: str
|
|
273
265
|
:param submodule_names: List of submodule names to load and unload.
|
|
274
|
-
:type submodule_names: list[str]
|
|
266
|
+
:type submodule_names: list[str]
|
|
275
267
|
:return: register and unregister functions.
|
|
276
268
|
"""
|
|
277
269
|
|
|
278
270
|
...
|
|
279
271
|
|
|
280
272
|
def register_tool(
|
|
281
|
-
tool_cls, *, after=None, separator: bool
|
|
273
|
+
tool_cls, *, after=None, separator: bool = False, group: bool = False
|
|
282
274
|
):
|
|
283
275
|
"""Register a tool in the toolbar.
|
|
284
276
|
|
|
285
277
|
:param tool_cls: A tool subclass.
|
|
286
278
|
:param after: Optional identifiers this tool will be added after.
|
|
287
279
|
:param separator: When true, add a separator before this tool.
|
|
288
|
-
:type separator: bool
|
|
280
|
+
:type separator: bool
|
|
289
281
|
:param group: When true, add a new nested group of tools.
|
|
290
|
-
:type group: bool
|
|
282
|
+
:type group: bool
|
|
291
283
|
"""
|
|
292
284
|
|
|
293
285
|
...
|
|
294
286
|
|
|
295
287
|
def resource_path(
|
|
296
|
-
type: str
|
|
288
|
+
type: str, major: int = bpy.app.version[0], minor: str = bpy.app.version[1]
|
|
297
289
|
) -> str:
|
|
298
290
|
"""Return the base path for storing system files.
|
|
299
291
|
|
|
300
292
|
:param type: string in ['USER', 'LOCAL', 'SYSTEM'].
|
|
301
|
-
:type type: str
|
|
293
|
+
:type type: str
|
|
302
294
|
:param major: major version, defaults to current.
|
|
303
|
-
:type major: int
|
|
295
|
+
:type major: int
|
|
304
296
|
:param minor: minor version, defaults to current.
|
|
305
|
-
:type minor: str
|
|
297
|
+
:type minor: str
|
|
306
298
|
:return: the resource path (not necessarily existing).
|
|
307
299
|
:rtype: str
|
|
308
300
|
"""
|
|
@@ -317,23 +309,23 @@ def script_path_user():
|
|
|
317
309
|
def script_paths(
|
|
318
310
|
*,
|
|
319
311
|
subdir: str | None = None,
|
|
320
|
-
user_pref: bool
|
|
321
|
-
check_all: bool
|
|
322
|
-
use_user: bool
|
|
323
|
-
use_system_environment: bool
|
|
312
|
+
user_pref: bool = True,
|
|
313
|
+
check_all: bool = False,
|
|
314
|
+
use_user: bool = True,
|
|
315
|
+
use_system_environment: bool = True,
|
|
324
316
|
) -> list:
|
|
325
317
|
"""Returns a list of valid script paths.
|
|
326
318
|
|
|
327
319
|
:param subdir: Optional subdir.
|
|
328
320
|
:type subdir: str | None
|
|
329
321
|
:param user_pref: Include the user preference script paths.
|
|
330
|
-
:type user_pref: bool
|
|
322
|
+
:type user_pref: bool
|
|
331
323
|
:param check_all: Include local, user and system paths rather just the paths Blender uses.
|
|
332
|
-
:type check_all: bool
|
|
324
|
+
:type check_all: bool
|
|
333
325
|
:param use_user: Include user paths
|
|
334
|
-
:type use_user: bool
|
|
326
|
+
:type use_user: bool
|
|
335
327
|
:param use_system_environment: Include BLENDER_SYSTEM_SCRIPTS variable path
|
|
336
|
-
:type use_system_environment: bool
|
|
328
|
+
:type use_system_environment: bool
|
|
337
329
|
:return: script paths.
|
|
338
330
|
:rtype: list
|
|
339
331
|
"""
|
|
@@ -350,35 +342,35 @@ def script_paths_system_environment():
|
|
|
350
342
|
|
|
351
343
|
...
|
|
352
344
|
|
|
353
|
-
def smpte_from_frame(frame: int
|
|
345
|
+
def smpte_from_frame(frame: int, *, fps=None, fps_base=None) -> str:
|
|
354
346
|
"""Returns an SMPTE formatted string from the frame:
|
|
355
347
|
HH:MM:SS:FF.If fps and fps_base are not given the current scene is used.
|
|
356
348
|
|
|
357
349
|
:param frame: frame number.
|
|
358
|
-
:type frame: int
|
|
350
|
+
:type frame: int
|
|
359
351
|
:return: the frame string.
|
|
360
352
|
:rtype: str
|
|
361
353
|
"""
|
|
362
354
|
|
|
363
355
|
...
|
|
364
356
|
|
|
365
|
-
def smpte_from_seconds(time: float | int
|
|
357
|
+
def smpte_from_seconds(time: float | int, *, fps=None, fps_base=None) -> str:
|
|
366
358
|
"""Returns an SMPTE formatted string from the time:
|
|
367
359
|
HH:MM:SS:FF.If fps and fps_base are not given the current scene is used.
|
|
368
360
|
|
|
369
361
|
:param time: time in seconds.
|
|
370
|
-
:type time: float | int
|
|
362
|
+
:type time: float | int
|
|
371
363
|
:return: the frame string.
|
|
372
364
|
:rtype: str
|
|
373
365
|
"""
|
|
374
366
|
|
|
375
367
|
...
|
|
376
368
|
|
|
377
|
-
def time_from_frame(frame: int
|
|
369
|
+
def time_from_frame(frame: int, *, fps=None, fps_base=None):
|
|
378
370
|
"""Returns the time from a frame number .If fps and fps_base are not given the current scene is used.
|
|
379
371
|
|
|
380
372
|
:param frame: number.
|
|
381
|
-
:type frame: int
|
|
373
|
+
:type frame: int
|
|
382
374
|
:return: the time in seconds.
|
|
383
375
|
"""
|
|
384
376
|
|
|
@@ -395,12 +387,12 @@ def time_to_frame(time, *, fps=None, fps_base=None) -> float:
|
|
|
395
387
|
|
|
396
388
|
...
|
|
397
389
|
|
|
398
|
-
def unescape_identifier(string: str
|
|
390
|
+
def unescape_identifier(string: str) -> str:
|
|
399
391
|
"""Simple string un-escape function used for animation paths.
|
|
400
392
|
This performs the reverse of escape_identifier.
|
|
401
393
|
|
|
402
394
|
:param string: text
|
|
403
|
-
:type string: str
|
|
395
|
+
:type string: str
|
|
404
396
|
:return: The un-escaped string.
|
|
405
397
|
:rtype: str
|
|
406
398
|
"""
|
|
@@ -426,13 +418,13 @@ def unregister_cli_command(handle):
|
|
|
426
418
|
...
|
|
427
419
|
|
|
428
420
|
def unregister_manual_map(manual_hook): ...
|
|
429
|
-
def unregister_preset_path(path: str
|
|
421
|
+
def unregister_preset_path(path: str) -> bool:
|
|
430
422
|
"""Unregister a preset search path.
|
|
431
423
|
|
|
432
424
|
:param path: preset directory (must be an absolute path).
|
|
433
425
|
|
|
434
426
|
This must match the registered path exactly.
|
|
435
|
-
:type path: str
|
|
427
|
+
:type path: str
|
|
436
428
|
:return: success
|
|
437
429
|
:rtype: bool
|
|
438
430
|
"""
|
|
@@ -440,17 +432,15 @@ def unregister_preset_path(path: str | None) -> bool:
|
|
|
440
432
|
...
|
|
441
433
|
|
|
442
434
|
def unregister_tool(tool_cls): ...
|
|
443
|
-
def user_resource(
|
|
444
|
-
resource_type: str | None, *, path: str | None = "", create: bool | None = False
|
|
445
|
-
) -> str:
|
|
435
|
+
def user_resource(resource_type: str, *, path: str = "", create: bool = False) -> str:
|
|
446
436
|
"""Return a user resource path (normally from the users home directory).
|
|
447
437
|
|
|
448
438
|
:param resource_type: Resource type in ['DATAFILES', 'CONFIG', 'SCRIPTS', 'EXTENSIONS'].
|
|
449
|
-
:type resource_type: str
|
|
439
|
+
:type resource_type: str
|
|
450
440
|
:param path: Optional subdirectory.
|
|
451
|
-
:type path: str
|
|
441
|
+
:type path: str
|
|
452
442
|
:param create: Treat the path as a directory and create it if its not existing.
|
|
453
|
-
:type create: bool
|
|
443
|
+
:type create: bool
|
|
454
444
|
:return: a path.
|
|
455
445
|
:rtype: str
|
|
456
446
|
"""
|
|
@@ -181,9 +181,9 @@ blf/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
|
181
181
|
bmesh/__init__.pyi,sha256=Vl3kfms133C_44cIoc_yK6U3dRQV102LIhkJlyWarzE,1583
|
|
182
182
|
bmesh/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
183
183
|
bmesh/geometry/__init__.pyi,sha256=UJWjDzaBqiHR7NE_t6JEKNLzJQc5I36b_8GHcn5Ywlc,758
|
|
184
|
-
bmesh/ops/__init__.pyi,sha256=
|
|
185
|
-
bmesh/types/__init__.pyi,sha256=
|
|
186
|
-
bmesh/utils/__init__.pyi,sha256=
|
|
184
|
+
bmesh/ops/__init__.pyi,sha256=0nrxMnZUDa6Ds2ksNAoIJCM4jqWRB_gwDFPdcaq7Isg,73175
|
|
185
|
+
bmesh/types/__init__.pyi,sha256=VpFQqyWI7Zl88RvG37bLWK2ZQqWrP9UiGxENkISJrpE,41343
|
|
186
|
+
bmesh/utils/__init__.pyi,sha256=0uLRVNx3hdiu5sRbSRSbdMH0s6PyoA56zHG1HXZkjGc,6122
|
|
187
187
|
bpy/__init__.pyi,sha256=UNHjZG8rO0s6czpA3abLXpCy_-0Uq3ZyWeH6gufZUMw,497
|
|
188
188
|
bpy/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
189
189
|
bpy/app/__init__.pyi,sha256=0wlJPokK3GF_Jg6VGUrtzzw6dWScrLA7cB2jbpbhlkA,8253
|
|
@@ -222,7 +222,7 @@ bpy/ops/geometry/__init__.pyi,sha256=k_UzjNCq3OZzWFfOg2Q6qgSw78HELzW4IHH4Vu6RiAw
|
|
|
222
222
|
bpy/ops/gizmogroup/__init__.pyi,sha256=_h2xG2u0gb4KPmAn3DnBC9ERO2NJqiAXeeH4kGyi3Ms,1706
|
|
223
223
|
bpy/ops/gpencil/__init__.pyi,sha256=0-aCAR6-pwmOwigz9RRMgb-Ks3bIUedVlyjVIFcxpso,103975
|
|
224
224
|
bpy/ops/graph/__init__.pyi,sha256=Yzrm-K3D0g2FehtRtf9TevKQIUvbXUpyvYtItgWGmXw,49912
|
|
225
|
-
bpy/ops/grease_pencil/__init__.pyi,sha256=
|
|
225
|
+
bpy/ops/grease_pencil/__init__.pyi,sha256=CPYHMKMnLRFu135_Py-nEF0K8o--vRgGuyb9xlH1wOg,51307
|
|
226
226
|
bpy/ops/image/__init__.pyi,sha256=QF4ZgYsR8CGhhRIf_72PKSP66dBjuiCF21fE3UBs1Ho,57778
|
|
227
227
|
bpy/ops/import_anim/__init__.pyi,sha256=sc5jYBSzFy-LM8137hRPNlOPeVGrjXCxIe80ZUpP_r8,2922
|
|
228
228
|
bpy/ops/import_curve/__init__.pyi,sha256=iE5haqhq6lCoqK39ir0DO88JQChanDbRw9EDcmVvB94,753
|
|
@@ -269,10 +269,10 @@ bpy/ops/view3d/__init__.pyi,sha256=Tmxe1tUhHtqfUWqnFAin2o9g9E4IAVw0n9DBexKXG5s,4
|
|
|
269
269
|
bpy/ops/wm/__init__.pyi,sha256=Zsn9lJKxXB2-9bziAmRa8FzfAD2aduNQJ0CGJCcVCyM,216386
|
|
270
270
|
bpy/ops/workspace/__init__.pyi,sha256=OSELKT_HUs2W6cOk2wOigZgkbieGezMVWTi45f4x-Ik,3289
|
|
271
271
|
bpy/ops/world/__init__.pyi,sha256=_z3cX9CYV0nTmSiSQcC82nRiXYriWMcHomfxmSl2GxM,1057
|
|
272
|
-
bpy/path/__init__.pyi,sha256=
|
|
273
|
-
bpy/props/__init__.pyi,sha256=
|
|
274
|
-
bpy/types/__init__.pyi,sha256=
|
|
275
|
-
bpy/utils/__init__.pyi,sha256=
|
|
272
|
+
bpy/path/__init__.pyi,sha256=J_4vrRw_TTuMW4KHqSHZqYIKfDoCgG6Wv1PIFZx7__4,5612
|
|
273
|
+
bpy/props/__init__.pyi,sha256=5dF03F-bYYW-j5P9eDOgSJ07JYRVwMvjmMjBYjCrjS8,29631
|
|
274
|
+
bpy/types/__init__.pyi,sha256=8QCRmrDtIVrR0gg9AMEXt_HzUpkJNA92BFQgaTxmYwQ,5159008
|
|
275
|
+
bpy/utils/__init__.pyi,sha256=fuZc6nInRbbso-qzaeNWGfipuB37ySvxZVrJcEJ-RxM,13280
|
|
276
276
|
bpy/utils/previews/__init__.pyi,sha256=0mvcirUV7D4ByWzEUIBVEEJ1VTFhBjBcstllI7L6MRc,2439
|
|
277
277
|
bpy/utils/units/__init__.pyi,sha256=2OtqF54xi6peGyNeSGkuaLpytf2EESF753zqooe8bwc,2719
|
|
278
278
|
bpy_extras/__init__.pyi,sha256=2VLH9ypoDdQ26LNuGXzPoFLPKCf7sZWZJRBF1_mOV18,862
|
|
@@ -302,11 +302,11 @@ console_shell/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
|
302
302
|
freestyle/__init__.pyi,sha256=EfH5v6ffqL0kVjIYo9VhFAeDaCakVSZ7mTuihZg20y0,732
|
|
303
303
|
freestyle/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
304
304
|
freestyle/chainingiterators/__init__.pyi,sha256=Xqt-Ri8WUKaDz8_kVpRQ8EmMjFc6THz5ot48D1BC_NM,10889
|
|
305
|
-
freestyle/functions/__init__.pyi,sha256=
|
|
306
|
-
freestyle/predicates/__init__.pyi,sha256=
|
|
305
|
+
freestyle/functions/__init__.pyi,sha256=d7SyUcF7r3MQV3OARbT6cCbENGSmDKT--mkUp5JsrRY,49803
|
|
306
|
+
freestyle/predicates/__init__.pyi,sha256=J1vOBMRPvlHuqiErZabCtSgPUz2kzi8Oh_cc_OIMlD8,13860
|
|
307
307
|
freestyle/shaders/__init__.pyi,sha256=_yBIN2vWTq70X_8_MfUe4TqiL1Iri4OYjvIkXRQxG5M,24828
|
|
308
308
|
freestyle/types/__init__.pyi,sha256=IEVGlCVIX7hMCYKskB-TYzlvhi-QkupgJPiaYSimpA0,100396
|
|
309
|
-
freestyle/utils/__init__.pyi,sha256=
|
|
309
|
+
freestyle/utils/__init__.pyi,sha256=dVRmwht78x5Rg53oFqlZgIWB5GpqVs7-JKoZuPkYwV0,5415
|
|
310
310
|
freestyle/utils/ContextFunctions/__init__.pyi,sha256=3zOixayiQsbvJ5xTNYLsaDGUka_q_u5-YQ68KywJWMg,3579
|
|
311
311
|
gpu/__init__.pyi,sha256=Sk-6v4PijACLtDfQx_DD7wTM7KUVZd_5xz1i6IqyiyM,7981
|
|
312
312
|
gpu/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -317,7 +317,7 @@ gpu/select/__init__.pyi,sha256=LA2PPQq50c3QHm_FrU_ZkGxEqErloooQ4ghurzje_RE,309
|
|
|
317
317
|
gpu/shader/__init__.pyi,sha256=H_OSM6U4ZcEPs_ExI8lMxqb_LT6bf7aUDWusfomyEk4,2127
|
|
318
318
|
gpu/state/__init__.pyi,sha256=cPTgox0AW_OabUomyZNPJv-GafM16BPK-oB21hXIdlc,4547
|
|
319
319
|
gpu/texture/__init__.pyi,sha256=d7j_EqDplxMGriX2X8vucyjZNwPN6AHEVzB9v5N7s18,743
|
|
320
|
-
gpu/types/__init__.pyi,sha256=
|
|
320
|
+
gpu/types/__init__.pyi,sha256=gAseTPbPMHf93nFjZenJwrs9PeL99AaT0Us4nIj1nao,27541
|
|
321
321
|
gpu_extras/__init__.pyi,sha256=-NEEAL1gAmLIJmGm7VdrThYv5Qj_CUPL-SfxmBlKpc4,286
|
|
322
322
|
gpu_extras/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
323
323
|
gpu_extras/batch/__init__.pyi,sha256=qYYVMNIiU4mFLKO8nsbzGA6dCtQ_RERdkLyAdK2B6bU,763
|
|
@@ -327,7 +327,7 @@ graphviz_export/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
|
327
327
|
idprop/__init__.pyi,sha256=djL8F9bHhK9ARe17brTDWFNhKH75CAPPOP5HP6DFTrI,175
|
|
328
328
|
idprop/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
329
329
|
idprop/types/__init__.pyi,sha256=T614leJN7OyMohDTRhry7i-OttIlt7U2DpWOrbTjbNU,1866
|
|
330
|
-
imbuf/__init__.pyi,sha256=
|
|
330
|
+
imbuf/__init__.pyi,sha256=Z9sGlfURdAANhSbZYptEYQ12devwmm6B5qUcSzdfw1E,1179
|
|
331
331
|
imbuf/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
332
332
|
imbuf/types/__init__.pyi,sha256=eRAZUjTlwmIspAK6rL3j0YYj-77OMyMBKD6hdesijas,1337
|
|
333
333
|
keyingsets_builtins/__init__.pyi,sha256=Qm8j2w0L6xWdJ6ufkvRcxX1baSKpS8oSrgQ1szbaln0,16678
|
|
@@ -336,7 +336,7 @@ keyingsets_utils/__init__.pyi,sha256=GM90DATed06QP-LtGvltmKfalWq6tTUeHhUeuRb3hNE
|
|
|
336
336
|
keyingsets_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
337
337
|
mathutils/__init__.pyi,sha256=lK1HJ1HghYCWuHH6VNP6a-GMUIed1V0xDXAoFTRIhOY,79017
|
|
338
338
|
mathutils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
339
|
-
mathutils/bvhtree/__init__.pyi,sha256
|
|
339
|
+
mathutils/bvhtree/__init__.pyi,sha256=_7vxFslK-wfOcYOBDoHskq64H8Ti_SbQnvV_ciiom3w,4433
|
|
340
340
|
mathutils/geometry/__init__.pyi,sha256=V86d1sF454Aiu7gAfx4zWkaf4vrsgzDgz6Q_S9vRJws,21230
|
|
341
341
|
mathutils/interpolate/__init__.pyi,sha256=Zl76R_uMDu1-zJkGvOiqlBKv2btUpJpcOG71RZVupn0,403
|
|
342
342
|
mathutils/kdtree/__init__.pyi,sha256=W86zDhpTYhp7pMN1FPJWWkM0vtGohS-FEE-H5HIq_IQ,2334
|
|
@@ -355,7 +355,7 @@ rna_xml/__init__.pyi,sha256=aUk0kaxu1bMT5z1b2S_CnI0r-p7119GGYDjeV65sx6w,670
|
|
|
355
355
|
rna_xml/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
356
356
|
sys_info/__init__.pyi,sha256=-GCmGVtiditgEnxiqi7hwH2wbEMmrtUNGvMEbxVezU4,189
|
|
357
357
|
sys_info/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
358
|
-
fake_bpy_module-
|
|
359
|
-
fake_bpy_module-
|
|
360
|
-
fake_bpy_module-
|
|
361
|
-
fake_bpy_module-
|
|
358
|
+
fake_bpy_module-20240803.dist-info/METADATA,sha256=DZttWUoiLiBUa53iQG4RJ8jl-USgAL3Rwa_LN74m0SI,7289
|
|
359
|
+
fake_bpy_module-20240803.dist-info/WHEEL,sha256=R0nc6qTxuoLk7ShA2_Y-UWkN8ZdfDBG2B6Eqpz2WXbs,91
|
|
360
|
+
fake_bpy_module-20240803.dist-info/top_level.txt,sha256=laOLfHIg0_6N4ntsGrWh85yODawYeLVGI-wex_FGLUI,509
|
|
361
|
+
fake_bpy_module-20240803.dist-info/RECORD,,
|