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/scene/__init__.pyi
CHANGED
|
@@ -1,88 +1,73 @@
|
|
|
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
|
-
def delete(
|
|
8
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
9
|
-
execution_context: int | str | None = None,
|
|
10
|
-
undo: bool | None = None,
|
|
11
|
-
):
|
|
6
|
+
def delete(execution_context: int | str | None = None, undo: bool | None = None):
|
|
12
7
|
"""Delete active scene
|
|
13
8
|
|
|
14
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
15
9
|
:type execution_context: int | str | None
|
|
16
10
|
:type undo: bool | None
|
|
17
11
|
"""
|
|
18
12
|
|
|
19
13
|
def freestyle_add_edge_marks_to_keying_set(
|
|
20
|
-
|
|
21
|
-
execution_context: int | str | None = None,
|
|
22
|
-
undo: bool | None = None,
|
|
14
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
23
15
|
):
|
|
24
16
|
"""Add the data paths to the Freestyle Edge Mark property of selected edges to the active keying set
|
|
25
17
|
|
|
26
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
27
18
|
:type execution_context: int | str | None
|
|
28
19
|
:type undo: bool | None
|
|
29
20
|
"""
|
|
30
21
|
|
|
31
22
|
def freestyle_add_face_marks_to_keying_set(
|
|
32
|
-
|
|
33
|
-
execution_context: int | str | None = None,
|
|
34
|
-
undo: bool | None = None,
|
|
23
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
35
24
|
):
|
|
36
25
|
"""Add the data paths to the Freestyle Face Mark property of selected polygons to the active keying set
|
|
37
26
|
|
|
38
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
39
27
|
:type execution_context: int | str | None
|
|
40
28
|
:type undo: bool | None
|
|
41
29
|
"""
|
|
42
30
|
|
|
43
31
|
def freestyle_alpha_modifier_add(
|
|
44
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
45
32
|
execution_context: int | str | None = None,
|
|
46
33
|
undo: bool | None = None,
|
|
34
|
+
/,
|
|
47
35
|
*,
|
|
48
|
-
type: bpy.
|
|
36
|
+
type: bpy._typing.rna_enums.LinestyleAlphaModifierTypeItems | None = "ALONG_STROKE",
|
|
49
37
|
):
|
|
50
38
|
"""Add an alpha transparency modifier to the line style associated with the active lineset
|
|
51
39
|
|
|
52
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
53
40
|
:type execution_context: int | str | None
|
|
54
41
|
:type undo: bool | None
|
|
55
42
|
:param type: Type
|
|
56
|
-
:type type: bpy.
|
|
43
|
+
:type type: bpy._typing.rna_enums.LinestyleAlphaModifierTypeItems | None
|
|
57
44
|
"""
|
|
58
45
|
|
|
59
46
|
def freestyle_color_modifier_add(
|
|
60
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
61
47
|
execution_context: int | str | None = None,
|
|
62
48
|
undo: bool | None = None,
|
|
49
|
+
/,
|
|
63
50
|
*,
|
|
64
|
-
type: bpy.
|
|
51
|
+
type: bpy._typing.rna_enums.LinestyleColorModifierTypeItems | None = "ALONG_STROKE",
|
|
65
52
|
):
|
|
66
53
|
"""Add a line color modifier to the line style associated with the active lineset
|
|
67
54
|
|
|
68
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
69
55
|
:type execution_context: int | str | None
|
|
70
56
|
:type undo: bool | None
|
|
71
57
|
:param type: Type
|
|
72
|
-
:type type: bpy.
|
|
58
|
+
:type type: bpy._typing.rna_enums.LinestyleColorModifierTypeItems | None
|
|
73
59
|
"""
|
|
74
60
|
|
|
75
61
|
def freestyle_fill_range_by_selection(
|
|
76
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
77
62
|
execution_context: int | str | None = None,
|
|
78
63
|
undo: bool | None = None,
|
|
64
|
+
/,
|
|
79
65
|
*,
|
|
80
66
|
type: typing.Literal["COLOR", "ALPHA", "THICKNESS"] | None = "COLOR",
|
|
81
67
|
name: str = "",
|
|
82
68
|
):
|
|
83
69
|
"""Fill the Range Min/Max entries by the min/max distance between selected mesh objects and the source object (either a user-specified object or the active camera)
|
|
84
70
|
|
|
85
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
86
71
|
:type execution_context: int | str | None
|
|
87
72
|
:type undo: bool | None
|
|
88
73
|
:param type: Type, Type of the modifier to work on
|
|
@@ -101,55 +86,47 @@ def freestyle_fill_range_by_selection(
|
|
|
101
86
|
"""
|
|
102
87
|
|
|
103
88
|
def freestyle_geometry_modifier_add(
|
|
104
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
105
89
|
execution_context: int | str | None = None,
|
|
106
90
|
undo: bool | None = None,
|
|
91
|
+
/,
|
|
107
92
|
*,
|
|
108
|
-
type: bpy.
|
|
93
|
+
type: bpy._typing.rna_enums.LinestyleGeometryModifierTypeItems | None = "2D_OFFSET",
|
|
109
94
|
):
|
|
110
95
|
"""Add a stroke geometry modifier to the line style associated with the active lineset
|
|
111
96
|
|
|
112
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
113
97
|
:type execution_context: int | str | None
|
|
114
98
|
:type undo: bool | None
|
|
115
99
|
:param type: Type
|
|
116
|
-
:type type: bpy.
|
|
100
|
+
:type type: bpy._typing.rna_enums.LinestyleGeometryModifierTypeItems | None
|
|
117
101
|
"""
|
|
118
102
|
|
|
119
103
|
def freestyle_lineset_add(
|
|
120
|
-
|
|
121
|
-
execution_context: int | str | None = None,
|
|
122
|
-
undo: bool | None = None,
|
|
104
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
123
105
|
):
|
|
124
106
|
"""Add a line set into the list of line sets
|
|
125
107
|
|
|
126
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
127
108
|
:type execution_context: int | str | None
|
|
128
109
|
:type undo: bool | None
|
|
129
110
|
"""
|
|
130
111
|
|
|
131
112
|
def freestyle_lineset_copy(
|
|
132
|
-
|
|
133
|
-
execution_context: int | str | None = None,
|
|
134
|
-
undo: bool | None = None,
|
|
113
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
135
114
|
):
|
|
136
115
|
"""Copy the active line set to the internal clipboard
|
|
137
116
|
|
|
138
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
139
117
|
:type execution_context: int | str | None
|
|
140
118
|
:type undo: bool | None
|
|
141
119
|
"""
|
|
142
120
|
|
|
143
121
|
def freestyle_lineset_move(
|
|
144
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
145
122
|
execution_context: int | str | None = None,
|
|
146
123
|
undo: bool | None = None,
|
|
124
|
+
/,
|
|
147
125
|
*,
|
|
148
126
|
direction: typing.Literal["UP", "DOWN"] | None = "UP",
|
|
149
127
|
):
|
|
150
128
|
"""Change the position of the active line set within the list of line sets
|
|
151
129
|
|
|
152
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
153
130
|
:type execution_context: int | str | None
|
|
154
131
|
:type undo: bool | None
|
|
155
132
|
:param direction: Direction, Direction to move the active line set towards
|
|
@@ -157,63 +134,50 @@ def freestyle_lineset_move(
|
|
|
157
134
|
"""
|
|
158
135
|
|
|
159
136
|
def freestyle_lineset_paste(
|
|
160
|
-
|
|
161
|
-
execution_context: int | str | None = None,
|
|
162
|
-
undo: bool | None = None,
|
|
137
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
163
138
|
):
|
|
164
139
|
"""Paste the internal clipboard content to the active line set
|
|
165
140
|
|
|
166
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
167
141
|
:type execution_context: int | str | None
|
|
168
142
|
:type undo: bool | None
|
|
169
143
|
"""
|
|
170
144
|
|
|
171
145
|
def freestyle_lineset_remove(
|
|
172
|
-
|
|
173
|
-
execution_context: int | str | None = None,
|
|
174
|
-
undo: bool | None = None,
|
|
146
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
175
147
|
):
|
|
176
148
|
"""Remove the active line set from the list of line sets
|
|
177
149
|
|
|
178
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
179
150
|
:type execution_context: int | str | None
|
|
180
151
|
:type undo: bool | None
|
|
181
152
|
"""
|
|
182
153
|
|
|
183
154
|
def freestyle_linestyle_new(
|
|
184
|
-
|
|
185
|
-
execution_context: int | str | None = None,
|
|
186
|
-
undo: bool | None = None,
|
|
155
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
187
156
|
):
|
|
188
157
|
"""Create a new line style, reusable by multiple line sets
|
|
189
158
|
|
|
190
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
191
159
|
:type execution_context: int | str | None
|
|
192
160
|
:type undo: bool | None
|
|
193
161
|
"""
|
|
194
162
|
|
|
195
163
|
def freestyle_modifier_copy(
|
|
196
|
-
|
|
197
|
-
execution_context: int | str | None = None,
|
|
198
|
-
undo: bool | None = None,
|
|
164
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
199
165
|
):
|
|
200
166
|
"""Duplicate the modifier within the list of modifiers
|
|
201
167
|
|
|
202
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
203
168
|
:type execution_context: int | str | None
|
|
204
169
|
:type undo: bool | None
|
|
205
170
|
"""
|
|
206
171
|
|
|
207
172
|
def freestyle_modifier_move(
|
|
208
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
209
173
|
execution_context: int | str | None = None,
|
|
210
174
|
undo: bool | None = None,
|
|
175
|
+
/,
|
|
211
176
|
*,
|
|
212
177
|
direction: typing.Literal["UP", "DOWN"] | None = "UP",
|
|
213
178
|
):
|
|
214
179
|
"""Move the modifier within the list of modifiers
|
|
215
180
|
|
|
216
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
217
181
|
:type execution_context: int | str | None
|
|
218
182
|
:type undo: bool | None
|
|
219
183
|
:param direction: Direction, Direction to move the chosen modifier towards
|
|
@@ -221,39 +185,32 @@ def freestyle_modifier_move(
|
|
|
221
185
|
"""
|
|
222
186
|
|
|
223
187
|
def freestyle_modifier_remove(
|
|
224
|
-
|
|
225
|
-
execution_context: int | str | None = None,
|
|
226
|
-
undo: bool | None = None,
|
|
188
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
227
189
|
):
|
|
228
190
|
"""Remove the modifier from the list of modifiers
|
|
229
191
|
|
|
230
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
231
192
|
:type execution_context: int | str | None
|
|
232
193
|
:type undo: bool | None
|
|
233
194
|
"""
|
|
234
195
|
|
|
235
196
|
def freestyle_module_add(
|
|
236
|
-
|
|
237
|
-
execution_context: int | str | None = None,
|
|
238
|
-
undo: bool | None = None,
|
|
197
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
239
198
|
):
|
|
240
199
|
"""Add a style module into the list of modules
|
|
241
200
|
|
|
242
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
243
201
|
:type execution_context: int | str | None
|
|
244
202
|
:type undo: bool | None
|
|
245
203
|
"""
|
|
246
204
|
|
|
247
205
|
def freestyle_module_move(
|
|
248
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
249
206
|
execution_context: int | str | None = None,
|
|
250
207
|
undo: bool | None = None,
|
|
208
|
+
/,
|
|
251
209
|
*,
|
|
252
210
|
direction: typing.Literal["UP", "DOWN"] | None = "UP",
|
|
253
211
|
):
|
|
254
212
|
"""Change the position of the style module within in the list of style modules
|
|
255
213
|
|
|
256
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
257
214
|
:type execution_context: int | str | None
|
|
258
215
|
:type undo: bool | None
|
|
259
216
|
:param direction: Direction, Direction to move the chosen style module towards
|
|
@@ -261,16 +218,15 @@ def freestyle_module_move(
|
|
|
261
218
|
"""
|
|
262
219
|
|
|
263
220
|
def freestyle_module_open(
|
|
264
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
265
221
|
execution_context: int | str | None = None,
|
|
266
222
|
undo: bool | None = None,
|
|
223
|
+
/,
|
|
267
224
|
*,
|
|
268
225
|
filepath: str = "",
|
|
269
226
|
make_internal: bool | None = True,
|
|
270
227
|
):
|
|
271
228
|
"""Open a style module file
|
|
272
229
|
|
|
273
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
274
230
|
:type execution_context: int | str | None
|
|
275
231
|
:type undo: bool | None
|
|
276
232
|
:param filepath: filepath
|
|
@@ -280,61 +236,52 @@ def freestyle_module_open(
|
|
|
280
236
|
"""
|
|
281
237
|
|
|
282
238
|
def freestyle_module_remove(
|
|
283
|
-
|
|
284
|
-
execution_context: int | str | None = None,
|
|
285
|
-
undo: bool | None = None,
|
|
239
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
286
240
|
):
|
|
287
241
|
"""Remove the style module from the stack
|
|
288
242
|
|
|
289
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
290
243
|
:type execution_context: int | str | None
|
|
291
244
|
:type undo: bool | None
|
|
292
245
|
"""
|
|
293
246
|
|
|
294
247
|
def freestyle_stroke_material_create(
|
|
295
|
-
|
|
296
|
-
execution_context: int | str | None = None,
|
|
297
|
-
undo: bool | None = None,
|
|
248
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
298
249
|
):
|
|
299
250
|
"""Create Freestyle stroke material for testing
|
|
300
251
|
|
|
301
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
302
252
|
:type execution_context: int | str | None
|
|
303
253
|
:type undo: bool | None
|
|
304
254
|
"""
|
|
305
255
|
|
|
306
256
|
def freestyle_thickness_modifier_add(
|
|
307
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
308
257
|
execution_context: int | str | None = None,
|
|
309
258
|
undo: bool | None = None,
|
|
259
|
+
/,
|
|
310
260
|
*,
|
|
311
|
-
type: bpy.
|
|
261
|
+
type: bpy._typing.rna_enums.LinestyleThicknessModifierTypeItems
|
|
262
|
+
| None = "ALONG_STROKE",
|
|
312
263
|
):
|
|
313
264
|
"""Add a line thickness modifier to the line style associated with the active lineset
|
|
314
265
|
|
|
315
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
316
266
|
:type execution_context: int | str | None
|
|
317
267
|
:type undo: bool | None
|
|
318
268
|
:param type: Type
|
|
319
|
-
:type type: bpy.
|
|
269
|
+
:type type: bpy._typing.rna_enums.LinestyleThicknessModifierTypeItems | None
|
|
320
270
|
"""
|
|
321
271
|
|
|
322
272
|
def gltf2_action_filter_refresh(
|
|
323
|
-
|
|
324
|
-
execution_context: int | str | None = None,
|
|
325
|
-
undo: bool | None = None,
|
|
273
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
326
274
|
):
|
|
327
275
|
"""Refresh list of actions
|
|
328
276
|
|
|
329
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
330
277
|
:type execution_context: int | str | None
|
|
331
278
|
:type undo: bool | None
|
|
332
279
|
"""
|
|
333
280
|
|
|
334
281
|
def gpencil_brush_preset_add(
|
|
335
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
336
282
|
execution_context: int | str | None = None,
|
|
337
283
|
undo: bool | None = None,
|
|
284
|
+
/,
|
|
338
285
|
*,
|
|
339
286
|
name: str = "",
|
|
340
287
|
remove_name: bool | None = False,
|
|
@@ -342,7 +289,6 @@ def gpencil_brush_preset_add(
|
|
|
342
289
|
):
|
|
343
290
|
"""Add or remove grease pencil brush preset
|
|
344
291
|
|
|
345
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
346
292
|
:type execution_context: int | str | None
|
|
347
293
|
:type undo: bool | None
|
|
348
294
|
:param name: Name, Name of the preset, used to make the path name
|
|
@@ -354,9 +300,9 @@ def gpencil_brush_preset_add(
|
|
|
354
300
|
"""
|
|
355
301
|
|
|
356
302
|
def gpencil_material_preset_add(
|
|
357
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
358
303
|
execution_context: int | str | None = None,
|
|
359
304
|
undo: bool | None = None,
|
|
305
|
+
/,
|
|
360
306
|
*,
|
|
361
307
|
name: str = "",
|
|
362
308
|
remove_name: bool | None = False,
|
|
@@ -364,7 +310,6 @@ def gpencil_material_preset_add(
|
|
|
364
310
|
):
|
|
365
311
|
"""Add or remove Grease Pencil material preset
|
|
366
312
|
|
|
367
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
368
313
|
:type execution_context: int | str | None
|
|
369
314
|
:type undo: bool | None
|
|
370
315
|
:param name: Name, Name of the preset, used to make the path name
|
|
@@ -376,15 +321,14 @@ def gpencil_material_preset_add(
|
|
|
376
321
|
"""
|
|
377
322
|
|
|
378
323
|
def new(
|
|
379
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
380
324
|
execution_context: int | str | None = None,
|
|
381
325
|
undo: bool | None = None,
|
|
326
|
+
/,
|
|
382
327
|
*,
|
|
383
328
|
type: typing.Literal["NEW", "EMPTY", "LINK_COPY", "FULL_COPY"] | None = "NEW",
|
|
384
329
|
):
|
|
385
330
|
"""Add new scene by type
|
|
386
331
|
|
|
387
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
388
332
|
:type execution_context: int | str | None
|
|
389
333
|
:type undo: bool | None
|
|
390
334
|
:param type: Type
|
|
@@ -404,15 +348,14 @@ def new(
|
|
|
404
348
|
"""
|
|
405
349
|
|
|
406
350
|
def new_sequencer(
|
|
407
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
408
351
|
execution_context: int | str | None = None,
|
|
409
352
|
undo: bool | None = None,
|
|
353
|
+
/,
|
|
410
354
|
*,
|
|
411
355
|
type: typing.Literal["NEW", "EMPTY", "LINK_COPY", "FULL_COPY"] | None = "NEW",
|
|
412
356
|
):
|
|
413
357
|
"""Add new scene by type in the sequence editor and assign to active strip
|
|
414
358
|
|
|
415
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
416
359
|
:type execution_context: int | str | None
|
|
417
360
|
:type undo: bool | None
|
|
418
361
|
:param type: Type
|
|
@@ -432,39 +375,32 @@ def new_sequencer(
|
|
|
432
375
|
"""
|
|
433
376
|
|
|
434
377
|
def render_view_add(
|
|
435
|
-
|
|
436
|
-
execution_context: int | str | None = None,
|
|
437
|
-
undo: bool | None = None,
|
|
378
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
438
379
|
):
|
|
439
380
|
"""Add a render view
|
|
440
381
|
|
|
441
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
442
382
|
:type execution_context: int | str | None
|
|
443
383
|
:type undo: bool | None
|
|
444
384
|
"""
|
|
445
385
|
|
|
446
386
|
def render_view_remove(
|
|
447
|
-
|
|
448
|
-
execution_context: int | str | None = None,
|
|
449
|
-
undo: bool | None = None,
|
|
387
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
450
388
|
):
|
|
451
389
|
"""Remove the selected render view
|
|
452
390
|
|
|
453
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
454
391
|
:type execution_context: int | str | None
|
|
455
392
|
:type undo: bool | None
|
|
456
393
|
"""
|
|
457
394
|
|
|
458
395
|
def view_layer_add(
|
|
459
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
460
396
|
execution_context: int | str | None = None,
|
|
461
397
|
undo: bool | None = None,
|
|
398
|
+
/,
|
|
462
399
|
*,
|
|
463
400
|
type: typing.Literal["NEW", "COPY", "EMPTY"] | None = "NEW",
|
|
464
401
|
):
|
|
465
402
|
"""Add a view layer
|
|
466
403
|
|
|
467
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
468
404
|
:type execution_context: int | str | None
|
|
469
405
|
:type undo: bool | None
|
|
470
406
|
:param type: Type
|
|
@@ -481,27 +417,23 @@ def view_layer_add(
|
|
|
481
417
|
"""
|
|
482
418
|
|
|
483
419
|
def view_layer_add_aov(
|
|
484
|
-
|
|
485
|
-
execution_context: int | str | None = None,
|
|
486
|
-
undo: bool | None = None,
|
|
420
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
487
421
|
):
|
|
488
422
|
"""Add a Shader AOV
|
|
489
423
|
|
|
490
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
491
424
|
:type execution_context: int | str | None
|
|
492
425
|
:type undo: bool | None
|
|
493
426
|
"""
|
|
494
427
|
|
|
495
428
|
def view_layer_add_lightgroup(
|
|
496
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
497
429
|
execution_context: int | str | None = None,
|
|
498
430
|
undo: bool | None = None,
|
|
431
|
+
/,
|
|
499
432
|
*,
|
|
500
433
|
name: str = "",
|
|
501
434
|
):
|
|
502
435
|
"""Add a Light Group
|
|
503
436
|
|
|
504
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
505
437
|
:type execution_context: int | str | None
|
|
506
438
|
:type undo: bool | None
|
|
507
439
|
:param name: Name, Name of newly created lightgroup
|
|
@@ -509,61 +441,46 @@ def view_layer_add_lightgroup(
|
|
|
509
441
|
"""
|
|
510
442
|
|
|
511
443
|
def view_layer_add_used_lightgroups(
|
|
512
|
-
|
|
513
|
-
execution_context: int | str | None = None,
|
|
514
|
-
undo: bool | None = None,
|
|
444
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
515
445
|
):
|
|
516
446
|
"""Add all used Light Groups
|
|
517
447
|
|
|
518
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
519
448
|
:type execution_context: int | str | None
|
|
520
449
|
:type undo: bool | None
|
|
521
450
|
"""
|
|
522
451
|
|
|
523
452
|
def view_layer_remove(
|
|
524
|
-
|
|
525
|
-
execution_context: int | str | None = None,
|
|
526
|
-
undo: bool | None = None,
|
|
453
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
527
454
|
):
|
|
528
455
|
"""Remove the selected view layer
|
|
529
456
|
|
|
530
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
531
457
|
:type execution_context: int | str | None
|
|
532
458
|
:type undo: bool | None
|
|
533
459
|
"""
|
|
534
460
|
|
|
535
461
|
def view_layer_remove_aov(
|
|
536
|
-
|
|
537
|
-
execution_context: int | str | None = None,
|
|
538
|
-
undo: bool | None = None,
|
|
462
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
539
463
|
):
|
|
540
464
|
"""Remove Active AOV
|
|
541
465
|
|
|
542
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
543
466
|
:type execution_context: int | str | None
|
|
544
467
|
:type undo: bool | None
|
|
545
468
|
"""
|
|
546
469
|
|
|
547
470
|
def view_layer_remove_lightgroup(
|
|
548
|
-
|
|
549
|
-
execution_context: int | str | None = None,
|
|
550
|
-
undo: bool | None = None,
|
|
471
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
551
472
|
):
|
|
552
473
|
"""Remove Active Lightgroup
|
|
553
474
|
|
|
554
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
555
475
|
:type execution_context: int | str | None
|
|
556
476
|
:type undo: bool | None
|
|
557
477
|
"""
|
|
558
478
|
|
|
559
479
|
def view_layer_remove_unused_lightgroups(
|
|
560
|
-
|
|
561
|
-
execution_context: int | str | None = None,
|
|
562
|
-
undo: bool | None = None,
|
|
480
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
563
481
|
):
|
|
564
482
|
"""Remove all unused Light Groups
|
|
565
483
|
|
|
566
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
567
484
|
:type execution_context: int | str | None
|
|
568
485
|
:type undo: bool | None
|
|
569
486
|
"""
|