fake-bge-module 20250104__py3-none-any.whl → 20250201__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.
- addon_utils/__init__.pyi +11 -6
- aud/__init__.pyi +4 -0
- bge/types/__init__.pyi +66 -27
- bgl/__init__.pyi +2 -2
- bgui/image/__init__.pyi +3 -1
- bgui/system/__init__.pyi +12 -4
- bl_console_utils/autocomplete/complete_calltip/__init__.pyi +5 -2
- bl_console_utils/autocomplete/complete_import/__init__.pyi +6 -3
- bl_console_utils/autocomplete/complete_namespace/__init__.pyi +2 -1
- bl_console_utils/autocomplete/intellisense/__init__.pyi +8 -2
- bl_operators/node/__init__.pyi +78 -0
- bl_ui/anim/__init__.pyi +6 -0
- bl_ui/generic_ui_list/__init__.pyi +2 -2
- bl_ui/node_add_menu_shader/__init__.pyi +0 -1
- bl_ui/node_add_menu_texture/__init__.pyi +1 -0
- bl_ui/properties_data_camera/__init__.pyi +0 -2
- bl_ui/properties_mask_common/__init__.pyi +17 -0
- bl_ui/properties_material_gpencil/__init__.pyi +29 -0
- bl_ui/properties_scene/__init__.pyi +6 -0
- bl_ui/properties_view_layer/__init__.pyi +1 -0
- bl_ui/space_clip/__init__.pyi +53 -0
- bl_ui/space_graph/__init__.pyi +2 -0
- bl_ui/space_image/__init__.pyi +25 -0
- bl_ui/space_node/__init__.pyi +0 -1
- bl_ui/space_sequencer/__init__.pyi +2 -1
- blf/__init__.pyi +6 -3
- bmesh/ops/__init__.pyi +111 -54
- bmesh/types/__init__.pyi +134 -46
- bmesh/utils/__init__.pyi +17 -5
- bpy/__init__.pyi +1 -2
- bpy/_typing/__init__.pyi +4 -0
- bpy/{typing → _typing/rna_enums}/__init__.pyi +36 -36
- bpy/app/__init__.pyi +13 -5
- bpy/app/handlers/__init__.pyi +4 -2
- bpy/app/icons/__init__.pyi +6 -2
- bpy/app/translations/__init__.pyi +17 -8
- bpy/msgbus/__init__.pyi +14 -2
- bpy/ops/action/__init__.pyi +51 -151
- bpy/ops/anim/__init__.pyi +61 -179
- bpy/ops/armature/__init__.pyi +48 -147
- bpy/ops/asset/__init__.pyi +16 -71
- bpy/ops/boid/__init__.pyi +11 -44
- bpy/ops/brush/__init__.pyi +16 -42
- bpy/ops/buttons/__init__.pyi +6 -29
- bpy/ops/cachefile/__init__.pyi +5 -19
- bpy/ops/camera/__init__.pyi +2 -5
- bpy/ops/clip/__init__.pyi +95 -293
- bpy/ops/cloth/__init__.pyi +1 -3
- bpy/ops/collection/__init__.pyi +10 -26
- bpy/ops/console/__init__.pyi +21 -79
- bpy/ops/constraint/__init__.pyi +18 -45
- bpy/ops/curve/__init__.pyi +57 -186
- bpy/ops/curves/__init__.pyi +37 -109
- bpy/ops/cycles/__init__.pyi +3 -9
- bpy/ops/dpaint/__init__.pyi +8 -22
- bpy/ops/ed/__init__.pyi +20 -52
- bpy/ops/export_anim/__init__.pyi +1 -3
- bpy/ops/export_scene/__init__.pyi +55 -32
- bpy/ops/extensions/__init__.pyi +34 -110
- bpy/ops/file/__init__.pyi +40 -167
- bpy/ops/fluid/__init__.pyi +14 -77
- bpy/ops/font/__init__.pyi +23 -85
- bpy/ops/geometry/__init__.pyi +29 -46
- bpy/ops/gizmogroup/__init__.pyi +2 -9
- bpy/ops/gpencil/__init__.pyi +8 -32
- bpy/ops/graph/__init__.pyi +82 -201
- bpy/ops/grease_pencil/__init__.pyi +125 -324
- bpy/ops/image/__init__.pyi +61 -163
- bpy/ops/import_anim/__init__.pyi +1 -3
- bpy/ops/import_curve/__init__.pyi +1 -3
- bpy/ops/import_scene/__init__.pyi +4 -6
- bpy/ops/info/__init__.pyi +7 -29
- bpy/ops/lattice/__init__.pyi +11 -32
- bpy/ops/logic/__init__.pyi +26 -65
- bpy/ops/marker/__init__.pyi +11 -31
- bpy/ops/mask/__init__.pyi +39 -132
- bpy/ops/material/__init__.pyi +3 -19
- bpy/ops/mball/__init__.pyi +8 -19
- bpy/ops/mesh/__init__.pyi +223 -470
- bpy/ops/nla/__init__.pyi +42 -150
- bpy/ops/node/__init__.pyi +169 -393
- bpy/ops/object/__init__.pyi +320 -749
- bpy/ops/outliner/__init__.pyi +76 -268
- bpy/ops/paint/__init__.pyi +67 -147
- bpy/ops/paintcurve/__init__.pyi +8 -33
- bpy/ops/palette/__init__.pyi +7 -27
- bpy/ops/particle/__init__.pyi +39 -134
- bpy/ops/pose/__init__.pyi +64 -182
- bpy/ops/poselib/__init__.pyi +9 -33
- bpy/ops/preferences/__init__.pyi +35 -94
- bpy/ops/ptcache/__init__.pyi +7 -33
- bpy/ops/render/__init__.pyi +13 -37
- bpy/ops/rigidbody/__init__.pyi +22 -54
- bpy/ops/scene/__init__.pyi +47 -130
- bpy/ops/screen/__init__.pyi +46 -144
- bpy/ops/script/__init__.pyi +3 -11
- bpy/ops/sculpt/__init__.pyi +40 -94
- bpy/ops/sculpt_curves/__init__.pyi +4 -10
- bpy/ops/sequencer/__init__.pyi +104 -327
- bpy/ops/sound/__init__.pyi +17 -28
- bpy/ops/spreadsheet/__init__.pyi +4 -15
- bpy/ops/surface/__init__.pyi +6 -13
- bpy/ops/text/__init__.pyi +43 -175
- bpy/ops/text_editor/__init__.pyi +1 -3
- bpy/ops/texture/__init__.pyi +4 -21
- bpy/ops/transform/__init__.pyi +114 -134
- bpy/ops/ui/__init__.pyi +39 -120
- bpy/ops/uilist/__init__.pyi +3 -7
- bpy/ops/uv/__init__.pyi +58 -143
- bpy/ops/view2d/__init__.pyi +14 -39
- bpy/ops/view3d/__init__.pyi +68 -238
- bpy/ops/wm/__init__.pyi +178 -319
- bpy/ops/workspace/__init__.pyi +7 -33
- bpy/ops/world/__init__.pyi +2 -11
- bpy/path/__init__.pyi +16 -6
- bpy/props/__init__.pyi +157 -127
- bpy/types/__init__.pyi +35227 -34838
- bpy/utils/__init__.pyi +71 -25
- bpy/utils/previews/__init__.pyi +2 -1
- bpy/utils/units/__init__.pyi +2 -1
- bpy_extras/anim_utils/__init__.pyi +11 -3
- bpy_extras/bmesh_utils/__init__.pyi +2 -1
- bpy_extras/image_utils/__init__.pyi +5 -2
- bpy_extras/io_utils/__init__.pyi +12 -5
- bpy_extras/mesh_utils/__init__.pyi +27 -6
- bpy_extras/object_utils/__init__.pyi +6 -5
- bpy_extras/view3d_utils/__init__.pyi +9 -2
- {fake_bge_module-20250104.dist-info → fake_bge_module-20250201.dist-info}/METADATA +3 -3
- {fake_bge_module-20250104.dist-info → fake_bge_module-20250201.dist-info}/RECORD +153 -152
- {fake_bge_module-20250104.dist-info → fake_bge_module-20250201.dist-info}/WHEEL +1 -1
- freestyle/chainingiterators/__init__.pyi +7 -2
- freestyle/functions/__init__.pyi +16 -4
- freestyle/shaders/__init__.pyi +5 -1
- freestyle/types/__init__.pyi +103 -30
- freestyle/utils/ContextFunctions/__init__.pyi +2 -2
- freestyle/utils/__init__.pyi +2 -1
- gpu/capabilities/__init__.pyi +2 -1
- gpu/matrix/__init__.pyi +4 -2
- gpu/state/__init__.pyi +2 -2
- gpu/types/__init__.pyi +40 -8
- gpu_extras/batch/__init__.pyi +13 -1
- gpu_extras/presets/__init__.pyi +10 -1
- idprop/types/__init__.pyi +4 -2
- imbuf/__init__.pyi +6 -3
- imbuf/types/__init__.pyi +5 -2
- mathutils/__init__.pyi +126 -35
- mathutils/bvhtree/__init__.pyi +21 -6
- mathutils/geometry/__init__.pyi +68 -22
- mathutils/interpolate/__init__.pyi +5 -1
- mathutils/kdtree/__init__.pyi +21 -8
- mathutils/noise/__init__.pyi +2 -1
- rna_info/__init__.pyi +2 -1
- {fake_bge_module-20250104.dist-info → fake_bge_module-20250201.dist-info}/top_level.txt +0 -0
bpy/ops/import_anim/__init__.pyi
CHANGED
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
import typing
|
|
2
2
|
import collections.abc
|
|
3
3
|
import typing_extensions
|
|
4
|
-
import bpy.types
|
|
5
4
|
|
|
6
5
|
def bvh(
|
|
7
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
8
6
|
execution_context: int | str | None = None,
|
|
9
7
|
undo: bool | None = None,
|
|
8
|
+
/,
|
|
10
9
|
*,
|
|
11
10
|
filepath: str = "",
|
|
12
11
|
filter_glob: str = "*.bvh",
|
|
@@ -26,7 +25,6 @@ def bvh(
|
|
|
26
25
|
):
|
|
27
26
|
"""Load a BVH motion capture file
|
|
28
27
|
|
|
29
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
30
28
|
:type execution_context: int | str | None
|
|
31
29
|
:type undo: bool | None
|
|
32
30
|
:param filepath: File Path, Filepath used for importing the file
|
|
@@ -1,19 +1,17 @@
|
|
|
1
1
|
import typing
|
|
2
2
|
import collections.abc
|
|
3
3
|
import typing_extensions
|
|
4
|
-
import bpy.types
|
|
5
4
|
|
|
6
5
|
def svg(
|
|
7
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
8
6
|
execution_context: int | str | None = None,
|
|
9
7
|
undo: bool | None = None,
|
|
8
|
+
/,
|
|
10
9
|
*,
|
|
11
10
|
filepath: str = "",
|
|
12
11
|
filter_glob: str = "*.svg",
|
|
13
12
|
):
|
|
14
13
|
"""Load a SVG file
|
|
15
14
|
|
|
16
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
17
15
|
:type execution_context: int | str | None
|
|
18
16
|
:type undo: bool | None
|
|
19
17
|
:param filepath: File Path, Filepath used for importing the file
|
|
@@ -4,9 +4,9 @@ import typing_extensions
|
|
|
4
4
|
import bpy.types
|
|
5
5
|
|
|
6
6
|
def fbx(
|
|
7
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
8
7
|
execution_context: int | str | None = None,
|
|
9
8
|
undo: bool | None = None,
|
|
9
|
+
/,
|
|
10
10
|
*,
|
|
11
11
|
filepath: str = "",
|
|
12
12
|
directory: str = "",
|
|
@@ -38,7 +38,6 @@ def fbx(
|
|
|
38
38
|
):
|
|
39
39
|
"""Load a FBX file
|
|
40
40
|
|
|
41
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
42
41
|
:type execution_context: int | str | None
|
|
43
42
|
:type undo: bool | None
|
|
44
43
|
:param filepath: File Path, Filepath used for importing the file
|
|
@@ -111,9 +110,9 @@ def fbx(
|
|
|
111
110
|
"""
|
|
112
111
|
|
|
113
112
|
def gltf(
|
|
114
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
115
113
|
execution_context: int | str | None = None,
|
|
116
114
|
undo: bool | None = None,
|
|
115
|
+
/,
|
|
117
116
|
*,
|
|
118
117
|
filepath: str = "",
|
|
119
118
|
export_import_convert_lighting_mode: typing.Literal["SPEC", "COMPAT", "RAW"]
|
|
@@ -136,7 +135,6 @@ def gltf(
|
|
|
136
135
|
):
|
|
137
136
|
"""Load a glTF 2.0 file
|
|
138
137
|
|
|
139
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
140
138
|
:type execution_context: int | str | None
|
|
141
139
|
:type undo: bool | None
|
|
142
140
|
:param filepath: File Path, Filepath used for importing the file
|
|
@@ -181,9 +179,9 @@ def gltf(
|
|
|
181
179
|
:type bone_shape_scale_factor: float | None
|
|
182
180
|
:param guess_original_bind_pose: Guess Original Bind Pose, Try to guess the original bind pose for skinned meshes from the inverse bind matrices. When off, use default/rest pose as bind pose
|
|
183
181
|
:type guess_original_bind_pose: bool | None
|
|
184
|
-
:param import_webp_texture: Import WebP
|
|
182
|
+
:param import_webp_texture: Import WebP Textures, If a texture exists in WebP format, loads the WebP texture instead of the fallback PNG/JPEG one
|
|
185
183
|
:type import_webp_texture: bool | None
|
|
186
|
-
:param import_select_created_objects: Select
|
|
184
|
+
:param import_select_created_objects: Select Imported Objects, Select created objects at the end of the import
|
|
187
185
|
:type import_select_created_objects: bool | None
|
|
188
186
|
:param import_scene_extras: Import Scene Extras, Import scene extras as custom properties. Existing custom properties will be overwritten
|
|
189
187
|
:type import_scene_extras: bool | None
|
bpy/ops/info/__init__.pyi
CHANGED
|
@@ -1,66 +1,46 @@
|
|
|
1
1
|
import typing
|
|
2
2
|
import collections.abc
|
|
3
3
|
import typing_extensions
|
|
4
|
-
import bpy.types
|
|
5
4
|
|
|
6
|
-
def report_copy(
|
|
7
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
8
|
-
execution_context: int | str | None = None,
|
|
9
|
-
undo: bool | None = None,
|
|
10
|
-
):
|
|
5
|
+
def report_copy(execution_context: int | str | None = None, undo: bool | None = None):
|
|
11
6
|
"""Copy selected reports to clipboard
|
|
12
7
|
|
|
13
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
14
8
|
:type execution_context: int | str | None
|
|
15
9
|
:type undo: bool | None
|
|
16
10
|
"""
|
|
17
11
|
|
|
18
|
-
def report_delete(
|
|
19
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
20
|
-
execution_context: int | str | None = None,
|
|
21
|
-
undo: bool | None = None,
|
|
22
|
-
):
|
|
12
|
+
def report_delete(execution_context: int | str | None = None, undo: bool | None = None):
|
|
23
13
|
"""Delete selected reports
|
|
24
14
|
|
|
25
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
26
15
|
:type execution_context: int | str | None
|
|
27
16
|
:type undo: bool | None
|
|
28
17
|
"""
|
|
29
18
|
|
|
30
|
-
def report_replay(
|
|
31
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
32
|
-
execution_context: int | str | None = None,
|
|
33
|
-
undo: bool | None = None,
|
|
34
|
-
):
|
|
19
|
+
def report_replay(execution_context: int | str | None = None, undo: bool | None = None):
|
|
35
20
|
"""Replay selected reports
|
|
36
21
|
|
|
37
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
38
22
|
:type execution_context: int | str | None
|
|
39
23
|
:type undo: bool | None
|
|
40
24
|
"""
|
|
41
25
|
|
|
42
26
|
def reports_display_update(
|
|
43
|
-
|
|
44
|
-
execution_context: int | str | None = None,
|
|
45
|
-
undo: bool | None = None,
|
|
27
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
46
28
|
):
|
|
47
29
|
"""Update the display of reports in Blender UI (internal use)
|
|
48
30
|
|
|
49
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
50
31
|
:type execution_context: int | str | None
|
|
51
32
|
:type undo: bool | None
|
|
52
33
|
"""
|
|
53
34
|
|
|
54
35
|
def select_all(
|
|
55
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
56
36
|
execution_context: int | str | None = None,
|
|
57
37
|
undo: bool | None = None,
|
|
38
|
+
/,
|
|
58
39
|
*,
|
|
59
40
|
action: typing.Literal["TOGGLE", "SELECT", "DESELECT", "INVERT"] | None = "SELECT",
|
|
60
41
|
):
|
|
61
42
|
"""Change selection of all visible reports
|
|
62
43
|
|
|
63
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
64
44
|
:type execution_context: int | str | None
|
|
65
45
|
:type undo: bool | None
|
|
66
46
|
:param action: Action, Selection action to execute
|
|
@@ -80,9 +60,9 @@ def select_all(
|
|
|
80
60
|
"""
|
|
81
61
|
|
|
82
62
|
def select_box(
|
|
83
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
84
63
|
execution_context: int | str | None = None,
|
|
85
64
|
undo: bool | None = None,
|
|
65
|
+
/,
|
|
86
66
|
*,
|
|
87
67
|
xmin: int | None = 0,
|
|
88
68
|
xmax: int | None = 0,
|
|
@@ -93,7 +73,6 @@ def select_box(
|
|
|
93
73
|
):
|
|
94
74
|
"""Toggle box selection
|
|
95
75
|
|
|
96
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
97
76
|
:type execution_context: int | str | None
|
|
98
77
|
:type undo: bool | None
|
|
99
78
|
:param xmin: X Min
|
|
@@ -120,16 +99,15 @@ def select_box(
|
|
|
120
99
|
"""
|
|
121
100
|
|
|
122
101
|
def select_pick(
|
|
123
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
124
102
|
execution_context: int | str | None = None,
|
|
125
103
|
undo: bool | None = None,
|
|
104
|
+
/,
|
|
126
105
|
*,
|
|
127
106
|
report_index: int | None = 0,
|
|
128
107
|
extend: bool | None = False,
|
|
129
108
|
):
|
|
130
109
|
"""Select reports by index
|
|
131
110
|
|
|
132
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
133
111
|
:type execution_context: int | str | None
|
|
134
112
|
:type undo: bool | None
|
|
135
113
|
:param report_index: Report, Index of the report
|
bpy/ops/lattice/__init__.pyi
CHANGED
|
@@ -1,47 +1,39 @@
|
|
|
1
1
|
import typing
|
|
2
2
|
import collections.abc
|
|
3
3
|
import typing_extensions
|
|
4
|
-
import bpy.
|
|
5
|
-
import bpy.typing
|
|
4
|
+
import bpy._typing.rna_enums
|
|
6
5
|
|
|
7
6
|
def flip(
|
|
8
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
9
7
|
execution_context: int | str | None = None,
|
|
10
8
|
undo: bool | None = None,
|
|
9
|
+
/,
|
|
11
10
|
*,
|
|
12
11
|
axis: typing.Literal["U", "V", "W"] | None = "U",
|
|
13
12
|
):
|
|
14
13
|
"""Mirror all control points without inverting the lattice deform
|
|
15
14
|
|
|
16
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
17
15
|
:type execution_context: int | str | None
|
|
18
16
|
:type undo: bool | None
|
|
19
17
|
:param axis: Flip Axis, Coordinates along this axis get flipped
|
|
20
18
|
:type axis: typing.Literal['U','V','W'] | None
|
|
21
19
|
"""
|
|
22
20
|
|
|
23
|
-
def make_regular(
|
|
24
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
25
|
-
execution_context: int | str | None = None,
|
|
26
|
-
undo: bool | None = None,
|
|
27
|
-
):
|
|
21
|
+
def make_regular(execution_context: int | str | None = None, undo: bool | None = None):
|
|
28
22
|
"""Set UVW control points a uniform distance apart
|
|
29
23
|
|
|
30
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
31
24
|
:type execution_context: int | str | None
|
|
32
25
|
:type undo: bool | None
|
|
33
26
|
"""
|
|
34
27
|
|
|
35
28
|
def select_all(
|
|
36
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
37
29
|
execution_context: int | str | None = None,
|
|
38
30
|
undo: bool | None = None,
|
|
31
|
+
/,
|
|
39
32
|
*,
|
|
40
33
|
action: typing.Literal["TOGGLE", "SELECT", "DESELECT", "INVERT"] | None = "TOGGLE",
|
|
41
34
|
):
|
|
42
35
|
"""Change selection of all UVW control points
|
|
43
36
|
|
|
44
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
45
37
|
:type execution_context: int | str | None
|
|
46
38
|
:type undo: bool | None
|
|
47
39
|
:param action: Action, Selection action to execute
|
|
@@ -60,53 +52,42 @@ def select_all(
|
|
|
60
52
|
:type action: typing.Literal['TOGGLE','SELECT','DESELECT','INVERT'] | None
|
|
61
53
|
"""
|
|
62
54
|
|
|
63
|
-
def select_less(
|
|
64
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
65
|
-
execution_context: int | str | None = None,
|
|
66
|
-
undo: bool | None = None,
|
|
67
|
-
):
|
|
55
|
+
def select_less(execution_context: int | str | None = None, undo: bool | None = None):
|
|
68
56
|
"""Deselect vertices at the boundary of each selection region
|
|
69
57
|
|
|
70
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
71
58
|
:type execution_context: int | str | None
|
|
72
59
|
:type undo: bool | None
|
|
73
60
|
"""
|
|
74
61
|
|
|
75
62
|
def select_mirror(
|
|
76
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
77
63
|
execution_context: int | str | None = None,
|
|
78
64
|
undo: bool | None = None,
|
|
65
|
+
/,
|
|
79
66
|
*,
|
|
80
|
-
axis: set[bpy.
|
|
67
|
+
axis: set[bpy._typing.rna_enums.AxisFlagXyzItems] | None = {"X"},
|
|
81
68
|
extend: bool | None = False,
|
|
82
69
|
):
|
|
83
70
|
"""Select mirrored lattice points
|
|
84
71
|
|
|
85
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
86
72
|
:type execution_context: int | str | None
|
|
87
73
|
:type undo: bool | None
|
|
88
74
|
:param axis: Axis
|
|
89
|
-
:type axis: set[bpy.
|
|
75
|
+
:type axis: set[bpy._typing.rna_enums.AxisFlagXyzItems] | None
|
|
90
76
|
:param extend: Extend, Extend the selection
|
|
91
77
|
:type extend: bool | None
|
|
92
78
|
"""
|
|
93
79
|
|
|
94
|
-
def select_more(
|
|
95
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
96
|
-
execution_context: int | str | None = None,
|
|
97
|
-
undo: bool | None = None,
|
|
98
|
-
):
|
|
80
|
+
def select_more(execution_context: int | str | None = None, undo: bool | None = None):
|
|
99
81
|
"""Select vertex directly linked to already selected ones
|
|
100
82
|
|
|
101
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
102
83
|
:type execution_context: int | str | None
|
|
103
84
|
:type undo: bool | None
|
|
104
85
|
"""
|
|
105
86
|
|
|
106
87
|
def select_random(
|
|
107
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
108
88
|
execution_context: int | str | None = None,
|
|
109
89
|
undo: bool | None = None,
|
|
90
|
+
/,
|
|
110
91
|
*,
|
|
111
92
|
ratio: float | None = 0.5,
|
|
112
93
|
seed: int | None = 0,
|
|
@@ -114,7 +95,6 @@ def select_random(
|
|
|
114
95
|
):
|
|
115
96
|
"""Randomly select UVW control points
|
|
116
97
|
|
|
117
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
118
98
|
:type execution_context: int | str | None
|
|
119
99
|
:type undo: bool | None
|
|
120
100
|
:param ratio: Ratio, Portion of items to select randomly
|
|
@@ -132,15 +112,14 @@ def select_random(
|
|
|
132
112
|
"""
|
|
133
113
|
|
|
134
114
|
def select_ungrouped(
|
|
135
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
136
115
|
execution_context: int | str | None = None,
|
|
137
116
|
undo: bool | None = None,
|
|
117
|
+
/,
|
|
138
118
|
*,
|
|
139
119
|
extend: bool | None = False,
|
|
140
120
|
):
|
|
141
121
|
"""Select vertices without a group
|
|
142
122
|
|
|
143
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
144
123
|
:type execution_context: int | str | None
|
|
145
124
|
:type undo: bool | None
|
|
146
125
|
:param extend: Extend, Extend the selection
|