fake-bpy-module 20240905__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.
- _bpy_internal/system_info/__init__.pyi +3 -2
- {sys_info → _bpy_internal/system_info/text_generate_runtime}/__init__.pyi +1 -1
- _bpy_internal/system_info/{runtime → url_prefill_runtime}/__init__.pyi +1 -1
- _bpy_internal/system_info/{startup → url_prefill_startup}/__init__.pyi +2 -1
- bl_ui/__init__.pyi +0 -1
- bl_ui/properties_data_armature/__init__.pyi +36 -0
- bl_ui/properties_data_curve/__init__.pyi +43 -0
- bl_ui/properties_data_curves/__init__.pyi +37 -0
- bl_ui/properties_data_gpencil/__init__.pyi +36 -0
- bl_ui/properties_data_grease_pencil/__init__.pyi +36 -0
- bl_ui/properties_data_lattice/__init__.pyi +44 -0
- bl_ui/properties_data_light/__init__.pyi +44 -0
- bl_ui/properties_data_lightprobe/__init__.pyi +34 -0
- bl_ui/properties_data_mesh/__init__.pyi +44 -0
- bl_ui/properties_data_metaball/__init__.pyi +36 -0
- bl_ui/properties_data_speaker/__init__.pyi +37 -0
- bl_ui/properties_data_volume/__init__.pyi +37 -0
- bl_ui/properties_freestyle/__init__.pyi +36 -0
- bl_ui/properties_material_gpencil/__init__.pyi +36 -0
- bl_ui/properties_object/__init__.pyi +36 -0
- bl_ui/properties_particle/__init__.pyi +37 -0
- bl_ui/properties_scene/__init__.pyi +36 -0
- bl_ui/properties_texture/__init__.pyi +51 -0
- bl_ui/properties_world/__init__.pyi +44 -0
- bl_ui/space_properties/__init__.pyi +2 -2
- bl_ui/space_userpref/__init__.pyi +46 -0
- bpy/ops/node/__init__.pyi +3 -3
- bpy/types/__init__.pyi +10658 -10509
- bpy_types/__init__.pyi +0 -2
- {fake_bpy_module-20240905.dist-info → fake_bpy_module-20240907.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240905.dist-info → fake_bpy_module-20240907.dist-info}/RECORD +34 -36
- {fake_bpy_module-20240905.dist-info → fake_bpy_module-20240907.dist-info}/top_level.txt +0 -1
- freestyle/utils/__init__.pyi +1 -1
- bl_ui/temp_anim_layers/__init__.pyi +0 -46
- sys_info/py.typed +0 -0
- {fake_bpy_module-20240905.dist-info → fake_bpy_module-20240907.dist-info}/WHEEL +0 -0
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import typing
|
|
2
2
|
import collections.abc
|
|
3
3
|
import typing_extensions
|
|
4
|
+
import bl_ui.space_properties
|
|
4
5
|
import bpy.types
|
|
5
6
|
|
|
6
7
|
GenericType1 = typing.TypeVar("GenericType1")
|
|
@@ -174,6 +175,41 @@ class VIEWLAYER_PT_freestyle(ViewLayerFreestyleButtonsPanel, bpy.types.Panel):
|
|
|
174
175
|
"""
|
|
175
176
|
...
|
|
176
177
|
|
|
178
|
+
class VIEWLAYER_PT_freestyle_animation(
|
|
179
|
+
bl_ui.space_properties.PropertiesAnimationMixin,
|
|
180
|
+
ViewLayerFreestyleButtonsPanel,
|
|
181
|
+
bpy.types.Panel,
|
|
182
|
+
):
|
|
183
|
+
"""Mix-in class for Animation panels.This class can be used to show a generic 'Animation' panel for IDs shown in
|
|
184
|
+
the properties editor. Specific ID types need specific subclasses.For an example, see DATA_PT_camera_animation in properties_data_camera.py
|
|
185
|
+
"""
|
|
186
|
+
|
|
187
|
+
COMPAT_ENGINES: typing.Any
|
|
188
|
+
bl_context: typing.Any
|
|
189
|
+
bl_label: typing.Any
|
|
190
|
+
bl_options: typing.Any
|
|
191
|
+
bl_order: typing.Any
|
|
192
|
+
bl_region_type: typing.Any
|
|
193
|
+
bl_rna: typing.Any
|
|
194
|
+
bl_space_type: typing.Any
|
|
195
|
+
id_data: typing.Any
|
|
196
|
+
|
|
197
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
198
|
+
"""
|
|
199
|
+
|
|
200
|
+
:return: The RNA type or default when not found.
|
|
201
|
+
:rtype: bpy.types.Struct
|
|
202
|
+
"""
|
|
203
|
+
...
|
|
204
|
+
|
|
205
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
206
|
+
"""
|
|
207
|
+
|
|
208
|
+
:return: The class or default when not found.
|
|
209
|
+
:rtype: typing.Any
|
|
210
|
+
"""
|
|
211
|
+
...
|
|
212
|
+
|
|
177
213
|
class VIEWLAYER_PT_freestyle_edge_detection(
|
|
178
214
|
ViewLayerFreestyleButtonsPanel, bpy.types.Panel
|
|
179
215
|
):
|
|
@@ -2,6 +2,7 @@ import typing
|
|
|
2
2
|
import collections.abc
|
|
3
3
|
import typing_extensions
|
|
4
4
|
import bl_ui.properties_grease_pencil_common
|
|
5
|
+
import bl_ui.space_properties
|
|
5
6
|
import bl_ui.utils
|
|
6
7
|
import bpy.types
|
|
7
8
|
import rna_prop_ui
|
|
@@ -94,6 +95,41 @@ class GPMaterialButtonsPanel:
|
|
|
94
95
|
"""
|
|
95
96
|
...
|
|
96
97
|
|
|
98
|
+
class MATERIAL_PT_gpencil_animation(
|
|
99
|
+
rna_prop_ui.PropertyPanel,
|
|
100
|
+
GPMaterialButtonsPanel,
|
|
101
|
+
bl_ui.space_properties.PropertiesAnimationMixin,
|
|
102
|
+
bpy.types.Panel,
|
|
103
|
+
):
|
|
104
|
+
"""Mix-in class for Animation panels.This class can be used to show a generic 'Animation' panel for IDs shown in
|
|
105
|
+
the properties editor. Specific ID types need specific subclasses.For an example, see DATA_PT_camera_animation in properties_data_camera.py
|
|
106
|
+
"""
|
|
107
|
+
|
|
108
|
+
bl_context: typing.Any
|
|
109
|
+
bl_label: typing.Any
|
|
110
|
+
bl_options: typing.Any
|
|
111
|
+
bl_order: typing.Any
|
|
112
|
+
bl_region_type: typing.Any
|
|
113
|
+
bl_rna: typing.Any
|
|
114
|
+
bl_space_type: typing.Any
|
|
115
|
+
id_data: typing.Any
|
|
116
|
+
|
|
117
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
118
|
+
"""
|
|
119
|
+
|
|
120
|
+
:return: The RNA type or default when not found.
|
|
121
|
+
:rtype: bpy.types.Struct
|
|
122
|
+
"""
|
|
123
|
+
...
|
|
124
|
+
|
|
125
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
126
|
+
"""
|
|
127
|
+
|
|
128
|
+
:return: The class or default when not found.
|
|
129
|
+
:rtype: typing.Any
|
|
130
|
+
"""
|
|
131
|
+
...
|
|
132
|
+
|
|
97
133
|
class MATERIAL_PT_gpencil_custom_props(
|
|
98
134
|
rna_prop_ui.PropertyPanel, GPMaterialButtonsPanel, bpy.types.Panel
|
|
99
135
|
):
|
|
@@ -2,6 +2,7 @@ import typing
|
|
|
2
2
|
import collections.abc
|
|
3
3
|
import typing_extensions
|
|
4
4
|
import bl_ui.properties_animviz
|
|
5
|
+
import bl_ui.space_properties
|
|
5
6
|
import bpy.types
|
|
6
7
|
import rna_prop_ui
|
|
7
8
|
|
|
@@ -36,6 +37,41 @@ class COLLECTION_MT_context_menu(bpy.types.Menu):
|
|
|
36
37
|
"""
|
|
37
38
|
...
|
|
38
39
|
|
|
40
|
+
class OBJECT_PT_animation(
|
|
41
|
+
rna_prop_ui.PropertyPanel,
|
|
42
|
+
ObjectButtonsPanel,
|
|
43
|
+
bl_ui.space_properties.PropertiesAnimationMixin,
|
|
44
|
+
bpy.types.Panel,
|
|
45
|
+
):
|
|
46
|
+
"""Mix-in class for Animation panels.This class can be used to show a generic 'Animation' panel for IDs shown in
|
|
47
|
+
the properties editor. Specific ID types need specific subclasses.For an example, see DATA_PT_camera_animation in properties_data_camera.py
|
|
48
|
+
"""
|
|
49
|
+
|
|
50
|
+
bl_context: typing.Any
|
|
51
|
+
bl_label: typing.Any
|
|
52
|
+
bl_options: typing.Any
|
|
53
|
+
bl_order: typing.Any
|
|
54
|
+
bl_region_type: typing.Any
|
|
55
|
+
bl_rna: typing.Any
|
|
56
|
+
bl_space_type: typing.Any
|
|
57
|
+
id_data: typing.Any
|
|
58
|
+
|
|
59
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
60
|
+
"""
|
|
61
|
+
|
|
62
|
+
:return: The RNA type or default when not found.
|
|
63
|
+
:rtype: bpy.types.Struct
|
|
64
|
+
"""
|
|
65
|
+
...
|
|
66
|
+
|
|
67
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
68
|
+
"""
|
|
69
|
+
|
|
70
|
+
:return: The class or default when not found.
|
|
71
|
+
:rtype: typing.Any
|
|
72
|
+
"""
|
|
73
|
+
...
|
|
74
|
+
|
|
39
75
|
class OBJECT_PT_collections(ObjectButtonsPanel, bpy.types.Panel):
|
|
40
76
|
bl_context: typing.Any
|
|
41
77
|
bl_label: typing.Any
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import typing
|
|
2
2
|
import collections.abc
|
|
3
3
|
import typing_extensions
|
|
4
|
+
import bl_ui.space_properties
|
|
4
5
|
import bl_ui.utils
|
|
5
6
|
import bpy.types
|
|
6
7
|
import rna_prop_ui
|
|
@@ -37,6 +38,42 @@ class PARTICLE_MT_context_menu(bpy.types.Menu):
|
|
|
37
38
|
"""
|
|
38
39
|
...
|
|
39
40
|
|
|
41
|
+
class PARTICLE_PT_animation(
|
|
42
|
+
rna_prop_ui.PropertyPanel,
|
|
43
|
+
ParticleButtonsPanel,
|
|
44
|
+
bl_ui.space_properties.PropertiesAnimationMixin,
|
|
45
|
+
bpy.types.Panel,
|
|
46
|
+
):
|
|
47
|
+
"""Mix-in class for Animation panels.This class can be used to show a generic 'Animation' panel for IDs shown in
|
|
48
|
+
the properties editor. Specific ID types need specific subclasses.For an example, see DATA_PT_camera_animation in properties_data_camera.py
|
|
49
|
+
"""
|
|
50
|
+
|
|
51
|
+
COMPAT_ENGINES: typing.Any
|
|
52
|
+
bl_context: typing.Any
|
|
53
|
+
bl_label: typing.Any
|
|
54
|
+
bl_options: typing.Any
|
|
55
|
+
bl_order: typing.Any
|
|
56
|
+
bl_region_type: typing.Any
|
|
57
|
+
bl_rna: typing.Any
|
|
58
|
+
bl_space_type: typing.Any
|
|
59
|
+
id_data: typing.Any
|
|
60
|
+
|
|
61
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
62
|
+
"""
|
|
63
|
+
|
|
64
|
+
:return: The RNA type or default when not found.
|
|
65
|
+
:rtype: bpy.types.Struct
|
|
66
|
+
"""
|
|
67
|
+
...
|
|
68
|
+
|
|
69
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
70
|
+
"""
|
|
71
|
+
|
|
72
|
+
:return: The class or default when not found.
|
|
73
|
+
:rtype: typing.Any
|
|
74
|
+
"""
|
|
75
|
+
...
|
|
76
|
+
|
|
40
77
|
class PARTICLE_PT_boidbrain(ParticleButtonsPanel, bpy.types.Panel):
|
|
41
78
|
COMPAT_ENGINES: typing.Any
|
|
42
79
|
bl_context: typing.Any
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import typing
|
|
2
2
|
import collections.abc
|
|
3
3
|
import typing_extensions
|
|
4
|
+
import bl_ui.space_properties
|
|
4
5
|
import bpy.types
|
|
5
6
|
import rna_prop_ui
|
|
6
7
|
|
|
@@ -12,6 +13,41 @@ class SceneButtonsPanel:
|
|
|
12
13
|
bl_region_type: typing.Any
|
|
13
14
|
bl_space_type: typing.Any
|
|
14
15
|
|
|
16
|
+
class SCENE_PT_animation(
|
|
17
|
+
rna_prop_ui.PropertyPanel,
|
|
18
|
+
SceneButtonsPanel,
|
|
19
|
+
bl_ui.space_properties.PropertiesAnimationMixin,
|
|
20
|
+
bpy.types.Panel,
|
|
21
|
+
):
|
|
22
|
+
"""Mix-in class for Animation panels.This class can be used to show a generic 'Animation' panel for IDs shown in
|
|
23
|
+
the properties editor. Specific ID types need specific subclasses.For an example, see DATA_PT_camera_animation in properties_data_camera.py
|
|
24
|
+
"""
|
|
25
|
+
|
|
26
|
+
bl_context: typing.Any
|
|
27
|
+
bl_label: typing.Any
|
|
28
|
+
bl_options: typing.Any
|
|
29
|
+
bl_order: typing.Any
|
|
30
|
+
bl_region_type: typing.Any
|
|
31
|
+
bl_rna: typing.Any
|
|
32
|
+
bl_space_type: typing.Any
|
|
33
|
+
id_data: typing.Any
|
|
34
|
+
|
|
35
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
36
|
+
"""
|
|
37
|
+
|
|
38
|
+
:return: The RNA type or default when not found.
|
|
39
|
+
:rtype: bpy.types.Struct
|
|
40
|
+
"""
|
|
41
|
+
...
|
|
42
|
+
|
|
43
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
44
|
+
"""
|
|
45
|
+
|
|
46
|
+
:return: The class or default when not found.
|
|
47
|
+
:rtype: typing.Any
|
|
48
|
+
"""
|
|
49
|
+
...
|
|
50
|
+
|
|
15
51
|
class SCENE_PT_audio(SceneButtonsPanel, bpy.types.Panel):
|
|
16
52
|
bl_context: typing.Any
|
|
17
53
|
bl_label: typing.Any
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import typing
|
|
2
2
|
import collections.abc
|
|
3
3
|
import typing_extensions
|
|
4
|
+
import bl_ui.space_properties
|
|
4
5
|
import bpy.types
|
|
5
6
|
import rna_prop_ui
|
|
6
7
|
|
|
@@ -36,6 +37,56 @@ class TEXTURE_MT_context_menu(bpy.types.Menu):
|
|
|
36
37
|
"""
|
|
37
38
|
...
|
|
38
39
|
|
|
40
|
+
class TEXTURE_PT_animation(
|
|
41
|
+
rna_prop_ui.PropertyPanel,
|
|
42
|
+
TextureButtonsPanel,
|
|
43
|
+
bl_ui.space_properties.PropertiesAnimationMixin,
|
|
44
|
+
bpy.types.Panel,
|
|
45
|
+
):
|
|
46
|
+
"""Mix-in class for Animation panels.This class can be used to show a generic 'Animation' panel for IDs shown in
|
|
47
|
+
the properties editor. Specific ID types need specific subclasses.For an example, see DATA_PT_camera_animation in properties_data_camera.py
|
|
48
|
+
"""
|
|
49
|
+
|
|
50
|
+
bl_context: typing.Any
|
|
51
|
+
bl_label: typing.Any
|
|
52
|
+
bl_options: typing.Any
|
|
53
|
+
bl_order: typing.Any
|
|
54
|
+
bl_region_type: typing.Any
|
|
55
|
+
bl_rna: typing.Any
|
|
56
|
+
bl_space_type: typing.Any
|
|
57
|
+
id_data: typing.Any
|
|
58
|
+
|
|
59
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
60
|
+
"""
|
|
61
|
+
|
|
62
|
+
:return: The RNA type or default when not found.
|
|
63
|
+
:rtype: bpy.types.Struct
|
|
64
|
+
"""
|
|
65
|
+
...
|
|
66
|
+
|
|
67
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
68
|
+
"""
|
|
69
|
+
|
|
70
|
+
:return: The class or default when not found.
|
|
71
|
+
:rtype: typing.Any
|
|
72
|
+
"""
|
|
73
|
+
...
|
|
74
|
+
|
|
75
|
+
def draw(self, context):
|
|
76
|
+
"""
|
|
77
|
+
|
|
78
|
+
:param context:
|
|
79
|
+
"""
|
|
80
|
+
...
|
|
81
|
+
|
|
82
|
+
@classmethod
|
|
83
|
+
def poll(cls, context):
|
|
84
|
+
"""
|
|
85
|
+
|
|
86
|
+
:param context:
|
|
87
|
+
"""
|
|
88
|
+
...
|
|
89
|
+
|
|
39
90
|
class TEXTURE_PT_blend(TextureTypePanel, bpy.types.Panel):
|
|
40
91
|
COMPAT_ENGINES: typing.Any
|
|
41
92
|
bl_context: typing.Any
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import typing
|
|
2
2
|
import collections.abc
|
|
3
3
|
import typing_extensions
|
|
4
|
+
import bl_ui.space_properties
|
|
4
5
|
import bpy.types
|
|
5
6
|
import rna_prop_ui
|
|
6
7
|
|
|
@@ -278,6 +279,49 @@ class EEVEE_WORLD_PT_volume(WorldButtonsPanel, bpy.types.Panel):
|
|
|
278
279
|
"""
|
|
279
280
|
...
|
|
280
281
|
|
|
282
|
+
class WORLD_PT_animation(
|
|
283
|
+
rna_prop_ui.PropertyPanel,
|
|
284
|
+
WorldButtonsPanel,
|
|
285
|
+
bl_ui.space_properties.PropertiesAnimationMixin,
|
|
286
|
+
bpy.types.Panel,
|
|
287
|
+
):
|
|
288
|
+
"""Mix-in class for Animation panels.This class can be used to show a generic 'Animation' panel for IDs shown in
|
|
289
|
+
the properties editor. Specific ID types need specific subclasses.For an example, see DATA_PT_camera_animation in properties_data_camera.py
|
|
290
|
+
"""
|
|
291
|
+
|
|
292
|
+
COMPAT_ENGINES: typing.Any
|
|
293
|
+
bl_context: typing.Any
|
|
294
|
+
bl_label: typing.Any
|
|
295
|
+
bl_options: typing.Any
|
|
296
|
+
bl_order: typing.Any
|
|
297
|
+
bl_region_type: typing.Any
|
|
298
|
+
bl_rna: typing.Any
|
|
299
|
+
bl_space_type: typing.Any
|
|
300
|
+
id_data: typing.Any
|
|
301
|
+
|
|
302
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
303
|
+
"""
|
|
304
|
+
|
|
305
|
+
:return: The RNA type or default when not found.
|
|
306
|
+
:rtype: bpy.types.Struct
|
|
307
|
+
"""
|
|
308
|
+
...
|
|
309
|
+
|
|
310
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
311
|
+
"""
|
|
312
|
+
|
|
313
|
+
:return: The class or default when not found.
|
|
314
|
+
:rtype: typing.Any
|
|
315
|
+
"""
|
|
316
|
+
...
|
|
317
|
+
|
|
318
|
+
def draw(self, context):
|
|
319
|
+
"""
|
|
320
|
+
|
|
321
|
+
:param context:
|
|
322
|
+
"""
|
|
323
|
+
...
|
|
324
|
+
|
|
281
325
|
class WORLD_PT_context_world(WorldButtonsPanel, bpy.types.Panel):
|
|
282
326
|
COMPAT_ENGINES: typing.Any
|
|
283
327
|
bl_context: typing.Any
|
|
@@ -116,8 +116,8 @@ class PropertiesAnimationMixin:
|
|
|
116
116
|
"""
|
|
117
117
|
...
|
|
118
118
|
|
|
119
|
-
@
|
|
120
|
-
def draw_action_and_slot_selector(context, layout, animated_id):
|
|
119
|
+
@classmethod
|
|
120
|
+
def draw_action_and_slot_selector(cls, context, layout, animated_id):
|
|
121
121
|
"""
|
|
122
122
|
|
|
123
123
|
:param context:
|
|
@@ -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
|
|