fake-bpy-module 20250410__py3-none-any.whl → 20250411__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.
- bpy/_typing/rna_enums/__init__.pyi +1 -0
- bpy/ops/extensions/__init__.pyi +7 -1
- bpy/ops/view3d/__init__.pyi +2 -2
- bpy/ops/workspace/__init__.pyi +2 -2
- bpy/types/__init__.pyi +31 -10
- {fake_bpy_module-20250410.dist-info → fake_bpy_module-20250411.dist-info}/METADATA +1 -1
- {fake_bpy_module-20250410.dist-info → fake_bpy_module-20250411.dist-info}/RECORD +10 -10
- rna_info/__init__.pyi +1 -0
- {fake_bpy_module-20250410.dist-info → fake_bpy_module-20250411.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20250410.dist-info → fake_bpy_module-20250411.dist-info}/top_level.txt +0 -0
|
@@ -2525,6 +2525,7 @@ type PropertyFlagItems = typing.Literal[
|
|
|
2525
2525
|
"PROPORTIONAL", # Adjust values proportionally to each other.
|
|
2526
2526
|
"TEXTEDIT_UPDATE", # Update on every keystroke in textedit 'mode'.
|
|
2527
2527
|
"OUTPUT_PATH", # Output Path.
|
|
2528
|
+
"RELATIVE_PATH", # Relative Path Support.This path supports relative prefix "//" which is expanded the the directory where the current ".blend" file is located..
|
|
2528
2529
|
]
|
|
2529
2530
|
type PropertyOverrideFlagCollectionItems = typing.Literal[
|
|
2530
2531
|
"LIBRARY_OVERRIDABLE", # Library Overridable.Make that property editable in library overrides of linked data-blocks.NOTE: For a property to be overridable, its whole chain of parent properties must also be defined as overridable.
|
bpy/ops/extensions/__init__.pyi
CHANGED
|
@@ -328,12 +328,18 @@ def repo_lock_all(execution_context: int | str | None = None, undo: bool | None
|
|
|
328
328
|
"""
|
|
329
329
|
|
|
330
330
|
def repo_refresh_all(
|
|
331
|
-
execution_context: int | str | None = None,
|
|
331
|
+
execution_context: int | str | None = None,
|
|
332
|
+
undo: bool | None = None,
|
|
333
|
+
/,
|
|
334
|
+
*,
|
|
335
|
+
use_active_only: bool | None = False,
|
|
332
336
|
):
|
|
333
337
|
"""Scan extension & legacy add-ons for changes to modules & meta-data (similar to restarting). Any issues are reported as warnings
|
|
334
338
|
|
|
335
339
|
:type execution_context: int | str | None
|
|
336
340
|
:type undo: bool | None
|
|
341
|
+
:param use_active_only: Active Only, Only refresh the active repository
|
|
342
|
+
:type use_active_only: bool | None
|
|
337
343
|
"""
|
|
338
344
|
|
|
339
345
|
def repo_sync(
|
bpy/ops/view3d/__init__.pyi
CHANGED
|
@@ -33,7 +33,7 @@ def camera_background_image_add(
|
|
|
33
33
|
undo: bool | None = None,
|
|
34
34
|
/,
|
|
35
35
|
*,
|
|
36
|
-
filepath: str = "",
|
|
36
|
+
filepath: str | None = "",
|
|
37
37
|
relative_path: bool | None = True,
|
|
38
38
|
name: str = "",
|
|
39
39
|
session_uid: int | None = 0,
|
|
@@ -43,7 +43,7 @@ def camera_background_image_add(
|
|
|
43
43
|
:type execution_context: int | str | None
|
|
44
44
|
:type undo: bool | None
|
|
45
45
|
:param filepath: Filepath, Path to image file
|
|
46
|
-
:type filepath: str
|
|
46
|
+
:type filepath: str | None
|
|
47
47
|
:param relative_path: Relative Path, Select the file relative to the blend file
|
|
48
48
|
:type relative_path: bool | None
|
|
49
49
|
:param name: Name, Name of the data-block to use by the operator
|
bpy/ops/workspace/__init__.pyi
CHANGED
|
@@ -16,7 +16,7 @@ def append_activate(
|
|
|
16
16
|
/,
|
|
17
17
|
*,
|
|
18
18
|
idname: str = "",
|
|
19
|
-
filepath: str = "",
|
|
19
|
+
filepath: str | None = "",
|
|
20
20
|
):
|
|
21
21
|
"""Append a workspace and make it the active one in the current window
|
|
22
22
|
|
|
@@ -25,7 +25,7 @@ def append_activate(
|
|
|
25
25
|
:param idname: Identifier, Name of the workspace to append and activate
|
|
26
26
|
:type idname: str
|
|
27
27
|
:param filepath: Filepath, Path to the library
|
|
28
|
-
:type filepath: str
|
|
28
|
+
:type filepath: str | None
|
|
29
29
|
"""
|
|
30
30
|
|
|
31
31
|
def delete(execution_context: int | str | None = None, undo: bool | None = None):
|
bpy/types/__init__.pyi
CHANGED
|
@@ -2342,6 +2342,7 @@
|
|
|
2342
2342
|
* Property.is_enum_flag
|
|
2343
2343
|
* Property.is_library_editable
|
|
2344
2344
|
* Property.is_path_output
|
|
2345
|
+
* Property.is_path_supports_blend_relative
|
|
2345
2346
|
* Property.tags
|
|
2346
2347
|
|
|
2347
2348
|
:columns: 2
|
|
@@ -16213,6 +16214,7 @@ Executing the operator will then print all values.
|
|
|
16213
16214
|
* Property.is_enum_flag
|
|
16214
16215
|
* Property.is_library_editable
|
|
16215
16216
|
* Property.is_path_output
|
|
16217
|
+
* Property.is_path_supports_blend_relative
|
|
16216
16218
|
* Property.tags
|
|
16217
16219
|
|
|
16218
16220
|
:columns: 2
|
|
@@ -30417,6 +30419,7 @@ example of how to create/use filtering/reordering callbacks.
|
|
|
30417
30419
|
* Property.is_enum_flag
|
|
30418
30420
|
* Property.is_library_editable
|
|
30419
30421
|
* Property.is_path_output
|
|
30422
|
+
* Property.is_path_supports_blend_relative
|
|
30420
30423
|
* Property.tags
|
|
30421
30424
|
|
|
30422
30425
|
:columns: 2
|
|
@@ -44862,6 +44865,7 @@ print(positions_data)
|
|
|
44862
44865
|
* Property.is_enum_flag
|
|
44863
44866
|
* Property.is_library_editable
|
|
44864
44867
|
* Property.is_path_output
|
|
44868
|
+
* Property.is_path_supports_blend_relative
|
|
44865
44869
|
* Property.tags
|
|
44866
44870
|
|
|
44867
44871
|
:columns: 2
|
|
@@ -60982,6 +60986,7 @@ Menu.poll function.
|
|
|
60982
60986
|
* Property.is_enum_flag
|
|
60983
60987
|
* Property.is_library_editable
|
|
60984
60988
|
* Property.is_path_output
|
|
60989
|
+
* Property.is_path_supports_blend_relative
|
|
60985
60990
|
* Property.tags
|
|
60986
60991
|
|
|
60987
60992
|
:columns: 2
|
|
@@ -74109,6 +74114,7 @@ from a search field, this can be done using bpy.types.Operator.invoke_search_pop
|
|
|
74109
74114
|
* Property.is_enum_flag
|
|
74110
74115
|
* Property.is_library_editable
|
|
74111
74116
|
* Property.is_path_output
|
|
74117
|
+
* Property.is_path_supports_blend_relative
|
|
74112
74118
|
* Property.tags
|
|
74113
74119
|
|
|
74114
74120
|
:columns: 2
|
|
@@ -97353,6 +97359,7 @@ of the scene and only show nodes of the renderer they are designed for.
|
|
|
97353
97359
|
* Property.is_enum_flag
|
|
97354
97360
|
* Property.is_library_editable
|
|
97355
97361
|
* Property.is_path_output
|
|
97362
|
+
* Property.is_path_supports_blend_relative
|
|
97356
97363
|
* Property.tags
|
|
97357
97364
|
|
|
97358
97365
|
:columns: 2
|
|
@@ -109751,11 +109758,13 @@ class BlendDataCurves(bpy_prop_collection[Curve], bpy_struct):
|
|
|
109751
109758
|
class BlendDataFonts(bpy_prop_collection[VectorFont], bpy_struct):
|
|
109752
109759
|
"""Collection of fonts"""
|
|
109753
109760
|
|
|
109754
|
-
def load(
|
|
109761
|
+
def load(
|
|
109762
|
+
self, filepath: str | None, *, check_existing: bool | None = False
|
|
109763
|
+
) -> VectorFont:
|
|
109755
109764
|
"""Load a new font into the main database
|
|
109756
109765
|
|
|
109757
109766
|
:param filepath: path of the font to load
|
|
109758
|
-
:type filepath: str
|
|
109767
|
+
:type filepath: str | None
|
|
109759
109768
|
:param check_existing: Using existing data-block if this file is already loaded
|
|
109760
109769
|
:type check_existing: bool | None
|
|
109761
109770
|
:return: New font data-block
|
|
@@ -110031,11 +110040,13 @@ class BlendDataImages(bpy_prop_collection[Image], bpy_struct):
|
|
|
110031
110040
|
:rtype: Image
|
|
110032
110041
|
"""
|
|
110033
110042
|
|
|
110034
|
-
def load(
|
|
110043
|
+
def load(
|
|
110044
|
+
self, filepath: str | None, *, check_existing: bool | None = False
|
|
110045
|
+
) -> Image:
|
|
110035
110046
|
"""Load a new image into the main database
|
|
110036
110047
|
|
|
110037
110048
|
:param filepath: Path of the file to load
|
|
110038
|
-
:type filepath: str
|
|
110049
|
+
:type filepath: str | None
|
|
110039
110050
|
:param check_existing: Using existing data-block if this file is already loaded
|
|
110040
110051
|
:type check_existing: bool | None
|
|
110041
110052
|
:return: New image data-block
|
|
@@ -110698,11 +110709,13 @@ class BlendDataMovieClips(bpy_prop_collection[MovieClip], bpy_struct):
|
|
|
110698
110709
|
:type do_ui_user: bool | None
|
|
110699
110710
|
"""
|
|
110700
110711
|
|
|
110701
|
-
def load(
|
|
110712
|
+
def load(
|
|
110713
|
+
self, filepath: str | None, *, check_existing: bool | None = False
|
|
110714
|
+
) -> MovieClip:
|
|
110702
110715
|
"""Add a new movie clip to the main database from a file (while check_existing is disabled for consistency with other load functions, behavior with multiple movie-clips using the same file may incorrectly generate proxies)
|
|
110703
110716
|
|
|
110704
110717
|
:param filepath: path for the data-block
|
|
110705
|
-
:type filepath: str
|
|
110718
|
+
:type filepath: str | None
|
|
110706
110719
|
:param check_existing: Using existing data-block if this file is already loaded
|
|
110707
110720
|
:type check_existing: bool | None
|
|
110708
110721
|
:return: New movie clip data-block
|
|
@@ -111222,11 +111235,13 @@ class BlendDataScreens(bpy_prop_collection[Screen], bpy_struct):
|
|
|
111222
111235
|
class BlendDataSounds(bpy_prop_collection[Sound], bpy_struct):
|
|
111223
111236
|
"""Collection of sounds"""
|
|
111224
111237
|
|
|
111225
|
-
def load(
|
|
111238
|
+
def load(
|
|
111239
|
+
self, filepath: str | None, *, check_existing: bool | None = False
|
|
111240
|
+
) -> Sound:
|
|
111226
111241
|
"""Add a new sound to the main database from a file
|
|
111227
111242
|
|
|
111228
111243
|
:param filepath: path for the data-block
|
|
111229
|
-
:type filepath: str
|
|
111244
|
+
:type filepath: str | None
|
|
111230
111245
|
:param check_existing: Using existing data-block if this file is already loaded
|
|
111231
111246
|
:type check_existing: bool | None
|
|
111232
111247
|
:return: New text data-block
|
|
@@ -111375,11 +111390,11 @@ class BlendDataTexts(bpy_prop_collection[Text], bpy_struct):
|
|
|
111375
111390
|
:type do_ui_user: bool | None
|
|
111376
111391
|
"""
|
|
111377
111392
|
|
|
111378
|
-
def load(self, filepath: str, *, internal: bool | None = False) -> Text:
|
|
111393
|
+
def load(self, filepath: str | None, *, internal: bool | None = False) -> Text:
|
|
111379
111394
|
"""Add a new text to the main database from a file
|
|
111380
111395
|
|
|
111381
111396
|
:param filepath: path for the data-block
|
|
111382
|
-
:type filepath: str
|
|
111397
|
+
:type filepath: str | None
|
|
111383
111398
|
:param internal: Make internal, Make text file internal after loading
|
|
111384
111399
|
:type internal: bool | None
|
|
111385
111400
|
:return: New text data-block
|
|
@@ -199840,6 +199855,12 @@ class Property(bpy_struct):
|
|
|
199840
199855
|
:type: bool
|
|
199841
199856
|
"""
|
|
199842
199857
|
|
|
199858
|
+
is_path_supports_blend_relative: bool
|
|
199859
|
+
""" Property is a path which supports the "//" prefix, signifying the location as relative to the ".blend" files directory
|
|
199860
|
+
|
|
199861
|
+
:type: bool
|
|
199862
|
+
"""
|
|
199863
|
+
|
|
199843
199864
|
is_readonly: bool
|
|
199844
199865
|
""" Property is editable through RNA
|
|
199845
199866
|
|
|
@@ -192,7 +192,7 @@ bmesh/utils/__init__.pyi,sha256=B2MEUdWjhoPVN_86ZJnKBouszuYlmox83fs_eMy_XSQ,6262
|
|
|
192
192
|
bpy/__init__.pyi,sha256=xqYSQA60ItjGIlcKmU1c67ClE1dzY3IA0l7SeDDfFFg,491
|
|
193
193
|
bpy/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
194
194
|
bpy/_typing/__init__.pyi,sha256=h3K2LGZ8lcLY-Oo9ym-HEopjGScc4iTfpT1MU_6smTI,126
|
|
195
|
-
bpy/_typing/rna_enums/__init__.pyi,sha256=
|
|
195
|
+
bpy/_typing/rna_enums/__init__.pyi,sha256=phmBJrH8xcnHVNiMI2tT-L0BrhjVicNNZu4wc_kNsNs,140423
|
|
196
196
|
bpy/app/__init__.pyi,sha256=hNqhcqWihQrYUx9_KDYW0IWG4XkSQj1LIdHqQo_H42o,8784
|
|
197
197
|
bpy/app/handlers/__init__.pyi,sha256=A9IS2EmBskYtGy2aMCX5vxAmTKB3YCuz1hUPZvah8S4,6938
|
|
198
198
|
bpy/app/icons/__init__.pyi,sha256=IxxJA0uPQaBAogv-iZ2jEG-5f6i3X9M-gRjw8jJnL8A,955
|
|
@@ -221,7 +221,7 @@ bpy/ops/dpaint/__init__.pyi,sha256=9c4iWq0b5rd_bwy132hZ0puT1b6MYsQFD9Gsuy9IFR8,1
|
|
|
221
221
|
bpy/ops/ed/__init__.pyi,sha256=ToAbK51M0V5uEjpG4ENeXLfzqqzt0RBPpqD7-cP_ddI,7129
|
|
222
222
|
bpy/ops/export_anim/__init__.pyi,sha256=vMJtrDBdESAFGNAyzK3vKVdjfhzjbaS5I3qqGFZatS4,2054
|
|
223
223
|
bpy/ops/export_scene/__init__.pyi,sha256=WQxTBro7MQ0JY4rMtRCHocmBfBMc2iEG7aF5zBXdPgE,40452
|
|
224
|
-
bpy/ops/extensions/__init__.pyi,sha256=
|
|
224
|
+
bpy/ops/extensions/__init__.pyi,sha256=9L0hxUtZuQoelKZWm8KxnOXP_D9GlK4anzAcHDFZOCw,12503
|
|
225
225
|
bpy/ops/file/__init__.pyi,sha256=RcQ7PXPKaFvA5XNsUbGrovqFjvjlvJ3LsEdp8k9MkCM,19287
|
|
226
226
|
bpy/ops/fluid/__init__.pyi,sha256=lJDfm8cfRkm9S42vutMzeAeZBezIPIheRrMVaYpr4cY,3218
|
|
227
227
|
bpy/ops/font/__init__.pyi,sha256=_0Y1LLKF5zGPRuPC4Ecy2o4L_8ck44lyNYB0vJbThGY,15536
|
|
@@ -273,13 +273,13 @@ bpy/ops/ui/__init__.pyi,sha256=CVX3Wa57AZ4sJBFmFmBvxc4USfYfN4tgsSrYPD1nl8Q,12537
|
|
|
273
273
|
bpy/ops/uilist/__init__.pyi,sha256=CvereEDgN2sNfwlFl55E3sGeLTcaUcTCowuL1XVlclE,1645
|
|
274
274
|
bpy/ops/uv/__init__.pyi,sha256=nVZbRNLymiV8kXoRxWWNRSq72QkPBHTtwifjBxyVINY,45463
|
|
275
275
|
bpy/ops/view2d/__init__.pyi,sha256=-ofLmKQJ0PqTP5b_mT2JHGo-Jf7aa3qeEf1nsmJQf50,7013
|
|
276
|
-
bpy/ops/view3d/__init__.pyi,sha256=
|
|
276
|
+
bpy/ops/view3d/__init__.pyi,sha256=zjN4R4gMYbiteFoT7Hq2jy6JC9o5VmtOvRcq4og13s8,30895
|
|
277
277
|
bpy/ops/wm/__init__.pyi,sha256=rTB8FuFxpeEtjauUJTlXiv540U0ke8Ahq37jS7kaa2M,216201
|
|
278
|
-
bpy/ops/workspace/__init__.pyi,sha256=
|
|
278
|
+
bpy/ops/workspace/__init__.pyi,sha256=NdaJuwz3A-gStNuzp_OWR9DIj7oeSgLjn9SUEBLYuNo,2024
|
|
279
279
|
bpy/ops/world/__init__.pyi,sha256=9OhY87-WRRLor-4GQJhDiDJG3M9W5s9yFo9x45Iiycs,628
|
|
280
280
|
bpy/path/__init__.pyi,sha256=yGX45MUnn9fJYw32UWTsBQ646iN5DbbxfvnoDkREWvI,5537
|
|
281
281
|
bpy/props/__init__.pyi,sha256=4SYl5qfPLRwe3zGyHowQy_i_mU-gjImdiqidFOHP6Tc,35264
|
|
282
|
-
bpy/types/__init__.pyi,sha256=
|
|
282
|
+
bpy/types/__init__.pyi,sha256=rEAwEXegEd7v427InJye3S7T9RaaGC3PJcIE3NMGxjM,5585844
|
|
283
283
|
bpy/utils/__init__.pyi,sha256=NwKl40t0SfvM2Lce9VmXS9zh6T-ZE1JxleSh9te_d5E,15351
|
|
284
284
|
bpy/utils/previews/__init__.pyi,sha256=kgH-eG4DeJ9HRPdzOQOBmITEN2czD7lQ0JhBoWtrRgw,2313
|
|
285
285
|
bpy/utils/units/__init__.pyi,sha256=dc9ZViPAqOap5ZsFfWoI0d6bHdri3pWWiVeRxAaZr-U,2672
|
|
@@ -353,7 +353,7 @@ nodeitems_builtins/__init__.pyi,sha256=L5QEqATwFxKZvAEuzv-6O01bnn-73nd8z_SYhcaei
|
|
|
353
353
|
nodeitems_builtins/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
354
354
|
nodeitems_utils/__init__.pyi,sha256=R5bWseQ4duA5aESP7gNpu4o8LMcSSIU2HoD_59HgDbA,774
|
|
355
355
|
nodeitems_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
356
|
-
rna_info/__init__.pyi,sha256=
|
|
356
|
+
rna_info/__init__.pyi,sha256=Uy5a6Fz5uT7K8Poe7PH0QNLQHZlDXhtCbXo0kdL_rZA,3232
|
|
357
357
|
rna_info/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
358
358
|
rna_keymap_ui/__init__.pyi,sha256=FzzDmI_jh8ompSdGbggE2kpU0e-cfVe3IBI1DokWi1E,440
|
|
359
359
|
rna_keymap_ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -361,7 +361,7 @@ rna_prop_ui/__init__.pyi,sha256=o3yE2C_BSi2O_ZJM_Jao06i6seWMRNQcZaI6keKjpFE,1308
|
|
|
361
361
|
rna_prop_ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
362
362
|
rna_xml/__init__.pyi,sha256=EBP-inpL9KRsjGftcoza9_G_Do5UjXw62eAvuEMoaO0,604
|
|
363
363
|
rna_xml/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
364
|
-
fake_bpy_module-
|
|
365
|
-
fake_bpy_module-
|
|
366
|
-
fake_bpy_module-
|
|
367
|
-
fake_bpy_module-
|
|
364
|
+
fake_bpy_module-20250411.dist-info/METADATA,sha256=CahgemmmINr6EI6Taq7Fy-07wrcaK0v5WSsWjXn11sM,7429
|
|
365
|
+
fake_bpy_module-20250411.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
|
|
366
|
+
fake_bpy_module-20250411.dist-info/top_level.txt,sha256=SZm3DVRKif7dFSjYKiIIg3_7uqjIwRAwOnCIcT4hRNM,500
|
|
367
|
+
fake_bpy_module-20250411.dist-info/RECORD,,
|
rna_info/__init__.pyi
CHANGED
|
File without changes
|
|
File without changes
|