fake-bge-module 20250224__py3-none-any.whl → 20250225__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.
- bpy/ops/buttons/__init__.pyi +3 -0
- bpy/ops/curves/__init__.pyi +7 -0
- bpy/ops/import_curve/__init__.pyi +4 -0
- bpy/ops/node/__init__.pyi +19 -0
- bpy/types/__init__.pyi +32722 -32697
- {fake_bge_module-20250224.dist-info → fake_bge_module-20250225.dist-info}/METADATA +1 -1
- {fake_bge_module-20250224.dist-info → fake_bge_module-20250225.dist-info}/RECORD +10 -10
- freestyle/utils/__init__.pyi +1 -1
- {fake_bge_module-20250224.dist-info → fake_bge_module-20250225.dist-info}/WHEEL +0 -0
- {fake_bge_module-20250224.dist-info → fake_bge_module-20250225.dist-info}/top_level.txt +0 -0
bpy/ops/buttons/__init__.pyi
CHANGED
|
@@ -147,6 +147,7 @@ def file_browse(
|
|
|
147
147
|
]
|
|
148
148
|
| None = "DEFAULT",
|
|
149
149
|
sort_method: str | None = "",
|
|
150
|
+
filter_glob: str = "",
|
|
150
151
|
):
|
|
151
152
|
"""Open a file browser, hold Shift to open the file, Alt to browse containing directory
|
|
152
153
|
|
|
@@ -212,6 +213,8 @@ def file_browse(
|
|
|
212
213
|
:type display_type: typing.Literal['DEFAULT','LIST_VERTICAL','LIST_HORIZONTAL','THUMBNAIL'] | None
|
|
213
214
|
:param sort_method: File sorting mode
|
|
214
215
|
:type sort_method: str | None
|
|
216
|
+
:param filter_glob: Glob Filter, Custom filter
|
|
217
|
+
:type filter_glob: str
|
|
215
218
|
"""
|
|
216
219
|
|
|
217
220
|
def start_filter(execution_context: int | str | None = None, undo: bool | None = None):
|
bpy/ops/curves/__init__.pyi
CHANGED
|
@@ -436,6 +436,13 @@ def snap_curves_to_surface(
|
|
|
436
436
|
:type attach_mode: typing.Literal['NEAREST','DEFORM'] | None
|
|
437
437
|
"""
|
|
438
438
|
|
|
439
|
+
def split(execution_context: int | str | None = None, undo: bool | None = None):
|
|
440
|
+
"""Split selected points
|
|
441
|
+
|
|
442
|
+
:type execution_context: int | str | None
|
|
443
|
+
:type undo: bool | None
|
|
444
|
+
"""
|
|
445
|
+
|
|
439
446
|
def subdivide(
|
|
440
447
|
execution_context: int | str | None = None,
|
|
441
448
|
undo: bool | None = None,
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import typing
|
|
2
2
|
import collections.abc
|
|
3
3
|
import typing_extensions
|
|
4
|
+
import bpy.types
|
|
4
5
|
|
|
5
6
|
def svg(
|
|
6
7
|
execution_context: int | str | None = None,
|
|
@@ -9,6 +10,7 @@ def svg(
|
|
|
9
10
|
*,
|
|
10
11
|
filepath: str = "",
|
|
11
12
|
filter_glob: str = "*.svg",
|
|
13
|
+
files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement] = None,
|
|
12
14
|
):
|
|
13
15
|
"""Load a SVG file
|
|
14
16
|
|
|
@@ -18,4 +20,6 @@ def svg(
|
|
|
18
20
|
:type filepath: str
|
|
19
21
|
:param filter_glob: filter_glob
|
|
20
22
|
:type filter_glob: str
|
|
23
|
+
:param files: File Path
|
|
24
|
+
:type files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement]
|
|
21
25
|
"""
|
bpy/ops/node/__init__.pyi
CHANGED
|
@@ -252,6 +252,25 @@ def add_group_asset(
|
|
|
252
252
|
:type relative_asset_identifier: str
|
|
253
253
|
"""
|
|
254
254
|
|
|
255
|
+
def add_import_node(
|
|
256
|
+
execution_context: int | str | None = None,
|
|
257
|
+
undo: bool | None = None,
|
|
258
|
+
/,
|
|
259
|
+
*,
|
|
260
|
+
directory: str = "",
|
|
261
|
+
files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement]
|
|
262
|
+
| None = None,
|
|
263
|
+
):
|
|
264
|
+
"""Add an import node to the node tree
|
|
265
|
+
|
|
266
|
+
:type execution_context: int | str | None
|
|
267
|
+
:type undo: bool | None
|
|
268
|
+
:param directory: Directory, Directory of the file
|
|
269
|
+
:type directory: str
|
|
270
|
+
:param files: Files
|
|
271
|
+
:type files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement] | None
|
|
272
|
+
"""
|
|
273
|
+
|
|
255
274
|
def add_mask(
|
|
256
275
|
execution_context: int | str | None = None,
|
|
257
276
|
undo: bool | None = None,
|