fake-bpy-module 20240906__py3-none-any.whl → 20240907__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_ui/__init__.pyi +0 -1
- bl_ui/space_userpref/__init__.pyi +46 -0
- bpy/ops/node/__init__.pyi +3 -3
- bpy/types/__init__.pyi +10521 -10518
- bpy_types/__init__.pyi +0 -2
- {fake_bpy_module-20240906.dist-info → fake_bpy_module-20240907.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240906.dist-info → fake_bpy_module-20240907.dist-info}/RECORD +9 -10
- bl_ui/temp_anim_layers/__init__.pyi +0 -46
- {fake_bpy_module-20240906.dist-info → fake_bpy_module-20240907.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240906.dist-info → fake_bpy_module-20240907.dist-info}/top_level.txt +0 -0
bl_ui/__init__.pyi
CHANGED
|
@@ -80,7 +80,6 @@ from . import space_topbar as space_topbar
|
|
|
80
80
|
from . import space_userpref as space_userpref
|
|
81
81
|
from . import space_view3d as space_view3d
|
|
82
82
|
from . import space_view3d_toolbar as space_view3d_toolbar
|
|
83
|
-
from . import temp_anim_layers as temp_anim_layers
|
|
84
83
|
from . import utils as utils
|
|
85
84
|
|
|
86
85
|
GenericType1 = typing.TypeVar("GenericType1")
|
|
@@ -2589,6 +2589,52 @@ class USERPREF_PT_system_cycles_devices(CenterAlignMixIn, SystemPanel, bpy.types
|
|
|
2589
2589
|
"""
|
|
2590
2590
|
...
|
|
2591
2591
|
|
|
2592
|
+
class USERPREF_PT_system_display_graphics(
|
|
2593
|
+
CenterAlignMixIn, SystemPanel, bpy.types.Panel
|
|
2594
|
+
):
|
|
2595
|
+
"""Base class for panels to center align contents with some horizontal margin.
|
|
2596
|
+
Deriving classes need to implement a draw_centered(context, layout) function.
|
|
2597
|
+
"""
|
|
2598
|
+
|
|
2599
|
+
bl_context: typing.Any
|
|
2600
|
+
bl_label: typing.Any
|
|
2601
|
+
bl_region_type: typing.Any
|
|
2602
|
+
bl_rna: typing.Any
|
|
2603
|
+
bl_space_type: typing.Any
|
|
2604
|
+
id_data: typing.Any
|
|
2605
|
+
|
|
2606
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
2607
|
+
"""
|
|
2608
|
+
|
|
2609
|
+
:return: The RNA type or default when not found.
|
|
2610
|
+
:rtype: bpy.types.Struct
|
|
2611
|
+
"""
|
|
2612
|
+
...
|
|
2613
|
+
|
|
2614
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
2615
|
+
"""
|
|
2616
|
+
|
|
2617
|
+
:return: The class or default when not found.
|
|
2618
|
+
:rtype: typing.Any
|
|
2619
|
+
"""
|
|
2620
|
+
...
|
|
2621
|
+
|
|
2622
|
+
def draw_centered(self, context, layout):
|
|
2623
|
+
"""
|
|
2624
|
+
|
|
2625
|
+
:param context:
|
|
2626
|
+
:param layout:
|
|
2627
|
+
"""
|
|
2628
|
+
...
|
|
2629
|
+
|
|
2630
|
+
@classmethod
|
|
2631
|
+
def poll(cls, _context):
|
|
2632
|
+
"""
|
|
2633
|
+
|
|
2634
|
+
:param _context:
|
|
2635
|
+
"""
|
|
2636
|
+
...
|
|
2637
|
+
|
|
2592
2638
|
class USERPREF_PT_system_memory(CenterAlignMixIn, SystemPanel, bpy.types.Panel):
|
|
2593
2639
|
"""Base class for panels to center align contents with some horizontal margin.
|
|
2594
2640
|
Deriving classes need to implement a draw_centered(context, layout) function.
|
bpy/ops/node/__init__.pyi
CHANGED
|
@@ -340,7 +340,7 @@ def add_reroute(
|
|
|
340
340
|
undo: bool | None = None,
|
|
341
341
|
*,
|
|
342
342
|
path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath] | None = None,
|
|
343
|
-
cursor: int | None =
|
|
343
|
+
cursor: int | None = 11,
|
|
344
344
|
):
|
|
345
345
|
"""Add a reroute node
|
|
346
346
|
|
|
@@ -1199,7 +1199,7 @@ def links_cut(
|
|
|
1199
1199
|
undo: bool | None = None,
|
|
1200
1200
|
*,
|
|
1201
1201
|
path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath] | None = None,
|
|
1202
|
-
cursor: int | None =
|
|
1202
|
+
cursor: int | None = 15,
|
|
1203
1203
|
):
|
|
1204
1204
|
"""Use the mouse to cut (remove) some links
|
|
1205
1205
|
|
|
@@ -1234,7 +1234,7 @@ def links_mute(
|
|
|
1234
1234
|
undo: bool | None = None,
|
|
1235
1235
|
*,
|
|
1236
1236
|
path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath] | None = None,
|
|
1237
|
-
cursor: int | None =
|
|
1237
|
+
cursor: int | None = 38,
|
|
1238
1238
|
):
|
|
1239
1239
|
"""Use the mouse to mute links
|
|
1240
1240
|
|