fake-bpy-module 20250909__py3-none-any.whl → 20250912__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_types/__init__.pyi +103 -0
- bl_operators/mesh/__init__.pyi +0 -43
- bl_operators/node/__init__.pyi +1 -1
- bl_ui/properties_constraint/__init__.pyi +0 -68
- bl_ui/properties_data_mesh/__init__.pyi +1 -0
- bl_ui/space_dopesheet/__init__.pyi +35 -0
- bl_ui/space_sequencer/__init__.pyi +62 -0
- bl_ui/space_time/__init__.pyi +7 -0
- bl_ui/space_toolsystem_toolbar/__init__.pyi +2 -0
- bl_ui/space_userpref/__init__.pyi +35 -39
- bl_ui/space_view3d_toolbar/__init__.pyi +7 -0
- bpy/ops/mesh/__init__.pyi +0 -18
- bpy/ops/node/__init__.pyi +23 -1
- bpy/ops/render/__init__.pyi +6 -0
- bpy/ops/uv/__init__.pyi +30 -0
- bpy/stub_internal/rna_enums/__init__.pyi +7 -0
- bpy/types/__init__.pyi +238 -49
- {fake_bpy_module-20250909.dist-info → fake_bpy_module-20250912.dist-info}/METADATA +1 -1
- {fake_bpy_module-20250909.dist-info → fake_bpy_module-20250912.dist-info}/RECORD +21 -21
- {fake_bpy_module-20250909.dist-info → fake_bpy_module-20250912.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20250909.dist-info → fake_bpy_module-20250912.dist-info}/top_level.txt +0 -0
|
@@ -1489,6 +1489,12 @@ type IconItems = typing.Literal[
|
|
|
1489
1489
|
"SEQ_SPLITVIEW", # SEQ_SPLITVIEW.
|
|
1490
1490
|
"SEQ_STRIP_DUPLICATE", # SEQ_STRIP_DUPLICATE.
|
|
1491
1491
|
"SEQ_STRIP_META", # SEQ_STRIP_META.
|
|
1492
|
+
"MOD_BRIGHTNESS_CONTRAST", # MOD_BRIGHTNESS_CONTRAST.
|
|
1493
|
+
"MOD_COLOR_BALANCE", # MOD_COLOR_BALANCE.
|
|
1494
|
+
"MOD_CURVES", # MOD_CURVES.
|
|
1495
|
+
"MOD_HUE_CORRECT", # MOD_HUE_CORRECT.
|
|
1496
|
+
"MOD_TONEMAP", # MOD_TONEMAP.
|
|
1497
|
+
"MOD_WHITE_BALANCE", # MOD_WHITE_BALANCE.
|
|
1492
1498
|
"IMAGE_ALPHA", # IMAGE_ALPHA.
|
|
1493
1499
|
"IMAGE_RGB_ALPHA", # IMAGE_RGB_ALPHA.
|
|
1494
1500
|
"IMAGE_RGB", # IMAGE_RGB.
|
|
@@ -2526,6 +2532,7 @@ type PreferenceSectionItems = typing.Literal[
|
|
|
2526
2532
|
"SYSTEM", # System.
|
|
2527
2533
|
"SAVE_LOAD", # Save & Load.
|
|
2528
2534
|
"FILE_PATHS", # File Paths.
|
|
2535
|
+
"DEVELOPER_TOOLS", # Developer Tools.
|
|
2529
2536
|
"EXPERIMENTAL", # Experimental.
|
|
2530
2537
|
]
|
|
2531
2538
|
type PropDynamicpaintTypeItems = typing.Literal[
|