fake-bpy-module 20250902__py3-none-any.whl → 20250904__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/space_toolsystem_toolbar/__init__.pyi +2 -0
- bl_ui/utils/__init__.pyi +0 -17
- bmesh/types/__init__.pyi +6 -7
- bpy/app/__init__.pyi +7 -0
- bpy/ops/node/__init__.pyi +2 -2
- bpy/ops/sequencer/__init__.pyi +39 -0
- bpy/ops/uv/__init__.pyi +38 -8
- bpy/props/__init__.pyi +293 -19
- bpy/stub_internal/rna_enums/__init__.pyi +2 -0
- bpy/types/__init__.pyi +32 -68
- {fake_bpy_module-20250902.dist-info → fake_bpy_module-20250904.dist-info}/METADATA +1 -1
- {fake_bpy_module-20250902.dist-info → fake_bpy_module-20250904.dist-info}/RECORD +24 -24
- freestyle/utils/__init__.pyi +1 -1
- mathutils/bvhtree/__init__.pyi +2 -3
- {fake_bpy_module-20250902.dist-info → fake_bpy_module-20250904.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20250902.dist-info → fake_bpy_module-20250904.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/app/__init__.pyi
CHANGED
|
@@ -38,6 +38,13 @@ def is_job_running(job_type: bpy.stub_internal.rna_enums.WmJobTypeItems) -> bool
|
|
|
38
38
|
:rtype: bool
|
|
39
39
|
"""
|
|
40
40
|
|
|
41
|
+
def undo_memory_info() -> int:
|
|
42
|
+
"""Get undo memory usage information.
|
|
43
|
+
|
|
44
|
+
:return: total_memory.
|
|
45
|
+
:rtype: int
|
|
46
|
+
"""
|
|
47
|
+
|
|
41
48
|
alembic: typing.Any
|
|
42
49
|
""" Constant value bpy.app.alembic(supported=True, version=(1, 8, 3), version_string= 1, 8, 3)
|
|
43
50
|
"""
|
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/ops/sequencer/__init__.pyi
CHANGED
|
@@ -1682,6 +1682,45 @@ def select_box(
|
|
|
1682
1682
|
:type ignore_connections: bool | None
|
|
1683
1683
|
"""
|
|
1684
1684
|
|
|
1685
|
+
def select_circle(
|
|
1686
|
+
execution_context: int | str | None = None,
|
|
1687
|
+
undo: bool | None = None,
|
|
1688
|
+
/,
|
|
1689
|
+
*,
|
|
1690
|
+
x: int | None = 0,
|
|
1691
|
+
y: int | None = 0,
|
|
1692
|
+
radius: int | None = 25,
|
|
1693
|
+
wait_for_input: bool | None = True,
|
|
1694
|
+
mode: typing.Literal["SET", "ADD", "SUB"] | None = "SET",
|
|
1695
|
+
ignore_connections: bool | None = False,
|
|
1696
|
+
) -> None:
|
|
1697
|
+
"""Select strips using circle selection
|
|
1698
|
+
|
|
1699
|
+
:type execution_context: int | str | None
|
|
1700
|
+
:type undo: bool | None
|
|
1701
|
+
:param x: X
|
|
1702
|
+
:type x: int | None
|
|
1703
|
+
:param y: Y
|
|
1704
|
+
:type y: int | None
|
|
1705
|
+
:param radius: Radius
|
|
1706
|
+
:type radius: int | None
|
|
1707
|
+
:param wait_for_input: Wait for Input
|
|
1708
|
+
:type wait_for_input: bool | None
|
|
1709
|
+
:param mode: Mode
|
|
1710
|
+
|
|
1711
|
+
SET
|
|
1712
|
+
Set -- Set a new selection.
|
|
1713
|
+
|
|
1714
|
+
ADD
|
|
1715
|
+
Extend -- Extend existing selection.
|
|
1716
|
+
|
|
1717
|
+
SUB
|
|
1718
|
+
Subtract -- Subtract existing selection.
|
|
1719
|
+
:type mode: typing.Literal['SET','ADD','SUB'] | None
|
|
1720
|
+
:param ignore_connections: Ignore Connections, Select strips individually whether or not they are connected
|
|
1721
|
+
:type ignore_connections: bool | None
|
|
1722
|
+
"""
|
|
1723
|
+
|
|
1685
1724
|
def select_grouped(
|
|
1686
1725
|
execution_context: int | str | None = None,
|
|
1687
1726
|
undo: bool | None = None,
|
bpy/ops/uv/__init__.pyi
CHANGED
|
@@ -995,14 +995,44 @@ def select_similar(
|
|
|
995
995
|
) -> None:
|
|
996
996
|
"""Select similar UVs by property types
|
|
997
997
|
|
|
998
|
-
|
|
999
|
-
|
|
1000
|
-
|
|
1001
|
-
|
|
1002
|
-
|
|
1003
|
-
|
|
1004
|
-
|
|
1005
|
-
|
|
998
|
+
:type execution_context: int | str | None
|
|
999
|
+
:type undo: bool | None
|
|
1000
|
+
:param type: Type
|
|
1001
|
+
|
|
1002
|
+
PIN
|
|
1003
|
+
Pinned.
|
|
1004
|
+
|
|
1005
|
+
LENGTH
|
|
1006
|
+
Length -- Edge length in UV space.
|
|
1007
|
+
|
|
1008
|
+
LENGTH_3D
|
|
1009
|
+
Length 3D -- Length of edge in 3D space.
|
|
1010
|
+
|
|
1011
|
+
AREA
|
|
1012
|
+
Area -- Face area in UV space.
|
|
1013
|
+
|
|
1014
|
+
AREA_3D
|
|
1015
|
+
Area 3D -- Area of face in 3D space.
|
|
1016
|
+
|
|
1017
|
+
MATERIAL
|
|
1018
|
+
Material.
|
|
1019
|
+
|
|
1020
|
+
OBJECT
|
|
1021
|
+
Object.
|
|
1022
|
+
|
|
1023
|
+
SIDES
|
|
1024
|
+
Polygon Sides.
|
|
1025
|
+
|
|
1026
|
+
WINDING
|
|
1027
|
+
Winding -- Face direction defined by (clockwise or anti-clockwise winding (facing up or facing down).
|
|
1028
|
+
|
|
1029
|
+
FACE
|
|
1030
|
+
Amount of Faces in Island.
|
|
1031
|
+
:type type: typing.Literal['PIN','LENGTH','LENGTH_3D','AREA','AREA_3D','MATERIAL','OBJECT','SIDES','WINDING','FACE'] | None
|
|
1032
|
+
:param compare: Compare
|
|
1033
|
+
:type compare: typing.Literal['EQUAL','GREATER','LESS'] | None
|
|
1034
|
+
:param threshold: Threshold
|
|
1035
|
+
:type threshold: float | None
|
|
1006
1036
|
"""
|
|
1007
1037
|
|
|
1008
1038
|
def select_split(
|