fake-bpy-module 20250902__py3-none-any.whl → 20250903__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/node/__init__.pyi +2 -2
- bl_ui/generic_ui_list/__init__.pyi +2 -2
- bl_ui/space_dopesheet/__init__.pyi +0 -24
- bl_ui/space_graph/__init__.pyi +0 -22
- bl_ui/space_nla/__init__.pyi +0 -22
- bl_ui/space_node/__init__.pyi +31 -0
- bl_ui/space_sequencer/__init__.pyi +0 -24
- bl_ui/space_time/__init__.pyi +34 -0
- bl_ui/utils/__init__.pyi +0 -17
- bmesh/types/__init__.pyi +6 -7
- bpy/ops/node/__init__.pyi +2 -2
- bpy/props/__init__.pyi +237 -16
- bpy/stub_internal/rna_enums/__init__.pyi +2 -0
- bpy/types/__init__.pyi +11 -15
- {fake_bpy_module-20250902.dist-info → fake_bpy_module-20250903.dist-info}/METADATA +1 -1
- {fake_bpy_module-20250902.dist-info → fake_bpy_module-20250903.dist-info}/RECORD +20 -20
- freestyle/utils/__init__.pyi +1 -1
- mathutils/bvhtree/__init__.pyi +2 -3
- {fake_bpy_module-20250902.dist-info → fake_bpy_module-20250903.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20250902.dist-info → fake_bpy_module-20250903.dist-info}/top_level.txt +0 -0
bl_operators/node/__init__.pyi
CHANGED
|
@@ -469,7 +469,7 @@ class NODE_OT_tree_path_parent(_bpy_types.Operator):
|
|
|
469
469
|
"""
|
|
470
470
|
|
|
471
471
|
class NODE_OT_viewer_shortcut_get(_bpy_types.Operator):
|
|
472
|
-
"""Activate a specific
|
|
472
|
+
"""Activate a specific viewer node using 1,2,..,9 keys"""
|
|
473
473
|
|
|
474
474
|
bl_idname: typing.Any
|
|
475
475
|
bl_label: typing.Any
|
|
@@ -505,7 +505,7 @@ class NODE_OT_viewer_shortcut_get(_bpy_types.Operator):
|
|
|
505
505
|
"""
|
|
506
506
|
|
|
507
507
|
class NODE_OT_viewer_shortcut_set(_bpy_types.Operator):
|
|
508
|
-
"""Create a
|
|
508
|
+
"""Create a viewer shortcut for the selected node by pressing ctrl+1,2,..9"""
|
|
509
509
|
|
|
510
510
|
bl_idname: typing.Any
|
|
511
511
|
bl_label: typing.Any
|
|
@@ -120,7 +120,7 @@ class UILIST_OT_entry_remove(GenericUIListOperator, _bpy_types.Operator):
|
|
|
120
120
|
|
|
121
121
|
def draw_ui_list(
|
|
122
122
|
layout: bpy.types.UILayout,
|
|
123
|
-
context:
|
|
123
|
+
context: bpy.types.Context,
|
|
124
124
|
class_name: str = "UI_UL_list",
|
|
125
125
|
*,
|
|
126
126
|
unique_id: str,
|
|
@@ -136,7 +136,7 @@ def draw_ui_list(
|
|
|
136
136
|
:param layout: UILayout to draw the list in.
|
|
137
137
|
:type layout: bpy.types.UILayout
|
|
138
138
|
:param context: Blender context to get the list data from.
|
|
139
|
-
:type context:
|
|
139
|
+
:type context: bpy.types.Context
|
|
140
140
|
:param class_name: Name of the UIList class to draw. The default is the UIList class that ships with Blender.
|
|
141
141
|
:type class_name: str
|
|
142
142
|
:param unique_id: Unique identifier to differentiate this from other UI lists.
|
|
@@ -4,7 +4,6 @@ import typing_extensions
|
|
|
4
4
|
import numpy.typing as npt
|
|
5
5
|
import _bpy_types
|
|
6
6
|
import bl_ui.properties_data_grease_pencil
|
|
7
|
-
import bl_ui.utils
|
|
8
7
|
import bpy.types
|
|
9
8
|
import rna_prop_ui
|
|
10
9
|
|
|
@@ -747,29 +746,6 @@ class DOPESHEET_PT_grease_pencil_mode(
|
|
|
747
746
|
:param context:
|
|
748
747
|
"""
|
|
749
748
|
|
|
750
|
-
class DOPESHEET_PT_playhead_snapping(
|
|
751
|
-
bl_ui.utils.PlayheadSnappingPanel, _bpy_types.Panel
|
|
752
|
-
):
|
|
753
|
-
bl_label: typing.Any
|
|
754
|
-
bl_region_type: typing.Any
|
|
755
|
-
bl_rna: typing.Any
|
|
756
|
-
bl_space_type: typing.Any
|
|
757
|
-
id_data: typing.Any
|
|
758
|
-
|
|
759
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
760
|
-
"""
|
|
761
|
-
|
|
762
|
-
:return: The RNA type or default when not found.
|
|
763
|
-
:rtype: bpy.types.Struct
|
|
764
|
-
"""
|
|
765
|
-
|
|
766
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
767
|
-
"""
|
|
768
|
-
|
|
769
|
-
:return: The class or default when not found.
|
|
770
|
-
:rtype: typing.Any
|
|
771
|
-
"""
|
|
772
|
-
|
|
773
749
|
class DOPESHEET_PT_proportional_edit(_bpy_types.Panel):
|
|
774
750
|
bl_label: typing.Any
|
|
775
751
|
bl_region_type: typing.Any
|
bl_ui/space_graph/__init__.pyi
CHANGED
|
@@ -4,7 +4,6 @@ import typing_extensions
|
|
|
4
4
|
import numpy.typing as npt
|
|
5
5
|
import _bpy_types
|
|
6
6
|
import bl_ui.space_dopesheet
|
|
7
|
-
import bl_ui.utils
|
|
8
7
|
import bpy.types
|
|
9
8
|
|
|
10
9
|
class GRAPH_HT_header(_bpy_types.Header):
|
|
@@ -517,27 +516,6 @@ class GRAPH_PT_filters(
|
|
|
517
516
|
:param context:
|
|
518
517
|
"""
|
|
519
518
|
|
|
520
|
-
class GRAPH_PT_playhead_snapping(bl_ui.utils.PlayheadSnappingPanel, _bpy_types.Panel):
|
|
521
|
-
bl_label: typing.Any
|
|
522
|
-
bl_region_type: typing.Any
|
|
523
|
-
bl_rna: typing.Any
|
|
524
|
-
bl_space_type: typing.Any
|
|
525
|
-
id_data: typing.Any
|
|
526
|
-
|
|
527
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
528
|
-
"""
|
|
529
|
-
|
|
530
|
-
:return: The RNA type or default when not found.
|
|
531
|
-
:rtype: bpy.types.Struct
|
|
532
|
-
"""
|
|
533
|
-
|
|
534
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
535
|
-
"""
|
|
536
|
-
|
|
537
|
-
:return: The class or default when not found.
|
|
538
|
-
:rtype: typing.Any
|
|
539
|
-
"""
|
|
540
|
-
|
|
541
519
|
class GRAPH_PT_proportional_edit(_bpy_types.Panel):
|
|
542
520
|
bl_label: typing.Any
|
|
543
521
|
bl_region_type: typing.Any
|
bl_ui/space_nla/__init__.pyi
CHANGED
|
@@ -4,7 +4,6 @@ import typing_extensions
|
|
|
4
4
|
import numpy.typing as npt
|
|
5
5
|
import _bpy_types
|
|
6
6
|
import bl_ui.space_dopesheet
|
|
7
|
-
import bl_ui.utils
|
|
8
7
|
import bpy.types
|
|
9
8
|
|
|
10
9
|
class NLA_HT_header(_bpy_types.Header):
|
|
@@ -451,27 +450,6 @@ class NLA_PT_filters(
|
|
|
451
450
|
:param context:
|
|
452
451
|
"""
|
|
453
452
|
|
|
454
|
-
class NLA_PT_playhead_snapping(bl_ui.utils.PlayheadSnappingPanel, _bpy_types.Panel):
|
|
455
|
-
bl_label: typing.Any
|
|
456
|
-
bl_region_type: typing.Any
|
|
457
|
-
bl_rna: typing.Any
|
|
458
|
-
bl_space_type: typing.Any
|
|
459
|
-
id_data: typing.Any
|
|
460
|
-
|
|
461
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
462
|
-
"""
|
|
463
|
-
|
|
464
|
-
:return: The RNA type or default when not found.
|
|
465
|
-
:rtype: bpy.types.Struct
|
|
466
|
-
"""
|
|
467
|
-
|
|
468
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
469
|
-
"""
|
|
470
|
-
|
|
471
|
-
:return: The class or default when not found.
|
|
472
|
-
:rtype: typing.Any
|
|
473
|
-
"""
|
|
474
|
-
|
|
475
453
|
class NLA_PT_snapping(_bpy_types.Panel):
|
|
476
454
|
bl_label: typing.Any
|
|
477
455
|
bl_region_type: typing.Any
|
bl_ui/space_node/__init__.pyi
CHANGED
|
@@ -7,6 +7,7 @@ import bl_ui.properties_grease_pencil_common
|
|
|
7
7
|
import bl_ui.space_toolsystem_common
|
|
8
8
|
import bl_ui.utils
|
|
9
9
|
import bpy.types
|
|
10
|
+
import rna_prop_ui
|
|
10
11
|
|
|
11
12
|
class NODE_AST_compositor(_bpy_types.AssetShelf):
|
|
12
13
|
bl_region_type: typing.Any
|
|
@@ -395,6 +396,36 @@ class NODE_PT_active_node_color(_bpy_types.Panel):
|
|
|
395
396
|
:param context:
|
|
396
397
|
"""
|
|
397
398
|
|
|
399
|
+
class NODE_PT_active_node_custom_properties(
|
|
400
|
+
rna_prop_ui.PropertyPanel, _bpy_types.Panel
|
|
401
|
+
):
|
|
402
|
+
"""The subclass should have its own poll function
|
|
403
|
+
and the variable _context_path MUST be set.
|
|
404
|
+
"""
|
|
405
|
+
|
|
406
|
+
bl_category: typing.Any
|
|
407
|
+
bl_label: typing.Any
|
|
408
|
+
bl_options: typing.Any
|
|
409
|
+
bl_order: typing.Any
|
|
410
|
+
bl_region_type: typing.Any
|
|
411
|
+
bl_rna: typing.Any
|
|
412
|
+
bl_space_type: typing.Any
|
|
413
|
+
id_data: typing.Any
|
|
414
|
+
|
|
415
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
416
|
+
"""
|
|
417
|
+
|
|
418
|
+
:return: The RNA type or default when not found.
|
|
419
|
+
:rtype: bpy.types.Struct
|
|
420
|
+
"""
|
|
421
|
+
|
|
422
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
423
|
+
"""
|
|
424
|
+
|
|
425
|
+
:return: The class or default when not found.
|
|
426
|
+
:rtype: typing.Any
|
|
427
|
+
"""
|
|
428
|
+
|
|
398
429
|
class NODE_PT_active_node_generic(_bpy_types.Panel):
|
|
399
430
|
bl_category: typing.Any
|
|
400
431
|
bl_label: typing.Any
|
|
@@ -5,7 +5,6 @@ import numpy.typing as npt
|
|
|
5
5
|
import _bpy_types
|
|
6
6
|
import bl_ui.properties_grease_pencil_common
|
|
7
7
|
import bl_ui.space_toolsystem_common
|
|
8
|
-
import bl_ui.utils
|
|
9
8
|
import bpy.types
|
|
10
9
|
import rna_prop_ui
|
|
11
10
|
|
|
@@ -1978,29 +1977,6 @@ class SEQUENCER_PT_overlay(_bpy_types.Panel):
|
|
|
1978
1977
|
:param _context:
|
|
1979
1978
|
"""
|
|
1980
1979
|
|
|
1981
|
-
class SEQUENCER_PT_playhead_snapping(
|
|
1982
|
-
bl_ui.utils.PlayheadSnappingPanel, _bpy_types.Panel
|
|
1983
|
-
):
|
|
1984
|
-
bl_label: typing.Any
|
|
1985
|
-
bl_region_type: typing.Any
|
|
1986
|
-
bl_rna: typing.Any
|
|
1987
|
-
bl_space_type: typing.Any
|
|
1988
|
-
id_data: typing.Any
|
|
1989
|
-
|
|
1990
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
1991
|
-
"""
|
|
1992
|
-
|
|
1993
|
-
:return: The RNA type or default when not found.
|
|
1994
|
-
:rtype: bpy.types.Struct
|
|
1995
|
-
"""
|
|
1996
|
-
|
|
1997
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1998
|
-
"""
|
|
1999
|
-
|
|
2000
|
-
:return: The class or default when not found.
|
|
2001
|
-
:rtype: typing.Any
|
|
2002
|
-
"""
|
|
2003
|
-
|
|
2004
1980
|
class SEQUENCER_PT_preview(SequencerButtonsPanel_Output, _bpy_types.Panel):
|
|
2005
1981
|
bl_category: typing.Any
|
|
2006
1982
|
bl_label: typing.Any
|
bl_ui/space_time/__init__.pyi
CHANGED
|
@@ -166,6 +166,40 @@ class TIME_PT_playback(TimelinePanelButtons, _bpy_types.Panel):
|
|
|
166
166
|
:param context:
|
|
167
167
|
"""
|
|
168
168
|
|
|
169
|
+
class TIME_PT_playhead_snapping(_bpy_types.Panel):
|
|
170
|
+
bl_label: typing.Any
|
|
171
|
+
bl_region_type: typing.Any
|
|
172
|
+
bl_rna: typing.Any
|
|
173
|
+
bl_space_type: typing.Any
|
|
174
|
+
id_data: typing.Any
|
|
175
|
+
|
|
176
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
177
|
+
"""
|
|
178
|
+
|
|
179
|
+
:return: The RNA type or default when not found.
|
|
180
|
+
:rtype: bpy.types.Struct
|
|
181
|
+
"""
|
|
182
|
+
|
|
183
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
184
|
+
"""
|
|
185
|
+
|
|
186
|
+
:return: The class or default when not found.
|
|
187
|
+
:rtype: typing.Any
|
|
188
|
+
"""
|
|
189
|
+
|
|
190
|
+
def draw(self, context) -> None:
|
|
191
|
+
"""
|
|
192
|
+
|
|
193
|
+
:param context:
|
|
194
|
+
"""
|
|
195
|
+
|
|
196
|
+
@classmethod
|
|
197
|
+
def poll(cls, context) -> None:
|
|
198
|
+
"""
|
|
199
|
+
|
|
200
|
+
:param context:
|
|
201
|
+
"""
|
|
202
|
+
|
|
169
203
|
class TimelinePanelButtons:
|
|
170
204
|
bl_region_type: typing.Any
|
|
171
205
|
bl_space_type: typing.Any
|
bl_ui/utils/__init__.pyi
CHANGED
|
@@ -3,23 +3,6 @@ import collections.abc
|
|
|
3
3
|
import typing_extensions
|
|
4
4
|
import numpy.typing as npt
|
|
5
5
|
|
|
6
|
-
class PlayheadSnappingPanel:
|
|
7
|
-
bl_label: typing.Any
|
|
8
|
-
bl_region_type: typing.Any
|
|
9
|
-
|
|
10
|
-
def draw(self, context) -> None:
|
|
11
|
-
"""
|
|
12
|
-
|
|
13
|
-
:param context:
|
|
14
|
-
"""
|
|
15
|
-
|
|
16
|
-
@classmethod
|
|
17
|
-
def poll(cls, context) -> None:
|
|
18
|
-
"""
|
|
19
|
-
|
|
20
|
-
:param context:
|
|
21
|
-
"""
|
|
22
|
-
|
|
23
6
|
class PresetPanel:
|
|
24
7
|
bl_label: typing.Any
|
|
25
8
|
bl_region_type: typing.Any
|
bmesh/types/__init__.pyi
CHANGED
|
@@ -23,7 +23,6 @@ import typing
|
|
|
23
23
|
import collections.abc
|
|
24
24
|
import typing_extensions
|
|
25
25
|
import numpy.typing as npt
|
|
26
|
-
import _bpy_types
|
|
27
26
|
import bpy.types
|
|
28
27
|
import mathutils
|
|
29
28
|
|
|
@@ -1616,7 +1615,7 @@ class BMesh:
|
|
|
1616
1615
|
|
|
1617
1616
|
def from_mesh(
|
|
1618
1617
|
self,
|
|
1619
|
-
mesh:
|
|
1618
|
+
mesh: bpy.types.Mesh,
|
|
1620
1619
|
*,
|
|
1621
1620
|
face_normals: bool = True,
|
|
1622
1621
|
vertex_normals: bool = True,
|
|
@@ -1626,7 +1625,7 @@ class BMesh:
|
|
|
1626
1625
|
"""Initialize this bmesh from existing mesh data-block.
|
|
1627
1626
|
|
|
1628
1627
|
:param mesh: The mesh data to load.
|
|
1629
|
-
:type mesh:
|
|
1628
|
+
:type mesh: bpy.types.Mesh
|
|
1630
1629
|
:param face_normals:
|
|
1631
1630
|
:type face_normals: bool
|
|
1632
1631
|
:param vertex_normals:
|
|
@@ -1639,7 +1638,7 @@ class BMesh:
|
|
|
1639
1638
|
|
|
1640
1639
|
def from_object(
|
|
1641
1640
|
self,
|
|
1642
|
-
object:
|
|
1641
|
+
object: bpy.types.Object,
|
|
1643
1642
|
depsgraph: bpy.types.Depsgraph,
|
|
1644
1643
|
*,
|
|
1645
1644
|
cage: bool = False,
|
|
@@ -1649,7 +1648,7 @@ class BMesh:
|
|
|
1649
1648
|
"""Initialize this bmesh from existing object data-block (only meshes are currently supported).
|
|
1650
1649
|
|
|
1651
1650
|
:param object: The object data to load.
|
|
1652
|
-
:type object:
|
|
1651
|
+
:type object: bpy.types.Object
|
|
1653
1652
|
:param depsgraph:
|
|
1654
1653
|
:type depsgraph: bpy.types.Depsgraph
|
|
1655
1654
|
:param cage: Get the mesh as a deformed cage.
|
|
@@ -1673,11 +1672,11 @@ class BMesh:
|
|
|
1673
1672
|
def select_flush_mode(self) -> None:
|
|
1674
1673
|
"""flush selection based on the current mode current `BMesh.select_mode`."""
|
|
1675
1674
|
|
|
1676
|
-
def to_mesh(self, mesh:
|
|
1675
|
+
def to_mesh(self, mesh: bpy.types.Mesh) -> None:
|
|
1677
1676
|
"""Writes this BMesh data into an existing Mesh data-block.
|
|
1678
1677
|
|
|
1679
1678
|
:param mesh: The mesh data to write into.
|
|
1680
|
-
:type mesh:
|
|
1679
|
+
:type mesh: bpy.types.Mesh
|
|
1681
1680
|
"""
|
|
1682
1681
|
|
|
1683
1682
|
def transform(
|
bpy/ops/node/__init__.pyi
CHANGED
|
@@ -2311,7 +2311,7 @@ def viewer_shortcut_get(
|
|
|
2311
2311
|
*,
|
|
2312
2312
|
viewer_index: int | None = 0,
|
|
2313
2313
|
) -> None:
|
|
2314
|
-
"""Activate a specific
|
|
2314
|
+
"""Activate a specific viewer node using 1,2,..,9 keys
|
|
2315
2315
|
|
|
2316
2316
|
:type execution_context: int | str | None
|
|
2317
2317
|
:type undo: bool | None
|
|
@@ -2326,7 +2326,7 @@ def viewer_shortcut_set(
|
|
|
2326
2326
|
*,
|
|
2327
2327
|
viewer_index: int | None = 0,
|
|
2328
2328
|
) -> None:
|
|
2329
|
-
"""Create a
|
|
2329
|
+
"""Create a viewer shortcut for the selected node by pressing ctrl+1,2,..9
|
|
2330
2330
|
|
|
2331
2331
|
:type execution_context: int | str | None
|
|
2332
2332
|
:type undo: bool | None
|
bpy/props/__init__.pyi
CHANGED
|
@@ -116,6 +116,12 @@ def BoolProperty(
|
|
|
116
116
|
| None = None,
|
|
117
117
|
get: collections.abc.Callable[[bpy.types.bpy_struct], bool] | None = None,
|
|
118
118
|
set: collections.abc.Callable[[bpy.types.bpy_struct, bool], None] | None = None,
|
|
119
|
+
get_transform: collections.abc.Callable[[bpy.types.bpy_struct, bool, bool], bool]
|
|
120
|
+
| None = None,
|
|
121
|
+
set_transform: collections.abc.Callable[
|
|
122
|
+
[bpy.types.bpy_struct, bool, bool, bool], bool
|
|
123
|
+
]
|
|
124
|
+
| None = None,
|
|
119
125
|
) -> None:
|
|
120
126
|
"""Returns a new boolean property definition.
|
|
121
127
|
|
|
@@ -136,12 +142,35 @@ def BoolProperty(
|
|
|
136
142
|
This function must take 2 values (self, context) and return None.
|
|
137
143
|
Warning there are no safety checks to avoid infinite recursion.
|
|
138
144
|
:type update: collections.abc.Callable[[bpy.types.bpy_struct, bpy.types.Context], None] | None
|
|
139
|
-
:param get: Function to be called when this value is read,
|
|
145
|
+
:param get: Function to be called when this value is read, and the default,
|
|
146
|
+
system-defined storage is not used for this property.
|
|
140
147
|
This function must take 1 value (self) and return the value of the property.
|
|
148
|
+
|
|
149
|
+
Defining this callback without a matching set one will make the property read-only (even if READ_ONLY option is not set).
|
|
141
150
|
:type get: collections.abc.Callable[[bpy.types.bpy_struct], bool] | None
|
|
142
|
-
:param set: Function to be called when this value is written,
|
|
151
|
+
:param set: Function to be called when this value is written, and the default,
|
|
152
|
+
system-defined storage is not used for this property.
|
|
143
153
|
This function must take 2 values (self, value) and return None.
|
|
154
|
+
|
|
155
|
+
Defining this callback without a matching get one is invalid.
|
|
144
156
|
:type set: collections.abc.Callable[[bpy.types.bpy_struct, bool], None] | None
|
|
157
|
+
:param get_transform: Function to be called when this value is read,
|
|
158
|
+
if some additional processing must be performed on the stored value.
|
|
159
|
+
This function must take three arguments (self, the stored value,
|
|
160
|
+
and a boolean indicating if the property is currently set),
|
|
161
|
+
and return the final, transformed value of the property.
|
|
162
|
+
|
|
163
|
+
The callback is responsible to ensure that value limits of the property (min/max, length...) are respected. Otherwise a ValueError exception is raised.
|
|
164
|
+
:type get_transform: collections.abc.Callable[[bpy.types.bpy_struct, bool, bool], bool] | None
|
|
165
|
+
:param set_transform: Function to be called when this value is written,
|
|
166
|
+
if some additional processing must be performed on the given value before storing it.
|
|
167
|
+
This function must take four arguments (self, the given value to store,
|
|
168
|
+
the currently stored value (raw value, without any get_transform applied to it),
|
|
169
|
+
and a boolean indicating if the property is currently set),
|
|
170
|
+
and return the final, transformed value of the property.
|
|
171
|
+
|
|
172
|
+
The callback is responsible to ensure that value limits (min/max, length...) are respected. Otherwise a ValueError exception is raised.
|
|
173
|
+
:type set_transform: collections.abc.Callable[[bpy.types.bpy_struct, bool, bool, bool], bool] | None
|
|
145
174
|
"""
|
|
146
175
|
|
|
147
176
|
def BoolVectorProperty(
|
|
@@ -163,6 +192,21 @@ def BoolVectorProperty(
|
|
|
163
192
|
| None = None,
|
|
164
193
|
set: collections.abc.Callable[[bpy.types.bpy_struct, tuple[bool, ...]], None]
|
|
165
194
|
| None = None,
|
|
195
|
+
get_transform: collections.abc.Callable[
|
|
196
|
+
[bpy.types.bpy_struct, collections.abc.Sequence[bool], bool],
|
|
197
|
+
collections.abc.Sequence[bool],
|
|
198
|
+
]
|
|
199
|
+
| None = None,
|
|
200
|
+
set_transform: collections.abc.Callable[
|
|
201
|
+
[
|
|
202
|
+
bpy.types.bpy_struct,
|
|
203
|
+
collections.abc.Sequence[bool],
|
|
204
|
+
collections.abc.Sequence[bool],
|
|
205
|
+
bool,
|
|
206
|
+
],
|
|
207
|
+
collections.abc.Sequence[bool],
|
|
208
|
+
]
|
|
209
|
+
| None = None,
|
|
166
210
|
) -> None:
|
|
167
211
|
"""Returns a new vector boolean property definition.
|
|
168
212
|
|
|
@@ -187,12 +231,35 @@ def BoolVectorProperty(
|
|
|
187
231
|
This function must take 2 values (self, context) and return None.
|
|
188
232
|
Warning there are no safety checks to avoid infinite recursion.
|
|
189
233
|
:type update: collections.abc.Callable[[bpy.types.bpy_struct, bpy.types.Context], None] | None
|
|
190
|
-
:param get: Function to be called when this value is read,
|
|
234
|
+
:param get: Function to be called when this value is read, and the default,
|
|
235
|
+
system-defined storage is not used for this property.
|
|
191
236
|
This function must take 1 value (self) and return the value of the property.
|
|
237
|
+
|
|
238
|
+
Defining this callback without a matching set one will make the property read-only (even if READ_ONLY option is not set).
|
|
192
239
|
:type get: collections.abc.Callable[[bpy.types.bpy_struct], collections.abc.Sequence[bool]] | None
|
|
193
|
-
:param set: Function to be called when this value is written,
|
|
240
|
+
:param set: Function to be called when this value is written, and the default,
|
|
241
|
+
system-defined storage is not used for this property.
|
|
194
242
|
This function must take 2 values (self, value) and return None.
|
|
243
|
+
|
|
244
|
+
Defining this callback without a matching get one is invalid.
|
|
195
245
|
:type set: collections.abc.Callable[[bpy.types.bpy_struct, tuple[bool, ...]], None] | None
|
|
246
|
+
:param get_transform: Function to be called when this value is read,
|
|
247
|
+
if some additional processing must be performed on the stored value.
|
|
248
|
+
This function must take three arguments (self, the stored value,
|
|
249
|
+
and a boolean indicating if the property is currently set),
|
|
250
|
+
and return the final, transformed value of the property.
|
|
251
|
+
|
|
252
|
+
The callback is responsible to ensure that value limits of the property (min/max, length...) are respected. Otherwise a ValueError exception is raised.
|
|
253
|
+
:type get_transform: collections.abc.Callable[[bpy.types.bpy_struct, collections.abc.Sequence[bool], bool], collections.abc.Sequence[bool]] | None
|
|
254
|
+
:param set_transform: Function to be called when this value is written,
|
|
255
|
+
if some additional processing must be performed on the given value before storing it.
|
|
256
|
+
This function must take four arguments (self, the given value to store,
|
|
257
|
+
the currently stored value (raw value, without any get_transform applied to it),
|
|
258
|
+
and a boolean indicating if the property is currently set),
|
|
259
|
+
and return the final, transformed value of the property.
|
|
260
|
+
|
|
261
|
+
The callback is responsible to ensure that value limits (min/max, length...) are respected. Otherwise a ValueError exception is raised.
|
|
262
|
+
:type set_transform: collections.abc.Callable[[bpy.types.bpy_struct, collections.abc.Sequence[bool], collections.abc.Sequence[bool], bool], collections.abc.Sequence[bool]] | None
|
|
196
263
|
"""
|
|
197
264
|
|
|
198
265
|
def CollectionProperty(
|
|
@@ -252,6 +319,10 @@ def EnumProperty(
|
|
|
252
319
|
| None = None,
|
|
253
320
|
get: collections.abc.Callable[[bpy.types.bpy_struct], int] | None = None,
|
|
254
321
|
set: collections.abc.Callable[[bpy.types.bpy_struct, int], None] | None = None,
|
|
322
|
+
get_transform: collections.abc.Callable[[bpy.types.bpy_struct, int, bool], int]
|
|
323
|
+
| None = None,
|
|
324
|
+
set_transform: collections.abc.Callable[[bpy.types.bpy_struct, int, int, bool], int]
|
|
325
|
+
| None = None,
|
|
255
326
|
) -> None:
|
|
256
327
|
"""Returns a new enumerator property definition.
|
|
257
328
|
|
|
@@ -317,12 +388,35 @@ def EnumProperty(
|
|
|
317
388
|
This function must take 2 values (self, context) and return None.
|
|
318
389
|
Warning there are no safety checks to avoid infinite recursion.
|
|
319
390
|
:type update: collections.abc.Callable[[bpy.types.bpy_struct, bpy.types.Context], None] | None
|
|
320
|
-
:param get: Function to be called when this value is read,
|
|
391
|
+
:param get: Function to be called when this value is read, and the default,
|
|
392
|
+
system-defined storage is not used for this property.
|
|
321
393
|
This function must take 1 value (self) and return the value of the property.
|
|
394
|
+
|
|
395
|
+
Defining this callback without a matching set one will make the property read-only (even if READ_ONLY option is not set).
|
|
322
396
|
:type get: collections.abc.Callable[[bpy.types.bpy_struct], int] | None
|
|
323
|
-
:param set: Function to be called when this value is written,
|
|
397
|
+
:param set: Function to be called when this value is written, and the default,
|
|
398
|
+
system-defined storage is not used for this property.
|
|
324
399
|
This function must take 2 values (self, value) and return None.
|
|
400
|
+
|
|
401
|
+
Defining this callback without a matching get one is invalid.
|
|
325
402
|
:type set: collections.abc.Callable[[bpy.types.bpy_struct, int], None] | None
|
|
403
|
+
:param get_transform: Function to be called when this value is read,
|
|
404
|
+
if some additional processing must be performed on the stored value.
|
|
405
|
+
This function must take three arguments (self, the stored value,
|
|
406
|
+
and a boolean indicating if the property is currently set),
|
|
407
|
+
and return the final, transformed value of the property.
|
|
408
|
+
|
|
409
|
+
The callback is responsible to ensure that value limits of the property (min/max, length...) are respected. Otherwise a ValueError exception is raised.
|
|
410
|
+
:type get_transform: collections.abc.Callable[[bpy.types.bpy_struct, int, bool], int] | None
|
|
411
|
+
:param set_transform: Function to be called when this value is written,
|
|
412
|
+
if some additional processing must be performed on the given value before storing it.
|
|
413
|
+
This function must take four arguments (self, the given value to store,
|
|
414
|
+
the currently stored value (raw value, without any get_transform applied to it),
|
|
415
|
+
and a boolean indicating if the property is currently set),
|
|
416
|
+
and return the final, transformed value of the property.
|
|
417
|
+
|
|
418
|
+
The callback is responsible to ensure that value limits (min/max, length...) are respected. Otherwise a ValueError exception is raised.
|
|
419
|
+
:type set_transform: collections.abc.Callable[[bpy.types.bpy_struct, int, int, bool], int] | None
|
|
326
420
|
"""
|
|
327
421
|
|
|
328
422
|
def FloatProperty(
|
|
@@ -346,6 +440,12 @@ def FloatProperty(
|
|
|
346
440
|
| None = None,
|
|
347
441
|
get: collections.abc.Callable[[bpy.types.bpy_struct], float] | None = None,
|
|
348
442
|
set: collections.abc.Callable[[bpy.types.bpy_struct, float], None] | None = None,
|
|
443
|
+
get_transform: collections.abc.Callable[[bpy.types.bpy_struct, float, bool], float]
|
|
444
|
+
| None = None,
|
|
445
|
+
set_transform: collections.abc.Callable[
|
|
446
|
+
[bpy.types.bpy_struct, float, float, bool], float
|
|
447
|
+
]
|
|
448
|
+
| None = None,
|
|
349
449
|
) -> None:
|
|
350
450
|
"""Returns a new float (single precision) property definition.
|
|
351
451
|
|
|
@@ -380,12 +480,35 @@ def FloatProperty(
|
|
|
380
480
|
This function must take 2 values (self, context) and return None.
|
|
381
481
|
Warning there are no safety checks to avoid infinite recursion.
|
|
382
482
|
:type update: collections.abc.Callable[[bpy.types.bpy_struct, bpy.types.Context], None] | None
|
|
383
|
-
:param get: Function to be called when this value is read,
|
|
483
|
+
:param get: Function to be called when this value is read, and the default,
|
|
484
|
+
system-defined storage is not used for this property.
|
|
384
485
|
This function must take 1 value (self) and return the value of the property.
|
|
486
|
+
|
|
487
|
+
Defining this callback without a matching set one will make the property read-only (even if READ_ONLY option is not set).
|
|
385
488
|
:type get: collections.abc.Callable[[bpy.types.bpy_struct], float] | None
|
|
386
|
-
:param set: Function to be called when this value is written,
|
|
489
|
+
:param set: Function to be called when this value is written, and the default,
|
|
490
|
+
system-defined storage is not used for this property.
|
|
387
491
|
This function must take 2 values (self, value) and return None.
|
|
492
|
+
|
|
493
|
+
Defining this callback without a matching get one is invalid.
|
|
388
494
|
:type set: collections.abc.Callable[[bpy.types.bpy_struct, float], None] | None
|
|
495
|
+
:param get_transform: Function to be called when this value is read,
|
|
496
|
+
if some additional processing must be performed on the stored value.
|
|
497
|
+
This function must take three arguments (self, the stored value,
|
|
498
|
+
and a boolean indicating if the property is currently set),
|
|
499
|
+
and return the final, transformed value of the property.
|
|
500
|
+
|
|
501
|
+
The callback is responsible to ensure that value limits of the property (min/max, length...) are respected. Otherwise a ValueError exception is raised.
|
|
502
|
+
:type get_transform: collections.abc.Callable[[bpy.types.bpy_struct, float, bool], float] | None
|
|
503
|
+
:param set_transform: Function to be called when this value is written,
|
|
504
|
+
if some additional processing must be performed on the given value before storing it.
|
|
505
|
+
This function must take four arguments (self, the given value to store,
|
|
506
|
+
the currently stored value (raw value, without any get_transform applied to it),
|
|
507
|
+
and a boolean indicating if the property is currently set),
|
|
508
|
+
and return the final, transformed value of the property.
|
|
509
|
+
|
|
510
|
+
The callback is responsible to ensure that value limits (min/max, length...) are respected. Otherwise a ValueError exception is raised.
|
|
511
|
+
:type set_transform: collections.abc.Callable[[bpy.types.bpy_struct, float, float, bool], float] | None
|
|
389
512
|
"""
|
|
390
513
|
|
|
391
514
|
def FloatVectorProperty(
|
|
@@ -452,11 +575,17 @@ def FloatVectorProperty(
|
|
|
452
575
|
This function must take 2 values (self, context) and return None.
|
|
453
576
|
Warning there are no safety checks to avoid infinite recursion.
|
|
454
577
|
:type update: collections.abc.Callable[[bpy.types.bpy_struct, bpy.types.Context], None] | None
|
|
455
|
-
:param get: Function to be called when this value is read,
|
|
578
|
+
:param get: Function to be called when this value is read, and the default,
|
|
579
|
+
system-defined storage is not used for this property.
|
|
456
580
|
This function must take 1 value (self) and return the value of the property.
|
|
581
|
+
|
|
582
|
+
Defining this callback without a matching set one will make the property read-only (even if READ_ONLY option is not set).
|
|
457
583
|
:type get: collections.abc.Callable[[bpy.types.bpy_struct], collections.abc.Sequence[float]] | None
|
|
458
|
-
:param set: Function to be called when this value is written,
|
|
584
|
+
:param set: Function to be called when this value is written, and the default,
|
|
585
|
+
system-defined storage is not used for this property.
|
|
459
586
|
This function must take 2 values (self, value) and return None.
|
|
587
|
+
|
|
588
|
+
Defining this callback without a matching get one is invalid.
|
|
460
589
|
:type set: collections.abc.Callable[[bpy.types.bpy_struct, tuple[float, ...]], None] | None
|
|
461
590
|
"""
|
|
462
591
|
|
|
@@ -479,6 +608,10 @@ def IntProperty(
|
|
|
479
608
|
| None = None,
|
|
480
609
|
get: collections.abc.Callable[[bpy.types.bpy_struct], int] | None = None,
|
|
481
610
|
set: collections.abc.Callable[[bpy.types.bpy_struct, int], None] | None = None,
|
|
611
|
+
get_transform: collections.abc.Callable[[bpy.types.bpy_struct, int, bool], int]
|
|
612
|
+
| None = None,
|
|
613
|
+
set_transform: collections.abc.Callable[[bpy.types.bpy_struct, int, int, bool], int]
|
|
614
|
+
| None = None,
|
|
482
615
|
) -> None:
|
|
483
616
|
"""Returns a new int property definition.
|
|
484
617
|
|
|
@@ -509,12 +642,35 @@ def IntProperty(
|
|
|
509
642
|
This function must take 2 values (self, context) and return None.
|
|
510
643
|
Warning there are no safety checks to avoid infinite recursion.
|
|
511
644
|
:type update: collections.abc.Callable[[bpy.types.bpy_struct, bpy.types.Context], None] | None
|
|
512
|
-
:param get: Function to be called when this value is read,
|
|
645
|
+
:param get: Function to be called when this value is read, and the default,
|
|
646
|
+
system-defined storage is not used for this property.
|
|
513
647
|
This function must take 1 value (self) and return the value of the property.
|
|
648
|
+
|
|
649
|
+
Defining this callback without a matching set one will make the property read-only (even if READ_ONLY option is not set).
|
|
514
650
|
:type get: collections.abc.Callable[[bpy.types.bpy_struct], int] | None
|
|
515
|
-
:param set: Function to be called when this value is written,
|
|
651
|
+
:param set: Function to be called when this value is written, and the default,
|
|
652
|
+
system-defined storage is not used for this property.
|
|
516
653
|
This function must take 2 values (self, value) and return None.
|
|
654
|
+
|
|
655
|
+
Defining this callback without a matching get one is invalid.
|
|
517
656
|
:type set: collections.abc.Callable[[bpy.types.bpy_struct, int], None] | None
|
|
657
|
+
:param get_transform: Function to be called when this value is read,
|
|
658
|
+
if some additional processing must be performed on the stored value.
|
|
659
|
+
This function must take three arguments (self, the stored value,
|
|
660
|
+
and a boolean indicating if the property is currently set),
|
|
661
|
+
and return the final, transformed value of the property.
|
|
662
|
+
|
|
663
|
+
The callback is responsible to ensure that value limits of the property (min/max, length...) are respected. Otherwise a ValueError exception is raised.
|
|
664
|
+
:type get_transform: collections.abc.Callable[[bpy.types.bpy_struct, int, bool], int] | None
|
|
665
|
+
:param set_transform: Function to be called when this value is written,
|
|
666
|
+
if some additional processing must be performed on the given value before storing it.
|
|
667
|
+
This function must take four arguments (self, the given value to store,
|
|
668
|
+
the currently stored value (raw value, without any get_transform applied to it),
|
|
669
|
+
and a boolean indicating if the property is currently set),
|
|
670
|
+
and return the final, transformed value of the property.
|
|
671
|
+
|
|
672
|
+
The callback is responsible to ensure that value limits (min/max, length...) are respected. Otherwise a ValueError exception is raised.
|
|
673
|
+
:type set_transform: collections.abc.Callable[[bpy.types.bpy_struct, int, int, bool], int] | None
|
|
518
674
|
"""
|
|
519
675
|
|
|
520
676
|
def IntVectorProperty(
|
|
@@ -539,6 +695,21 @@ def IntVectorProperty(
|
|
|
539
695
|
| None = None,
|
|
540
696
|
set: collections.abc.Callable[[bpy.types.bpy_struct, tuple[int, ...]], None]
|
|
541
697
|
| None = None,
|
|
698
|
+
get_transform: collections.abc.Callable[
|
|
699
|
+
[bpy.types.bpy_struct, collections.abc.Sequence[int], bool],
|
|
700
|
+
collections.abc.Sequence[int],
|
|
701
|
+
]
|
|
702
|
+
| None = None,
|
|
703
|
+
set_transform: collections.abc.Callable[
|
|
704
|
+
[
|
|
705
|
+
bpy.types.bpy_struct,
|
|
706
|
+
collections.abc.Sequence[int],
|
|
707
|
+
collections.abc.Sequence[int],
|
|
708
|
+
bool,
|
|
709
|
+
],
|
|
710
|
+
collections.abc.Sequence[int],
|
|
711
|
+
]
|
|
712
|
+
| None = None,
|
|
542
713
|
) -> None:
|
|
543
714
|
"""Returns a new vector int property definition.
|
|
544
715
|
|
|
@@ -573,12 +744,35 @@ def IntVectorProperty(
|
|
|
573
744
|
This function must take 2 values (self, context) and return None.
|
|
574
745
|
Warning there are no safety checks to avoid infinite recursion.
|
|
575
746
|
:type update: collections.abc.Callable[[bpy.types.bpy_struct, bpy.types.Context], None] | None
|
|
576
|
-
:param get: Function to be called when this value is read,
|
|
747
|
+
:param get: Function to be called when this value is read, and the default,
|
|
748
|
+
system-defined storage is not used for this property.
|
|
577
749
|
This function must take 1 value (self) and return the value of the property.
|
|
750
|
+
|
|
751
|
+
Defining this callback without a matching set one will make the property read-only (even if READ_ONLY option is not set).
|
|
578
752
|
:type get: collections.abc.Callable[[bpy.types.bpy_struct], collections.abc.Sequence[int]] | None
|
|
579
|
-
:param set: Function to be called when this value is written,
|
|
753
|
+
:param set: Function to be called when this value is written, and the default,
|
|
754
|
+
system-defined storage is not used for this property.
|
|
580
755
|
This function must take 2 values (self, value) and return None.
|
|
756
|
+
|
|
757
|
+
Defining this callback without a matching get one is invalid.
|
|
581
758
|
:type set: collections.abc.Callable[[bpy.types.bpy_struct, tuple[int, ...]], None] | None
|
|
759
|
+
:param get_transform: Function to be called when this value is read,
|
|
760
|
+
if some additional processing must be performed on the stored value.
|
|
761
|
+
This function must take three arguments (self, the stored value,
|
|
762
|
+
and a boolean indicating if the property is currently set),
|
|
763
|
+
and return the final, transformed value of the property.
|
|
764
|
+
|
|
765
|
+
The callback is responsible to ensure that value limits of the property (min/max, length...) are respected. Otherwise a ValueError exception is raised.
|
|
766
|
+
:type get_transform: collections.abc.Callable[[bpy.types.bpy_struct, collections.abc.Sequence[int], bool], collections.abc.Sequence[int]] | None
|
|
767
|
+
:param set_transform: Function to be called when this value is written,
|
|
768
|
+
if some additional processing must be performed on the given value before storing it.
|
|
769
|
+
This function must take four arguments (self, the given value to store,
|
|
770
|
+
the currently stored value (raw value, without any get_transform applied to it),
|
|
771
|
+
and a boolean indicating if the property is currently set),
|
|
772
|
+
and return the final, transformed value of the property.
|
|
773
|
+
|
|
774
|
+
The callback is responsible to ensure that value limits (min/max, length...) are respected. Otherwise a ValueError exception is raised.
|
|
775
|
+
:type set_transform: collections.abc.Callable[[bpy.types.bpy_struct, collections.abc.Sequence[int], collections.abc.Sequence[int], bool], collections.abc.Sequence[int]] | None
|
|
582
776
|
"""
|
|
583
777
|
|
|
584
778
|
def PointerProperty(
|
|
@@ -645,6 +839,10 @@ def StringProperty(
|
|
|
645
839
|
| None = None,
|
|
646
840
|
get: collections.abc.Callable[[bpy.types.bpy_struct], str] | None = None,
|
|
647
841
|
set: collections.abc.Callable[[bpy.types.bpy_struct, str], None] | None = None,
|
|
842
|
+
get_transform: collections.abc.Callable[[bpy.types.bpy_struct, str, bool], str]
|
|
843
|
+
| None = None,
|
|
844
|
+
set_transform: collections.abc.Callable[[bpy.types.bpy_struct, str, str, bool], str]
|
|
845
|
+
| None = None,
|
|
648
846
|
search: collections.abc.Callable[
|
|
649
847
|
[bpy.types.bpy_struct, bpy.types.Context, str],
|
|
650
848
|
collections.abc.Iterable[str | tuple[str, str]],
|
|
@@ -675,12 +873,35 @@ def StringProperty(
|
|
|
675
873
|
This function must take 2 values (self, context) and return None.
|
|
676
874
|
Warning there are no safety checks to avoid infinite recursion.
|
|
677
875
|
:type update: collections.abc.Callable[[bpy.types.bpy_struct, bpy.types.Context], None] | None
|
|
678
|
-
:param get: Function to be called when this value is read,
|
|
876
|
+
:param get: Function to be called when this value is read, and the default,
|
|
877
|
+
system-defined storage is not used for this property.
|
|
679
878
|
This function must take 1 value (self) and return the value of the property.
|
|
879
|
+
|
|
880
|
+
Defining this callback without a matching set one will make the property read-only (even if READ_ONLY option is not set).
|
|
680
881
|
:type get: collections.abc.Callable[[bpy.types.bpy_struct], str] | None
|
|
681
|
-
:param set: Function to be called when this value is written,
|
|
882
|
+
:param set: Function to be called when this value is written, and the default,
|
|
883
|
+
system-defined storage is not used for this property.
|
|
682
884
|
This function must take 2 values (self, value) and return None.
|
|
885
|
+
|
|
886
|
+
Defining this callback without a matching get one is invalid.
|
|
683
887
|
:type set: collections.abc.Callable[[bpy.types.bpy_struct, str], None] | None
|
|
888
|
+
:param get_transform: Function to be called when this value is read,
|
|
889
|
+
if some additional processing must be performed on the stored value.
|
|
890
|
+
This function must take three arguments (self, the stored value,
|
|
891
|
+
and a boolean indicating if the property is currently set),
|
|
892
|
+
and return the final, transformed value of the property.
|
|
893
|
+
|
|
894
|
+
The callback is responsible to ensure that value limits of the property (min/max, length...) are respected. Otherwise a ValueError exception is raised.
|
|
895
|
+
:type get_transform: collections.abc.Callable[[bpy.types.bpy_struct, str, bool], str] | None
|
|
896
|
+
:param set_transform: Function to be called when this value is written,
|
|
897
|
+
if some additional processing must be performed on the given value before storing it.
|
|
898
|
+
This function must take four arguments (self, the given value to store,
|
|
899
|
+
the currently stored value (raw value, without any get_transform applied to it),
|
|
900
|
+
and a boolean indicating if the property is currently set),
|
|
901
|
+
and return the final, transformed value of the property.
|
|
902
|
+
|
|
903
|
+
The callback is responsible to ensure that value limits (min/max, length...) are respected. Otherwise a ValueError exception is raised.
|
|
904
|
+
:type set_transform: collections.abc.Callable[[bpy.types.bpy_struct, str, str, bool], str] | None
|
|
684
905
|
:param search: Function to be called to show candidates for this string (shown in the UI).
|
|
685
906
|
This function must take 3 values (self, context, edit_text)
|
|
686
907
|
and return a sequence, iterator or generator where each item must be:
|
|
@@ -2533,6 +2533,7 @@ type PropDynamicpaintTypeItems = typing.Literal[
|
|
|
2533
2533
|
"BRUSH", # Brush.
|
|
2534
2534
|
]
|
|
2535
2535
|
type PropertyFlagEnumItems = typing.Literal[
|
|
2536
|
+
"READ_ONLY", # Read Only.When set, the property cannot be edited.
|
|
2536
2537
|
"HIDDEN", # Hidden.For operators: hide from places in the user interface where Blender would add the property automatically, like Adjust Last Operation. Also this property is not written to presets..
|
|
2537
2538
|
"SKIP_SAVE", # Skip Save.For operators: the value of this property will not be remembered between invocations of the operator; instead, each invocation will start by using the default value. Also this property is not written to presets..
|
|
2538
2539
|
"ANIMATABLE", # Animatable.
|
|
@@ -2540,6 +2541,7 @@ type PropertyFlagEnumItems = typing.Literal[
|
|
|
2540
2541
|
"ENUM_FLAG", # Enum Flag.
|
|
2541
2542
|
]
|
|
2542
2543
|
type PropertyFlagItems = typing.Literal[
|
|
2544
|
+
"READ_ONLY", # Read Only.When set, the property cannot be edited.
|
|
2543
2545
|
"HIDDEN", # Hidden.For operators: hide from places in the user interface where Blender would add the property automatically, like Adjust Last Operation. Also this property is not written to presets..
|
|
2544
2546
|
"SKIP_SAVE", # Skip Save.For operators: the value of this property will not be remembered between invocations of the operator; instead, each invocation will start by using the default value. Also this property is not written to presets..
|
|
2545
2547
|
"SKIP_PRESET", # Skip Preset.Do not write in presets.
|
bpy/types/__init__.pyi
CHANGED
|
@@ -122983,14 +122983,14 @@ class StripModifiers(bpy_prop_collection[StripModifier], bpy_struct):
|
|
|
122983
122983
|
"""
|
|
122984
122984
|
|
|
122985
122985
|
def remove(self, modifier: StripModifier) -> None:
|
|
122986
|
-
"""Remove an existing modifier from the
|
|
122986
|
+
"""Remove an existing modifier from the strip
|
|
122987
122987
|
|
|
122988
122988
|
:param modifier: Modifier to remove
|
|
122989
122989
|
:type modifier: StripModifier
|
|
122990
122990
|
"""
|
|
122991
122991
|
|
|
122992
122992
|
def clear(self) -> None:
|
|
122993
|
-
"""Remove all modifiers from the
|
|
122993
|
+
"""Remove all modifiers from the strip"""
|
|
122994
122994
|
|
|
122995
122995
|
@classmethod
|
|
122996
122996
|
def bl_rna_get_subclass(
|
|
@@ -191483,7 +191483,7 @@ class MaskStrip(Strip, bpy_struct):
|
|
|
191483
191483
|
"""
|
|
191484
191484
|
|
|
191485
191485
|
mask: Mask | None
|
|
191486
|
-
""" Mask that this
|
|
191486
|
+
""" Mask that this strip uses
|
|
191487
191487
|
|
|
191488
191488
|
:type: Mask | None
|
|
191489
191489
|
"""
|
|
@@ -195243,7 +195243,7 @@ class MovieClipStrip(Strip, bpy_struct):
|
|
|
195243
195243
|
"""
|
|
195244
195244
|
|
|
195245
195245
|
clip: MovieClip | None
|
|
195246
|
-
""" Movie clip that this
|
|
195246
|
+
""" Movie clip that this strip uses
|
|
195247
195247
|
|
|
195248
195248
|
:type: MovieClip | None
|
|
195249
195249
|
"""
|
|
@@ -223101,7 +223101,7 @@ class SceneStrip(Strip, bpy_struct):
|
|
|
223101
223101
|
"""
|
|
223102
223102
|
|
|
223103
223103
|
scene: Scene | None
|
|
223104
|
-
""" Scene that this
|
|
223104
|
+
""" Scene that this strip uses
|
|
223105
223105
|
|
|
223106
223106
|
:type: Scene | None
|
|
223107
223107
|
"""
|
|
@@ -234034,7 +234034,7 @@ class SoundStrip(Strip, bpy_struct):
|
|
|
234034
234034
|
"""
|
|
234035
234035
|
|
|
234036
234036
|
sound: Sound | None
|
|
234037
|
-
""" Sound data-block used by this
|
|
234037
|
+
""" Sound data-block used by this strip
|
|
234038
234038
|
|
|
234039
234039
|
:type: Sound | None
|
|
234040
234040
|
"""
|
|
@@ -238270,7 +238270,7 @@ class SpeedControlStrip(EffectStrip, Strip, bpy_struct):
|
|
|
238270
238270
|
"""
|
|
238271
238271
|
|
|
238272
238272
|
speed_factor: float
|
|
238273
|
-
""" Multiply the current speed of the
|
|
238273
|
+
""" Multiply the current speed of the strip with this number or remap current frame to this frame
|
|
238274
238274
|
|
|
238275
238275
|
:type: float
|
|
238276
238276
|
"""
|
|
@@ -261461,8 +261461,6 @@ DOPESHEET_PT_grease_pencil_layer_transform: bl_ui.space_dopesheet.DOPESHEET_PT_g
|
|
|
261461
261461
|
|
|
261462
261462
|
DOPESHEET_PT_grease_pencil_mode: bl_ui.space_dopesheet.DOPESHEET_PT_grease_pencil_mode
|
|
261463
261463
|
|
|
261464
|
-
DOPESHEET_PT_playhead_snapping: bl_ui.space_dopesheet.DOPESHEET_PT_playhead_snapping
|
|
261465
|
-
|
|
261466
261464
|
DOPESHEET_PT_proportional_edit: bl_ui.space_dopesheet.DOPESHEET_PT_proportional_edit
|
|
261467
261465
|
|
|
261468
261466
|
DOPESHEET_PT_snapping: bl_ui.space_dopesheet.DOPESHEET_PT_snapping
|
|
@@ -261585,8 +261583,6 @@ GRAPH_PT_driver_snapping: bl_ui.space_graph.GRAPH_PT_driver_snapping
|
|
|
261585
261583
|
|
|
261586
261584
|
GRAPH_PT_filters: bl_ui.space_graph.GRAPH_PT_filters
|
|
261587
261585
|
|
|
261588
|
-
GRAPH_PT_playhead_snapping: bl_ui.space_graph.GRAPH_PT_playhead_snapping
|
|
261589
|
-
|
|
261590
261586
|
GRAPH_PT_proportional_edit: bl_ui.space_graph.GRAPH_PT_proportional_edit
|
|
261591
261587
|
|
|
261592
261588
|
GRAPH_PT_snapping: bl_ui.space_graph.GRAPH_PT_snapping
|
|
@@ -261885,8 +261881,6 @@ NLA_PT_action: bl_ui.space_nla.NLA_PT_action
|
|
|
261885
261881
|
|
|
261886
261882
|
NLA_PT_filters: bl_ui.space_nla.NLA_PT_filters
|
|
261887
261883
|
|
|
261888
|
-
NLA_PT_playhead_snapping: bl_ui.space_nla.NLA_PT_playhead_snapping
|
|
261889
|
-
|
|
261890
261884
|
NLA_PT_snapping: bl_ui.space_nla.NLA_PT_snapping
|
|
261891
261885
|
|
|
261892
261886
|
NODE_AST_compositor: bl_ui.space_node.NODE_AST_compositor
|
|
@@ -262141,6 +262135,8 @@ NODE_OT_viewer_shortcut_set: bl_operators.node.NODE_OT_viewer_shortcut_set
|
|
|
262141
262135
|
|
|
262142
262136
|
NODE_PT_active_node_color: bl_ui.space_node.NODE_PT_active_node_color
|
|
262143
262137
|
|
|
262138
|
+
NODE_PT_active_node_custom_properties: bl_ui.space_node.NODE_PT_active_node_custom_properties
|
|
262139
|
+
|
|
262144
262140
|
NODE_PT_active_node_generic: bl_ui.space_node.NODE_PT_active_node_generic
|
|
262145
262141
|
|
|
262146
262142
|
NODE_PT_active_node_properties: bl_ui.space_node.NODE_PT_active_node_properties
|
|
@@ -263071,8 +263067,6 @@ SEQUENCER_PT_movie_clip: bl_ui.space_sequencer.SEQUENCER_PT_movie_clip
|
|
|
263071
263067
|
|
|
263072
263068
|
SEQUENCER_PT_overlay: bl_ui.space_sequencer.SEQUENCER_PT_overlay
|
|
263073
263069
|
|
|
263074
|
-
SEQUENCER_PT_playhead_snapping: bl_ui.space_sequencer.SEQUENCER_PT_playhead_snapping
|
|
263075
|
-
|
|
263076
263070
|
SEQUENCER_PT_preview: bl_ui.space_sequencer.SEQUENCER_PT_preview
|
|
263077
263071
|
|
|
263078
263072
|
SEQUENCER_PT_preview_overlay: bl_ui.space_sequencer.SEQUENCER_PT_preview_overlay
|
|
@@ -263223,6 +263217,8 @@ TIME_PT_keyframing_settings: bl_ui.space_time.TIME_PT_keyframing_settings
|
|
|
263223
263217
|
|
|
263224
263218
|
TIME_PT_playback: bl_ui.space_time.TIME_PT_playback
|
|
263225
263219
|
|
|
263220
|
+
TIME_PT_playhead_snapping: bl_ui.space_time.TIME_PT_playhead_snapping
|
|
263221
|
+
|
|
263226
263222
|
TOPBAR_HT_upper_bar: bl_ui.space_topbar.TOPBAR_HT_upper_bar
|
|
263227
263223
|
|
|
263228
263224
|
TOPBAR_MT_blender: bl_ui.space_topbar.TOPBAR_MT_blender
|
|
@@ -75,7 +75,7 @@ bl_operators/grease_pencil/__init__.pyi,sha256=ppgkc4ZatqPEHJNhjKbEy1sBzJg9zo0sb
|
|
|
75
75
|
bl_operators/image/__init__.pyi,sha256=p_Pc5Za8ZGt_7ApR-NiQA94kOBvBdR8uqKiFKZgGMIk,3542
|
|
76
76
|
bl_operators/image_as_planes/__init__.pyi,sha256=G_h1gkxx6INE8lUl7M0MR9luywsJUraY6T39rVehEio,4804
|
|
77
77
|
bl_operators/mesh/__init__.pyi,sha256=LOcnRM3n2V8BeJa49XYer6b71eInogViGk2ohLQuOqw,2516
|
|
78
|
-
bl_operators/node/__init__.pyi,sha256=
|
|
78
|
+
bl_operators/node/__init__.pyi,sha256=YMxYh5k42rr0QXTPvfcOZ-dov5uZUMwhCkR00fz8vSQ,13711
|
|
79
79
|
bl_operators/node_editor/__init__.pyi,sha256=nXKuGcFgA7viFPwVoXogOT1iClUnXhtrK_rZTTXJ2Go,136
|
|
80
80
|
bl_operators/node_editor/node_functions/__init__.pyi,sha256=lvnouyugGqmyzgLR8aRsLj823dK3wC22vEu8lucNhJI,626
|
|
81
81
|
bl_operators/object/__init__.pyi,sha256=WL-2d1wfdQWpEW5HLAoydXAZ-hTS1XNuCvvBbBZkeL0,11823
|
|
@@ -108,7 +108,7 @@ bl_ui/__init__.pyi,sha256=bzjd8FHTafNzS5V6jK2sf7aIflWXIIAAOj2u3CG5Q8s,7004
|
|
|
108
108
|
bl_ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
109
109
|
bl_ui/anim/__init__.pyi,sha256=aUUQB5sqG7wizgoB77tVmFLfhOWMyuHcEUY06w1FW5k,938
|
|
110
110
|
bl_ui/asset_shelf/__init__.pyi,sha256=zy0z1qh-gQXQufHFrEggbXWlihKF9l2OihuhN-iS4NE,825
|
|
111
|
-
bl_ui/generic_ui_list/__init__.pyi,sha256=
|
|
111
|
+
bl_ui/generic_ui_list/__init__.pyi,sha256=S-2mXV_eFY1UGkO3gL3V1PIoCuNrSCgH572PiLDF8Bg,4301
|
|
112
112
|
bl_ui/node_add_menu/__init__.pyi,sha256=lPXeqXuLmc_dFV2GWoxfbqY3DNpetsqkI1f3i7lHY-k,1812
|
|
113
113
|
bl_ui/node_add_menu_compositor/__init__.pyi,sha256=Hn5-YC2cCeK7hHi5QgR6OKzyxdHl8S3EiDJpqB4mMQo,10559
|
|
114
114
|
bl_ui/node_add_menu_geometry/__init__.pyi,sha256=fuv_3IdbsrXx4uXgrJLM9lIVEIhNVlDnEXWe5tYbbYg,33084
|
|
@@ -160,27 +160,27 @@ bl_ui/properties_workspace/__init__.pyi,sha256=xUC1dYR6Eep5MbB1_-UTa77u4DE2bSH5s
|
|
|
160
160
|
bl_ui/properties_world/__init__.pyi,sha256=CY-sQhTOWWkq1NOgQ9jYRn4V4GLKveXVQu4T92f8sRY,9341
|
|
161
161
|
bl_ui/space_clip/__init__.pyi,sha256=y5bb9k6jgD_VHS020AKAOs_IL6sqNPCbqr0NAaUGYKo,47031
|
|
162
162
|
bl_ui/space_console/__init__.pyi,sha256=b7zy0mFsO542Mtd_KyFh-NjG_YFb__4-bW_C9vlB-8g,3372
|
|
163
|
-
bl_ui/space_dopesheet/__init__.pyi,sha256=
|
|
163
|
+
bl_ui/space_dopesheet/__init__.pyi,sha256=5x17A8fHhT78tmDcBRM5Zlh3bXs8Do1Ur_2m-xYjHxs,19512
|
|
164
164
|
bl_ui/space_filebrowser/__init__.pyi,sha256=JwXlj3tu-WKX6IpHHa4dEitmPamqeu2LR_pbcpTJsPo,20637
|
|
165
|
-
bl_ui/space_graph/__init__.pyi,sha256=
|
|
165
|
+
bl_ui/space_graph/__init__.pyi,sha256=TIljcrouLfS7ICU4fUZaRP5ybcUfd81xiOONIRGbyzE,12449
|
|
166
166
|
bl_ui/space_image/__init__.pyi,sha256=umZnS9mizGdWOCO0EwXuDzB1zt-Qu5RPqJGOPftV88M,46869
|
|
167
167
|
bl_ui/space_info/__init__.pyi,sha256=xS8fd5VIJX3mvOvrjgftzsHAx3ZbNggmUGyJIRv6Pcs,3384
|
|
168
|
-
bl_ui/space_nla/__init__.pyi,sha256=
|
|
169
|
-
bl_ui/space_node/__init__.pyi,sha256=
|
|
168
|
+
bl_ui/space_nla/__init__.pyi,sha256=qogAgjcs_TFfi4eoTjkVsPi8GkXRA7s4cO9xip2N-Ss,10324
|
|
169
|
+
bl_ui/space_node/__init__.pyi,sha256=tLdl7p5j7C08r_07WCOfmyx2-yLYPKF-lweXPJm1GVI,21996
|
|
170
170
|
bl_ui/space_outliner/__init__.pyi,sha256=1N93UIu-iU2UkqM7tQxeaxob3PRnnUjqY6rKdnT_sAE,8938
|
|
171
171
|
bl_ui/space_properties/__init__.pyi,sha256=KJdc80dXfvxv5XYmO8CRmheQxff_jLYiS_6zzRG_xwg,2802
|
|
172
|
-
bl_ui/space_sequencer/__init__.pyi,sha256=
|
|
172
|
+
bl_ui/space_sequencer/__init__.pyi,sha256=fXPyQ_mXWmo9U0VFpjDHD5t5oGqQBJP3hqCJjuGRXD0,58566
|
|
173
173
|
bl_ui/space_spreadsheet/__init__.pyi,sha256=qoO65GoJn8WObsqXqRzdEq2Zq1AZQEDWVpli-4lXOow,1769
|
|
174
174
|
bl_ui/space_statusbar/__init__.pyi,sha256=V-oUoxSsgIpi-jzqct_gz2vjFYkIqOffmuI4W7xlsbw,667
|
|
175
175
|
bl_ui/space_text/__init__.pyi,sha256=k864SRJgY7mgqqsu8KAhNGilMHMgMzjew1aeEHTtiYo,8996
|
|
176
|
-
bl_ui/space_time/__init__.pyi,sha256=
|
|
176
|
+
bl_ui/space_time/__init__.pyi,sha256=VwvieO14tuq0m-kYHJXz6maKEmQRAD7J2tQUrdNqI9E,4620
|
|
177
177
|
bl_ui/space_toolsystem_common/__init__.pyi,sha256=0wapsLJDJuc7K6B5kjWvB9_dWN5e3_6WNWf_ZEChlmk,3436
|
|
178
178
|
bl_ui/space_toolsystem_toolbar/__init__.pyi,sha256=a9wGqRUBYBWI3k0BzC9kgKR8ApI_nnjj1QlR-aLZvt0,10637
|
|
179
179
|
bl_ui/space_topbar/__init__.pyi,sha256=9MO703ewWr9Av2UGhd_tTQK8Okq8N3qw2SXOhZodeTk,15642
|
|
180
180
|
bl_ui/space_userpref/__init__.pyi,sha256=Ufcof6bgkrkvdWC-LjB5PnFo2Yzmu-HLYjBxweYLaFk,80834
|
|
181
181
|
bl_ui/space_view3d/__init__.pyi,sha256=4imWBsm8pkRorSjEMoaiih_vszcPlJ_d_CZ33SmoGf8,159655
|
|
182
182
|
bl_ui/space_view3d_toolbar/__init__.pyi,sha256=h6H868OMgIS3a1jgcOucUb9_EPzCFsR33fKPu_duUig,78464
|
|
183
|
-
bl_ui/utils/__init__.pyi,sha256=
|
|
183
|
+
bl_ui/utils/__init__.pyi,sha256=ljnA9UEJuHjOECvmj0JrqHBYqtd8GGy7IaBhwV_pIns,534
|
|
184
184
|
bl_ui_utils/__init__.pyi,sha256=6yinHCNictVwPqgqerb5zXorsqM0cqPLmz_r8ms1XeE,89
|
|
185
185
|
bl_ui_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
186
186
|
bl_ui_utils/layout/__init__.pyi,sha256=diIx4fYNx0-cCb582pWqI4VWUb1zl5--IG-OXvtCdd0,215
|
|
@@ -192,7 +192,7 @@ bmesh/__init__.pyi,sha256=nhi3aUMSLycSJTzr1Txhjt_NU0y_82NN0NBe8pZYTkE,1541
|
|
|
192
192
|
bmesh/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
193
193
|
bmesh/geometry/__init__.pyi,sha256=MZzpN0T12x1QweeZUui1LVTrnWyqyBgWsF6tPs1Pe9g,682
|
|
194
194
|
bmesh/ops/__init__.pyi,sha256=YEPcOajMh_dL5zFoV8hj7rVywdb1oO-rF2mjlqqE3Xs,76307
|
|
195
|
-
bmesh/types/__init__.pyi,sha256=
|
|
195
|
+
bmesh/types/__init__.pyi,sha256=lGMgkvo5z7e_ROqrXRdJAnjkWGJlNd0uyqfgENBjepY,44290
|
|
196
196
|
bmesh/utils/__init__.pyi,sha256=N2mRD0u1ipJkw2nokIb-FCL858ikNQrOM_mqJPiCEXY,6285
|
|
197
197
|
bpy/__init__.pyi,sha256=2c24IZe013Q0UbFSvpU9JKRYusCUwGYTXbNDx17dK5g,490
|
|
198
198
|
bpy/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -245,7 +245,7 @@ bpy/ops/material/__init__.pyi,sha256=7yA8XRBaeLm-2IGqQqXcDGNctp3amhdmBMTPoWHw5G8
|
|
|
245
245
|
bpy/ops/mball/__init__.pyi,sha256=3avjhyGC4WLxkWeTp16xJjaN3dp05ecbIXJnc2EtXVs,4258
|
|
246
246
|
bpy/ops/mesh/__init__.pyi,sha256=jOS4UBLsZrHh24SJH5hJgFl-GDV6HM1PCVSQSjUK8Sw,132537
|
|
247
247
|
bpy/ops/nla/__init__.pyi,sha256=xj5WdhNuTLCf0XbePE1XPiPfS78Ea45lA28gOntmOFI,18812
|
|
248
|
-
bpy/ops/node/__init__.pyi,sha256=
|
|
248
|
+
bpy/ops/node/__init__.pyi,sha256=wz_5UIzSRm3AsL9LMAQGvOrVdx7vemAZDlhR76brKYA,66591
|
|
249
249
|
bpy/ops/object/__init__.pyi,sha256=Xx2R7ntvpsIAZ4lDFxPENe3mXEsOGCvWrI-S85v5qRI,172971
|
|
250
250
|
bpy/ops/outliner/__init__.pyi,sha256=ynP3AYcSIvRaROgjkuUMwL2F5P085Q_VVOZjhVC4VeY,29325
|
|
251
251
|
bpy/ops/paint/__init__.pyi,sha256=14ik0wFRdTfSOMWb-ZQBc5FLHtq8xFeGiLMqrmtj374,38326
|
|
@@ -281,10 +281,10 @@ bpy/ops/wm/__init__.pyi,sha256=NHThI1FPMgAriNL3Y1h-S9viVTP0x9zDa0fsvmbhC9g,20982
|
|
|
281
281
|
bpy/ops/workspace/__init__.pyi,sha256=Yfe-bzDigcZkkMulfyDa0wbwqzHBrfp5mn0u_sCN7wo,2418
|
|
282
282
|
bpy/ops/world/__init__.pyi,sha256=VTCqEUTLL6yJroZCNcMYQgEKVmjwkIwIy70vB78rdOM,673
|
|
283
283
|
bpy/path/__init__.pyi,sha256=Phd8a6fB3496L7_LUhdwPNwkh3qy_4O-MS5br9RMfO0,5536
|
|
284
|
-
bpy/props/__init__.pyi,sha256=
|
|
284
|
+
bpy/props/__init__.pyi,sha256=K7csdjjAhvWfJXYjDkAA0U6NJv27ct-c5HKQdHhgJyk,49936
|
|
285
285
|
bpy/stub_internal/__init__.pyi,sha256=h3K2LGZ8lcLY-Oo9ym-HEopjGScc4iTfpT1MU_6smTI,126
|
|
286
|
-
bpy/stub_internal/rna_enums/__init__.pyi,sha256=
|
|
287
|
-
bpy/types/__init__.pyi,sha256=
|
|
286
|
+
bpy/stub_internal/rna_enums/__init__.pyi,sha256=cccGqmWM38q4vdyIjUmKbaXWFJayGAyZJAq5EOdVZBc,143214
|
|
287
|
+
bpy/types/__init__.pyi,sha256=dvSgMFn9H86WK-QXpl2m_RvLiAWiZcoFrnYK6OFixTU,5907763
|
|
288
288
|
bpy/utils/__init__.pyi,sha256=GGYp2g381aOdE7tWXvRGVbmhijbfgt4wGAtJGgbvyJg,15526
|
|
289
289
|
bpy/utils/previews/__init__.pyi,sha256=iSZemSCPu1S2BjAQO83Z-FqEo1nGHRCEIEduXB6hQhc,2357
|
|
290
290
|
bpy/utils/units/__init__.pyi,sha256=cpE9IZPkYPBexru7R9HQ_c0931d7R7Dvib2Uf7V0JJs,2645
|
|
@@ -317,7 +317,7 @@ freestyle/functions/__init__.pyi,sha256=dGcOMrCayIE_OXrHIm36aQUAsCyNwvX63DjLjJw6
|
|
|
317
317
|
freestyle/predicates/__init__.pyi,sha256=3Y8x157YP6udskhuFb_UZYvGyZjjEhGIJWQoj0BMLsw,13550
|
|
318
318
|
freestyle/shaders/__init__.pyi,sha256=SUbnzfs9aX629SUz1vacJUkTQS2F8-E4TS1SetN0yFs,24630
|
|
319
319
|
freestyle/types/__init__.pyi,sha256=kKYLqZdjpwVRBGzW02O_LUX_RkL8b0M1Op-49xfMbGk,101293
|
|
320
|
-
freestyle/utils/__init__.pyi,sha256=
|
|
320
|
+
freestyle/utils/__init__.pyi,sha256=vrxmLboZoETh1_GfhS4xYZ7vzW6Oh3vElX7y16Ftw0c,5328
|
|
321
321
|
freestyle/utils/ContextFunctions/__init__.pyi,sha256=IKNZD__52vYS5eT32F_WZwW1dco_6G2kZC_1IVCAwLs,3486
|
|
322
322
|
gpu/__init__.pyi,sha256=TLoatdrTMM6vfjnbuQA6cW38ARW5nuLa4Y-eicnJU5Q,8900
|
|
323
323
|
gpu/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -347,7 +347,7 @@ keyingsets_utils/__init__.pyi,sha256=LYwQPxGFL9s9daviMo2DyVIUmjyNRFT1S9cvMGBZ6to
|
|
|
347
347
|
keyingsets_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
348
348
|
mathutils/__init__.pyi,sha256=g9Jvfm5tIQqO9gdHh_r6YwHbp87CXRHsGikViFqV9Vs,90356
|
|
349
349
|
mathutils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
350
|
-
mathutils/bvhtree/__init__.pyi,sha256=
|
|
350
|
+
mathutils/bvhtree/__init__.pyi,sha256=dwPbU667m_oVBEu4aEcWns2sWl8oSNEII-O0GXxwsDA,5118
|
|
351
351
|
mathutils/geometry/__init__.pyi,sha256=N3LtfyhHPnBim_PgIa5likQdcVxOMDvUC-eTqv70ruY,23817
|
|
352
352
|
mathutils/interpolate/__init__.pyi,sha256=ndZoeTg3JKLj5Uskd-TU2BmCEAe8k_-MY-jGzzNj0O4,575
|
|
353
353
|
mathutils/kdtree/__init__.pyi,sha256=99pXd0pG1J4JBPexQBa87d-DAg-3KZ1lmDL3ZLiVA-Q,2309
|
|
@@ -364,7 +364,7 @@ rna_prop_ui/__init__.pyi,sha256=Gn7kc9WhI3qPObIz8QiFbjeVIP7GCeF6liywBzIEcnE,1402
|
|
|
364
364
|
rna_prop_ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
365
365
|
rna_xml/__init__.pyi,sha256=E0_ajcifhpiiQJVaNKnAa2ju-w5Tg9-lk7IqhsPjrw4,652
|
|
366
366
|
rna_xml/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
367
|
-
fake_bpy_module-
|
|
368
|
-
fake_bpy_module-
|
|
369
|
-
fake_bpy_module-
|
|
370
|
-
fake_bpy_module-
|
|
367
|
+
fake_bpy_module-20250903.dist-info/METADATA,sha256=DJyuUfbjn5ayk9547Xmw9o_9mZuQpvj0qaA4aw8plAg,7429
|
|
368
|
+
fake_bpy_module-20250903.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
369
|
+
fake_bpy_module-20250903.dist-info/top_level.txt,sha256=E_sehFLnpWSq252JjlyGL1A-1xsWTYcqyOIlHfuOh28,515
|
|
370
|
+
fake_bpy_module-20250903.dist-info/RECORD,,
|
freestyle/utils/__init__.pyi
CHANGED
|
@@ -125,7 +125,7 @@ def material_from_fedge(fe) -> None:
|
|
|
125
125
|
"""get the diffuse RGBA color from an FEdge"""
|
|
126
126
|
|
|
127
127
|
def normal_at_I0D(it) -> None: ...
|
|
128
|
-
def pairwise(iterable, types={
|
|
128
|
+
def pairwise(iterable, types={Stroke, StrokeVertexIterator}) -> None:
|
|
129
129
|
"""Yields a tuple containing the previous and current object"""
|
|
130
130
|
|
|
131
131
|
def rgb_to_bw(r, g, b) -> None:
|
mathutils/bvhtree/__init__.pyi
CHANGED
|
@@ -7,7 +7,6 @@ import typing
|
|
|
7
7
|
import collections.abc
|
|
8
8
|
import typing_extensions
|
|
9
9
|
import numpy.typing as npt
|
|
10
|
-
import _bpy_types
|
|
11
10
|
import bmesh.types
|
|
12
11
|
import bpy.types
|
|
13
12
|
import mathutils
|
|
@@ -26,7 +25,7 @@ class BVHTree:
|
|
|
26
25
|
@classmethod
|
|
27
26
|
def FromObject(
|
|
28
27
|
cls,
|
|
29
|
-
object:
|
|
28
|
+
object: bpy.types.Object,
|
|
30
29
|
depsgraph: bpy.types.Depsgraph,
|
|
31
30
|
*,
|
|
32
31
|
deform: bool = True,
|
|
@@ -37,7 +36,7 @@ class BVHTree:
|
|
|
37
36
|
"""BVH tree based on `Object` data.
|
|
38
37
|
|
|
39
38
|
:param object: Object data.
|
|
40
|
-
:type object:
|
|
39
|
+
:type object: bpy.types.Object
|
|
41
40
|
:param depsgraph: Depsgraph to use for evaluating the mesh.
|
|
42
41
|
:type depsgraph: bpy.types.Depsgraph
|
|
43
42
|
:param deform: Use mesh with deformations.
|
|
File without changes
|
|
File without changes
|