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/logic/__init__.pyi
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import typing
|
|
2
2
|
import collections.abc
|
|
3
3
|
import typing_extensions
|
|
4
|
+
import bpy._typing.rna_enums
|
|
4
5
|
import bpy.types
|
|
5
|
-
import bpy.typing
|
|
6
6
|
|
|
7
7
|
def actuator_add(
|
|
8
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
9
8
|
execution_context: int | str | None = None,
|
|
10
9
|
undo: bool | None = None,
|
|
10
|
+
/,
|
|
11
11
|
*,
|
|
12
12
|
type: str | None = "",
|
|
13
13
|
name: str = "",
|
|
@@ -15,7 +15,6 @@ def actuator_add(
|
|
|
15
15
|
):
|
|
16
16
|
"""Add an actuator to the active object
|
|
17
17
|
|
|
18
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
19
18
|
:type execution_context: int | str | None
|
|
20
19
|
:type undo: bool | None
|
|
21
20
|
:param type: Type, Type of actuator to add
|
|
@@ -27,9 +26,9 @@ def actuator_add(
|
|
|
27
26
|
"""
|
|
28
27
|
|
|
29
28
|
def actuator_move(
|
|
30
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
31
29
|
execution_context: int | str | None = None,
|
|
32
30
|
undo: bool | None = None,
|
|
31
|
+
/,
|
|
33
32
|
*,
|
|
34
33
|
actuator: str = "",
|
|
35
34
|
object: str = "",
|
|
@@ -37,7 +36,6 @@ def actuator_move(
|
|
|
37
36
|
):
|
|
38
37
|
"""Move Actuator
|
|
39
38
|
|
|
40
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
41
39
|
:type execution_context: int | str | None
|
|
42
40
|
:type undo: bool | None
|
|
43
41
|
:param actuator: Actuator, Name of the actuator to edit
|
|
@@ -49,16 +47,15 @@ def actuator_move(
|
|
|
49
47
|
"""
|
|
50
48
|
|
|
51
49
|
def actuator_remove(
|
|
52
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
53
50
|
execution_context: int | str | None = None,
|
|
54
51
|
undo: bool | None = None,
|
|
52
|
+
/,
|
|
55
53
|
*,
|
|
56
54
|
actuator: str = "",
|
|
57
55
|
object: str = "",
|
|
58
56
|
):
|
|
59
57
|
"""Remove an actuator from the active object
|
|
60
58
|
|
|
61
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
62
59
|
:type execution_context: int | str | None
|
|
63
60
|
:type undo: bool | None
|
|
64
61
|
:param actuator: Actuator, Name of the actuator to edit
|
|
@@ -68,21 +65,20 @@ def actuator_remove(
|
|
|
68
65
|
"""
|
|
69
66
|
|
|
70
67
|
def controller_add(
|
|
71
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
72
68
|
execution_context: int | str | None = None,
|
|
73
69
|
undo: bool | None = None,
|
|
70
|
+
/,
|
|
74
71
|
*,
|
|
75
|
-
type: bpy.
|
|
72
|
+
type: bpy._typing.rna_enums.ControllerTypeItems | None = "LOGIC_AND",
|
|
76
73
|
name: str = "",
|
|
77
74
|
object: str = "",
|
|
78
75
|
):
|
|
79
76
|
"""Add a controller to the active object
|
|
80
77
|
|
|
81
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
82
78
|
:type execution_context: int | str | None
|
|
83
79
|
:type undo: bool | None
|
|
84
80
|
:param type: Type, Type of controller to add
|
|
85
|
-
:type type: bpy.
|
|
81
|
+
:type type: bpy._typing.rna_enums.ControllerTypeItems | None
|
|
86
82
|
:param name: Name, Name of the Controller to add
|
|
87
83
|
:type name: str
|
|
88
84
|
:param object: Object, Name of the Object to add the Controller to
|
|
@@ -90,9 +86,9 @@ def controller_add(
|
|
|
90
86
|
"""
|
|
91
87
|
|
|
92
88
|
def controller_move(
|
|
93
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
94
89
|
execution_context: int | str | None = None,
|
|
95
90
|
undo: bool | None = None,
|
|
91
|
+
/,
|
|
96
92
|
*,
|
|
97
93
|
controller: str = "",
|
|
98
94
|
object: str = "",
|
|
@@ -100,7 +96,6 @@ def controller_move(
|
|
|
100
96
|
):
|
|
101
97
|
"""Move Controller
|
|
102
98
|
|
|
103
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
104
99
|
:type execution_context: int | str | None
|
|
105
100
|
:type undo: bool | None
|
|
106
101
|
:param controller: Controller, Name of the controller to edit
|
|
@@ -112,16 +107,15 @@ def controller_move(
|
|
|
112
107
|
"""
|
|
113
108
|
|
|
114
109
|
def controller_remove(
|
|
115
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
116
110
|
execution_context: int | str | None = None,
|
|
117
111
|
undo: bool | None = None,
|
|
112
|
+
/,
|
|
118
113
|
*,
|
|
119
114
|
controller: str = "",
|
|
120
115
|
object: str = "",
|
|
121
116
|
):
|
|
122
117
|
"""Remove a controller from the active object
|
|
123
118
|
|
|
124
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
125
119
|
:type execution_context: int | str | None
|
|
126
120
|
:type undo: bool | None
|
|
127
121
|
:param controller: Controller, Name of the controller to edit
|
|
@@ -131,15 +125,14 @@ def controller_remove(
|
|
|
131
125
|
"""
|
|
132
126
|
|
|
133
127
|
def custom_object_create(
|
|
134
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
135
128
|
execution_context: int | str | None = None,
|
|
136
129
|
undo: bool | None = None,
|
|
130
|
+
/,
|
|
137
131
|
*,
|
|
138
132
|
class_name: str = "module.MyObject",
|
|
139
133
|
):
|
|
140
134
|
"""Create a KX_GameObject subclass and attach it to the selected object
|
|
141
135
|
|
|
142
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
143
136
|
:type execution_context: int | str | None
|
|
144
137
|
:type undo: bool | None
|
|
145
138
|
:param class_name: MyObject, The class name with module (module.ClassName)
|
|
@@ -147,15 +140,14 @@ def custom_object_create(
|
|
|
147
140
|
"""
|
|
148
141
|
|
|
149
142
|
def custom_object_register(
|
|
150
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
151
143
|
execution_context: int | str | None = None,
|
|
152
144
|
undo: bool | None = None,
|
|
145
|
+
/,
|
|
153
146
|
*,
|
|
154
147
|
class_name: str = "module.MyObject",
|
|
155
148
|
):
|
|
156
149
|
"""Use a custom KX_GameObject subclass for the selected object
|
|
157
150
|
|
|
158
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
159
151
|
:type execution_context: int | str | None
|
|
160
152
|
:type undo: bool | None
|
|
161
153
|
:param class_name: MyObject, The class name with module (module.ClassName)
|
|
@@ -163,40 +155,33 @@ def custom_object_register(
|
|
|
163
155
|
"""
|
|
164
156
|
|
|
165
157
|
def custom_object_reload(
|
|
166
|
-
|
|
167
|
-
execution_context: int | str | None = None,
|
|
168
|
-
undo: bool | None = None,
|
|
158
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
169
159
|
):
|
|
170
160
|
"""Reload custom object from the source script
|
|
171
161
|
|
|
172
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
173
162
|
:type execution_context: int | str | None
|
|
174
163
|
:type undo: bool | None
|
|
175
164
|
"""
|
|
176
165
|
|
|
177
166
|
def custom_object_remove(
|
|
178
|
-
|
|
179
|
-
execution_context: int | str | None = None,
|
|
180
|
-
undo: bool | None = None,
|
|
167
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
181
168
|
):
|
|
182
169
|
"""Remove this custom class from the object
|
|
183
170
|
|
|
184
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
185
171
|
:type execution_context: int | str | None
|
|
186
172
|
:type undo: bool | None
|
|
187
173
|
"""
|
|
188
174
|
|
|
189
175
|
def links_cut(
|
|
190
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
191
176
|
execution_context: int | str | None = None,
|
|
192
177
|
undo: bool | None = None,
|
|
178
|
+
/,
|
|
193
179
|
*,
|
|
194
180
|
path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath] | None = None,
|
|
195
181
|
cursor: int | None = 15,
|
|
196
182
|
):
|
|
197
183
|
"""Remove logic brick connections
|
|
198
184
|
|
|
199
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
200
185
|
:type execution_context: int | str | None
|
|
201
186
|
:type undo: bool | None
|
|
202
187
|
:param path: Path
|
|
@@ -205,28 +190,22 @@ def links_cut(
|
|
|
205
190
|
:type cursor: int | None
|
|
206
191
|
"""
|
|
207
192
|
|
|
208
|
-
def properties(
|
|
209
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
210
|
-
execution_context: int | str | None = None,
|
|
211
|
-
undo: bool | None = None,
|
|
212
|
-
):
|
|
193
|
+
def properties(execution_context: int | str | None = None, undo: bool | None = None):
|
|
213
194
|
"""Toggle the properties region visibility
|
|
214
195
|
|
|
215
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
216
196
|
:type execution_context: int | str | None
|
|
217
197
|
:type undo: bool | None
|
|
218
198
|
"""
|
|
219
199
|
|
|
220
200
|
def python_component_create(
|
|
221
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
222
201
|
execution_context: int | str | None = None,
|
|
223
202
|
undo: bool | None = None,
|
|
203
|
+
/,
|
|
224
204
|
*,
|
|
225
205
|
component_name: str = "module.Component",
|
|
226
206
|
):
|
|
227
207
|
"""Create a Python component to the selected object
|
|
228
208
|
|
|
229
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
230
209
|
:type execution_context: int | str | None
|
|
231
210
|
:type undo: bool | None
|
|
232
211
|
:param component_name: Component, The component class name with module (module.ComponentName)
|
|
@@ -234,15 +213,14 @@ def python_component_create(
|
|
|
234
213
|
"""
|
|
235
214
|
|
|
236
215
|
def python_component_move_down(
|
|
237
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
238
216
|
execution_context: int | str | None = None,
|
|
239
217
|
undo: bool | None = None,
|
|
218
|
+
/,
|
|
240
219
|
*,
|
|
241
220
|
index: int | None = 0,
|
|
242
221
|
):
|
|
243
222
|
"""Move this component down in the list
|
|
244
223
|
|
|
245
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
246
224
|
:type execution_context: int | str | None
|
|
247
225
|
:type undo: bool | None
|
|
248
226
|
:param index: Index, Component index to move
|
|
@@ -250,15 +228,14 @@ def python_component_move_down(
|
|
|
250
228
|
"""
|
|
251
229
|
|
|
252
230
|
def python_component_move_up(
|
|
253
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
254
231
|
execution_context: int | str | None = None,
|
|
255
232
|
undo: bool | None = None,
|
|
233
|
+
/,
|
|
256
234
|
*,
|
|
257
235
|
index: int | None = 0,
|
|
258
236
|
):
|
|
259
237
|
"""Move this component up in the list
|
|
260
238
|
|
|
261
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
262
239
|
:type execution_context: int | str | None
|
|
263
240
|
:type undo: bool | None
|
|
264
241
|
:param index: Index, Component index to move
|
|
@@ -266,15 +243,14 @@ def python_component_move_up(
|
|
|
266
243
|
"""
|
|
267
244
|
|
|
268
245
|
def python_component_register(
|
|
269
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
270
246
|
execution_context: int | str | None = None,
|
|
271
247
|
undo: bool | None = None,
|
|
248
|
+
/,
|
|
272
249
|
*,
|
|
273
250
|
component_name: str = "module.Component",
|
|
274
251
|
):
|
|
275
252
|
"""Add a Python component to the selected object
|
|
276
253
|
|
|
277
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
278
254
|
:type execution_context: int | str | None
|
|
279
255
|
:type undo: bool | None
|
|
280
256
|
:param component_name: Component, The component class name with module (module.ComponentName)
|
|
@@ -282,15 +258,14 @@ def python_component_register(
|
|
|
282
258
|
"""
|
|
283
259
|
|
|
284
260
|
def python_component_reload(
|
|
285
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
286
261
|
execution_context: int | str | None = None,
|
|
287
262
|
undo: bool | None = None,
|
|
263
|
+
/,
|
|
288
264
|
*,
|
|
289
265
|
index: int | None = 0,
|
|
290
266
|
):
|
|
291
267
|
"""Reload component from the source script
|
|
292
268
|
|
|
293
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
294
269
|
:type execution_context: int | str | None
|
|
295
270
|
:type undo: bool | None
|
|
296
271
|
:param index: Index, Component index to reload
|
|
@@ -298,37 +273,31 @@ def python_component_reload(
|
|
|
298
273
|
"""
|
|
299
274
|
|
|
300
275
|
def python_component_remove(
|
|
301
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
302
276
|
execution_context: int | str | None = None,
|
|
303
277
|
undo: bool | None = None,
|
|
278
|
+
/,
|
|
304
279
|
*,
|
|
305
280
|
index: int | None = 0,
|
|
306
281
|
):
|
|
307
282
|
"""Remove this component from the object
|
|
308
283
|
|
|
309
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
310
284
|
:type execution_context: int | str | None
|
|
311
285
|
:type undo: bool | None
|
|
312
286
|
:param index: Index, Component index to remove
|
|
313
287
|
:type index: int | None
|
|
314
288
|
"""
|
|
315
289
|
|
|
316
|
-
def region_flip(
|
|
317
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
318
|
-
execution_context: int | str | None = None,
|
|
319
|
-
undo: bool | None = None,
|
|
320
|
-
):
|
|
290
|
+
def region_flip(execution_context: int | str | None = None, undo: bool | None = None):
|
|
321
291
|
"""Toggle the properties region's alignment (left/right)
|
|
322
292
|
|
|
323
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
324
293
|
:type execution_context: int | str | None
|
|
325
294
|
:type undo: bool | None
|
|
326
295
|
"""
|
|
327
296
|
|
|
328
297
|
def sensor_add(
|
|
329
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
330
298
|
execution_context: int | str | None = None,
|
|
331
299
|
undo: bool | None = None,
|
|
300
|
+
/,
|
|
332
301
|
*,
|
|
333
302
|
type: str | None = "",
|
|
334
303
|
name: str = "",
|
|
@@ -336,7 +305,6 @@ def sensor_add(
|
|
|
336
305
|
):
|
|
337
306
|
"""Add a sensor to the active object
|
|
338
307
|
|
|
339
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
340
308
|
:type execution_context: int | str | None
|
|
341
309
|
:type undo: bool | None
|
|
342
310
|
:param type: Type, Type of sensor to add
|
|
@@ -348,9 +316,9 @@ def sensor_add(
|
|
|
348
316
|
"""
|
|
349
317
|
|
|
350
318
|
def sensor_move(
|
|
351
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
352
319
|
execution_context: int | str | None = None,
|
|
353
320
|
undo: bool | None = None,
|
|
321
|
+
/,
|
|
354
322
|
*,
|
|
355
323
|
sensor: str = "",
|
|
356
324
|
object: str = "",
|
|
@@ -358,7 +326,6 @@ def sensor_move(
|
|
|
358
326
|
):
|
|
359
327
|
"""Move Sensor
|
|
360
328
|
|
|
361
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
362
329
|
:type execution_context: int | str | None
|
|
363
330
|
:type undo: bool | None
|
|
364
331
|
:param sensor: Sensor, Name of the sensor to edit
|
|
@@ -370,16 +337,15 @@ def sensor_move(
|
|
|
370
337
|
"""
|
|
371
338
|
|
|
372
339
|
def sensor_remove(
|
|
373
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
374
340
|
execution_context: int | str | None = None,
|
|
375
341
|
undo: bool | None = None,
|
|
342
|
+
/,
|
|
376
343
|
*,
|
|
377
344
|
sensor: str = "",
|
|
378
345
|
object: str = "",
|
|
379
346
|
):
|
|
380
347
|
"""Remove a sensor from the active object
|
|
381
348
|
|
|
382
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
383
349
|
:type execution_context: int | str | None
|
|
384
350
|
:type undo: bool | None
|
|
385
351
|
:param sensor: Sensor, Name of the sensor to edit
|
|
@@ -388,14 +354,9 @@ def sensor_remove(
|
|
|
388
354
|
:type object: str
|
|
389
355
|
"""
|
|
390
356
|
|
|
391
|
-
def view_all(
|
|
392
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
393
|
-
execution_context: int | str | None = None,
|
|
394
|
-
undo: bool | None = None,
|
|
395
|
-
):
|
|
357
|
+
def view_all(execution_context: int | str | None = None, undo: bool | None = None):
|
|
396
358
|
"""Resize view so you can see all logic bricks
|
|
397
359
|
|
|
398
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
399
360
|
:type execution_context: int | str | None
|
|
400
361
|
:type undo: bool | None
|
|
401
362
|
"""
|
bpy/ops/marker/__init__.pyi
CHANGED
|
@@ -1,42 +1,30 @@
|
|
|
1
1
|
import typing
|
|
2
2
|
import collections.abc
|
|
3
3
|
import typing_extensions
|
|
4
|
-
import bpy.types
|
|
5
4
|
|
|
6
|
-
def add(
|
|
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 add(execution_context: int | str | None = None, undo: bool | None = None):
|
|
11
6
|
"""Add a new time marker
|
|
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 camera_bind(
|
|
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 camera_bind(execution_context: int | str | None = None, undo: bool | None = None):
|
|
23
13
|
"""Bind the selected camera to a marker on the current frame
|
|
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
19
|
def delete(
|
|
31
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
32
20
|
execution_context: int | str | None = None,
|
|
33
21
|
undo: bool | None = None,
|
|
22
|
+
/,
|
|
34
23
|
*,
|
|
35
24
|
confirm: bool | None = True,
|
|
36
25
|
):
|
|
37
26
|
"""Delete selected time marker(s)
|
|
38
27
|
|
|
39
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
40
28
|
:type execution_context: int | str | None
|
|
41
29
|
:type undo: bool | None
|
|
42
30
|
:param confirm: Confirm, Prompt for confirmation
|
|
@@ -44,15 +32,14 @@ def delete(
|
|
|
44
32
|
"""
|
|
45
33
|
|
|
46
34
|
def duplicate(
|
|
47
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
48
35
|
execution_context: int | str | None = None,
|
|
49
36
|
undo: bool | None = None,
|
|
37
|
+
/,
|
|
50
38
|
*,
|
|
51
39
|
frames: int | None = 0,
|
|
52
40
|
):
|
|
53
41
|
"""Duplicate selected time marker(s)
|
|
54
42
|
|
|
55
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
56
43
|
:type execution_context: int | str | None
|
|
57
44
|
:type undo: bool | None
|
|
58
45
|
:param frames: Frames
|
|
@@ -60,15 +47,14 @@ def duplicate(
|
|
|
60
47
|
"""
|
|
61
48
|
|
|
62
49
|
def make_links_scene(
|
|
63
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
64
50
|
execution_context: int | str | None = None,
|
|
65
51
|
undo: bool | None = None,
|
|
52
|
+
/,
|
|
66
53
|
*,
|
|
67
54
|
scene: str | None = "",
|
|
68
55
|
):
|
|
69
56
|
"""Copy selected markers to another scene
|
|
70
57
|
|
|
71
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
72
58
|
:type execution_context: int | str | None
|
|
73
59
|
:type undo: bool | None
|
|
74
60
|
:param scene: Scene
|
|
@@ -76,16 +62,15 @@ def make_links_scene(
|
|
|
76
62
|
"""
|
|
77
63
|
|
|
78
64
|
def move(
|
|
79
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
80
65
|
execution_context: int | str | None = None,
|
|
81
66
|
undo: bool | None = None,
|
|
67
|
+
/,
|
|
82
68
|
*,
|
|
83
69
|
frames: int | None = 0,
|
|
84
70
|
tweak: bool | None = False,
|
|
85
71
|
):
|
|
86
72
|
"""Move selected time marker(s)
|
|
87
73
|
|
|
88
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
89
74
|
:type execution_context: int | str | None
|
|
90
75
|
:type undo: bool | None
|
|
91
76
|
:param frames: Frames
|
|
@@ -95,15 +80,14 @@ def move(
|
|
|
95
80
|
"""
|
|
96
81
|
|
|
97
82
|
def rename(
|
|
98
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
99
83
|
execution_context: int | str | None = None,
|
|
100
84
|
undo: bool | None = None,
|
|
85
|
+
/,
|
|
101
86
|
*,
|
|
102
87
|
name: str = "RenamedMarker",
|
|
103
88
|
):
|
|
104
89
|
"""Rename first selected time marker
|
|
105
90
|
|
|
106
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
107
91
|
:type execution_context: int | str | None
|
|
108
92
|
:type undo: bool | None
|
|
109
93
|
:param name: Name, New name for marker
|
|
@@ -111,9 +95,9 @@ def rename(
|
|
|
111
95
|
"""
|
|
112
96
|
|
|
113
97
|
def select(
|
|
114
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
115
98
|
execution_context: int | str | None = None,
|
|
116
99
|
undo: bool | None = None,
|
|
100
|
+
/,
|
|
117
101
|
*,
|
|
118
102
|
wait_to_deselect_others: bool | None = False,
|
|
119
103
|
mouse_x: int | None = 0,
|
|
@@ -123,7 +107,6 @@ def select(
|
|
|
123
107
|
):
|
|
124
108
|
"""Select time marker(s)
|
|
125
109
|
|
|
126
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
127
110
|
:type execution_context: int | str | None
|
|
128
111
|
:type undo: bool | None
|
|
129
112
|
:param wait_to_deselect_others: Wait to Deselect Others
|
|
@@ -139,15 +122,14 @@ def select(
|
|
|
139
122
|
"""
|
|
140
123
|
|
|
141
124
|
def select_all(
|
|
142
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
143
125
|
execution_context: int | str | None = None,
|
|
144
126
|
undo: bool | None = None,
|
|
127
|
+
/,
|
|
145
128
|
*,
|
|
146
129
|
action: typing.Literal["TOGGLE", "SELECT", "DESELECT", "INVERT"] | None = "TOGGLE",
|
|
147
130
|
):
|
|
148
131
|
"""Change selection of all time markers
|
|
149
132
|
|
|
150
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
151
133
|
:type execution_context: int | str | None
|
|
152
134
|
:type undo: bool | None
|
|
153
135
|
:param action: Action, Selection action to execute
|
|
@@ -167,9 +149,9 @@ def select_all(
|
|
|
167
149
|
"""
|
|
168
150
|
|
|
169
151
|
def select_box(
|
|
170
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
171
152
|
execution_context: int | str | None = None,
|
|
172
153
|
undo: bool | None = None,
|
|
154
|
+
/,
|
|
173
155
|
*,
|
|
174
156
|
xmin: int | None = 0,
|
|
175
157
|
xmax: int | None = 0,
|
|
@@ -181,7 +163,6 @@ def select_box(
|
|
|
181
163
|
):
|
|
182
164
|
"""Select all time markers using box selection
|
|
183
165
|
|
|
184
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
185
166
|
:type execution_context: int | str | None
|
|
186
167
|
:type undo: bool | None
|
|
187
168
|
:param xmin: X Min
|
|
@@ -210,16 +191,15 @@ def select_box(
|
|
|
210
191
|
"""
|
|
211
192
|
|
|
212
193
|
def select_leftright(
|
|
213
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
214
194
|
execution_context: int | str | None = None,
|
|
215
195
|
undo: bool | None = None,
|
|
196
|
+
/,
|
|
216
197
|
*,
|
|
217
198
|
mode: typing.Literal["LEFT", "RIGHT"] | None = "LEFT",
|
|
218
199
|
extend: bool | None = False,
|
|
219
200
|
):
|
|
220
201
|
"""Select markers on and left/right of the current frame
|
|
221
202
|
|
|
222
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
223
203
|
:type execution_context: int | str | None
|
|
224
204
|
:type undo: bool | None
|
|
225
205
|
:param mode: Mode
|