fake-bpy-module 20240410__py3-none-any.whl → 20240417__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_operators/presets/__init__.pyi +7 -0
- bl_ui/node_add_menu/__init__.pyi +1 -1
- bl_ui/properties_data_lightprobe/__init__.pyi +1134 -0
- bl_ui/properties_physics_dynamicpaint/__init__.pyi +3 -0
- bl_ui/properties_physics_fluid/__init__.pyi +3 -0
- bl_ui/space_toolsystem_toolbar/__init__.pyi +17 -0
- bl_ui/space_userpref/__init__.pyi +13 -4
- bl_ui/space_view3d/__init__.pyi +371 -0
- bpy/app/translations/__init__.pyi +1 -1
- bpy/ops/curves/__init__.pyi +99 -0
- bpy/ops/export_scene/__init__.pyi +6 -3
- bpy/ops/grease_pencil/__init__.pyi +29 -0
- bpy/ops/mesh/__init__.pyi +1 -1
- bpy/ops/nla/__init__.pyi +3 -3
- bpy/ops/node/__init__.pyi +1 -1
- bpy/ops/object/__init__.pyi +8 -8
- bpy/ops/outliner/__init__.pyi +1 -1
- bpy/ops/preferences/__init__.pyi +1 -1
- bpy/ops/sculpt/__init__.pyi +8 -2
- bpy/ops/wm/__init__.pyi +4 -1
- bpy/types/__init__.pyi +272 -189
- {fake_bpy_module-20240410.dist-info → fake_bpy_module-20240417.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240410.dist-info → fake_bpy_module-20240417.dist-info}/RECORD +25 -25
- {fake_bpy_module-20240410.dist-info → fake_bpy_module-20240417.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240410.dist-info → fake_bpy_module-20240417.dist-info}/top_level.txt +0 -0
|
@@ -3143,6 +3143,13 @@ class RemovePresetInterfaceTheme(bpy_types.Operator):
|
|
|
3143
3143
|
""" """
|
|
3144
3144
|
...
|
|
3145
3145
|
|
|
3146
|
+
def post_cb(self, context):
|
|
3147
|
+
"""
|
|
3148
|
+
|
|
3149
|
+
:param context:
|
|
3150
|
+
"""
|
|
3151
|
+
...
|
|
3152
|
+
|
|
3146
3153
|
def property_overridable_library_set(self):
|
|
3147
3154
|
""" """
|
|
3148
3155
|
...
|
bl_ui/node_add_menu/__init__.pyi
CHANGED