fake-bpy-module 20240214__py3-none-any.whl → 20240216__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_console_utils/autocomplete/__init__.pyi +1 -1
- bl_i18n_utils/__init__.pyi +3 -3
- bl_keymap_utils/__init__.pyi +3 -3
- bl_operators/__init__.pyi +23 -23
- bl_ui/__init__.pyi +58 -58
- bpy/__init__.pyi +2 -2
- bpy/app/__init__.pyi +2 -2
- bpy/ops/__init__.pyi +65 -65
- bpy/ops/grease_pencil/__init__.pyi +20 -0
- bpy/ops/object/__init__.pyi +1 -1
- bpy/types/__init__.pyi +530 -188
- bpy_extras/__init__.pyi +2 -2
- bpy_extras/anim_utils/__init__.pyi +2 -2
- {fake_bpy_module-20240214.dist-info → fake_bpy_module-20240216.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240214.dist-info → fake_bpy_module-20240216.dist-info}/RECORD +17 -17
- {fake_bpy_module-20240214.dist-info → fake_bpy_module-20240216.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240214.dist-info → fake_bpy_module-20240216.dist-info}/top_level.txt +0 -0
bpy/types/__init__.pyi
CHANGED
|
@@ -2,94 +2,94 @@ import sys
|
|
|
2
2
|
import typing
|
|
3
3
|
import mathutils
|
|
4
4
|
import bpy
|
|
5
|
-
import
|
|
6
|
-
import bl_ui.node_add_menu_compositor
|
|
7
|
-
import bl_ui.properties_data_light
|
|
5
|
+
import bl_operators.presets
|
|
8
6
|
import bl_ui.properties_data_bone
|
|
7
|
+
import bl_ui.properties_world
|
|
8
|
+
import bl_operators.freestyle
|
|
9
|
+
import bl_ui.properties_physics_softbody
|
|
9
10
|
import bl_ui.properties_data_mesh
|
|
10
|
-
import bl_ui.
|
|
11
|
-
import
|
|
12
|
-
import
|
|
13
|
-
import bl_ui.space_statusbar
|
|
11
|
+
import bl_ui.properties_data_light
|
|
12
|
+
import bl_operators.anim
|
|
13
|
+
import bl_ui.properties_physics_dynamicpaint
|
|
14
14
|
import bl_ui.space_graph
|
|
15
|
-
import bl_ui.
|
|
16
|
-
import bl_ui
|
|
17
|
-
import bl_ui.
|
|
18
|
-
import bl_ui.
|
|
15
|
+
import bl_ui.properties_data_lattice
|
|
16
|
+
import bl_ui
|
|
17
|
+
import bl_ui.properties_particle
|
|
18
|
+
import bl_ui.properties_data_shaderfx
|
|
19
|
+
import bl_operators.object
|
|
20
|
+
import bl_ui.properties_object
|
|
21
|
+
import bl_ui.anim
|
|
19
22
|
import bl_ui.node_add_menu_texture
|
|
20
|
-
import bl_ui.space_dopesheet
|
|
21
|
-
import bl_ui.space_clip
|
|
22
|
-
import bl_operators.node
|
|
23
|
-
import bl_ui.space_sequencer
|
|
24
|
-
import bl_ui.properties_data_speaker
|
|
25
|
-
import bl_ui.space_userpref
|
|
26
|
-
import bl_ui.space_image
|
|
27
|
-
import bl_ui.space_node
|
|
28
|
-
import bl_ui.node_add_menu_geometry
|
|
29
|
-
import bl_ui.space_view3d_toolbar
|
|
30
|
-
import bl_ui.properties_physics_rigidbody_constraint
|
|
31
|
-
import bl_ui.properties_workspace
|
|
32
|
-
import bl_ui.properties_data_curve
|
|
33
|
-
import bl_ui.properties_data_lightprobe
|
|
34
23
|
import bl_ui.properties_physics_common
|
|
35
|
-
import bl_ui.properties_physics_softbody
|
|
36
|
-
import bl_ui.properties_constraint
|
|
37
|
-
import bl_ui.properties_collection
|
|
38
|
-
import bl_ui.properties_mask_common
|
|
39
|
-
import bl_operators.freestyle
|
|
40
|
-
import bl_ui.properties_data_metaball
|
|
41
|
-
import bl_ui.properties_data_curves
|
|
42
24
|
import bl_ui.generic_ui_list
|
|
43
|
-
import bl_ui.space_nla
|
|
44
|
-
import bl_ui.properties_particle
|
|
45
|
-
import bl_ui.space_topbar
|
|
46
|
-
import bl_ui.properties_data_empty
|
|
47
|
-
import bl_ui.properties_data_camera
|
|
48
|
-
import bl_ui.properties_data_pointcloud
|
|
49
|
-
import bl_ui.properties_data_shaderfx
|
|
50
|
-
import bl_ui.properties_physics_fluid
|
|
51
|
-
import bl_ui.properties_data_lattice
|
|
52
25
|
import bl_ui.space_filebrowser
|
|
53
|
-
import bl_ui.properties_scene
|
|
54
|
-
import bl_operators.assets
|
|
55
|
-
import bl_ui.properties_physics_field
|
|
56
|
-
import bl_ui.properties_data_modifier
|
|
57
|
-
import bl_ui.space_toolsystem_common
|
|
58
|
-
import bl_ui.properties_paint_common
|
|
59
26
|
import bl_ui.properties_view_layer
|
|
60
|
-
import
|
|
27
|
+
import bl_ui.node_add_menu_geometry
|
|
28
|
+
import bl_ui.properties_workspace
|
|
29
|
+
import bl_ui.node_add_menu_compositor
|
|
61
30
|
import bl_operators.file
|
|
62
|
-
import
|
|
63
|
-
import
|
|
64
|
-
import bl_ui.
|
|
65
|
-
import bl_ui.
|
|
66
|
-
import bl_ui.
|
|
31
|
+
import bl_ui.properties_data_modifier
|
|
32
|
+
import bl_ui.space_statusbar
|
|
33
|
+
import bl_ui.properties_data_speaker
|
|
34
|
+
import bl_ui.properties_data_curves
|
|
35
|
+
import bl_ui.properties_physics_geometry_nodes
|
|
36
|
+
import bl_operators.userpref
|
|
37
|
+
import bl_ui.properties_collection
|
|
38
|
+
import bl_ui.properties_paint_common
|
|
39
|
+
import bl_ui.space_info
|
|
40
|
+
import bl_operators.constraint
|
|
41
|
+
import bl_ui.space_userpref
|
|
67
42
|
import bl_ui.properties_physics_rigidbody
|
|
68
43
|
import bl_ui.space_time
|
|
69
|
-
import bl_operators.clip
|
|
70
|
-
import bl_ui.anim
|
|
71
|
-
import bl_ui.properties_grease_pencil_common
|
|
72
44
|
import bl_ui.properties_data_armature
|
|
73
|
-
import bl_ui.
|
|
74
|
-
import
|
|
75
|
-
import bl_ui.
|
|
76
|
-
import bl_ui.properties_physics_dynamicpaint
|
|
77
|
-
import bl_ui.space_spreadsheet
|
|
78
|
-
import bl_ui.node_add_menu_shader
|
|
45
|
+
import bl_ui.space_topbar
|
|
46
|
+
import bl_operators.view3d
|
|
47
|
+
import bl_ui.properties_data_camera
|
|
79
48
|
import bl_ui.properties_texture
|
|
80
|
-
import
|
|
81
|
-
import bl_ui.
|
|
82
|
-
import bl_ui.node_add_menu
|
|
83
|
-
import bl_operators.presets
|
|
84
|
-
import bl_ui.properties_output
|
|
85
|
-
import bl_ui.properties_physics_cloth
|
|
49
|
+
import bl_ui.properties_grease_pencil_common
|
|
50
|
+
import bl_ui.properties_data_metaball
|
|
86
51
|
import bl_ui.asset_shelf
|
|
52
|
+
import bl_operators.wm
|
|
53
|
+
import bl_operators.clip
|
|
54
|
+
import bl_ui.properties_data_volume
|
|
55
|
+
import bl_ui.space_text
|
|
56
|
+
import bl_ui.properties_constraint
|
|
57
|
+
import bl_ui.space_image
|
|
58
|
+
import bl_ui.properties_data_lightprobe
|
|
59
|
+
import bl_ui.properties_material_gpencil
|
|
60
|
+
import bl_ui.space_node
|
|
87
61
|
import bl_ui.properties_freestyle
|
|
62
|
+
import bl_ui.space_nla
|
|
63
|
+
import bl_ui.space_properties
|
|
64
|
+
import bl_ui.properties_data_gpencil
|
|
65
|
+
import bl_ui.properties_data_pointcloud
|
|
66
|
+
import bl_ui.properties_output
|
|
67
|
+
import bl_ui.space_view3d_toolbar
|
|
68
|
+
import bl_ui.properties_physics_field
|
|
69
|
+
import bl_ui.properties_render
|
|
70
|
+
import bl_operators.node
|
|
71
|
+
import bl_ui.space_sequencer
|
|
72
|
+
import bl_ui.properties_data_empty
|
|
73
|
+
import bl_ui.properties_material
|
|
88
74
|
import bl_ui.properties_data_grease_pencil
|
|
75
|
+
import bl_ui.space_clip
|
|
76
|
+
import bl_ui.properties_physics_cloth
|
|
77
|
+
import bl_ui.space_spreadsheet
|
|
78
|
+
import bl_ui.node_add_menu_shader
|
|
79
|
+
import bl_operators.assets
|
|
80
|
+
import bl_ui.properties_physics_fluid
|
|
81
|
+
import bl_ui.properties_scene
|
|
89
82
|
import bl_ui.space_outliner
|
|
90
|
-
import
|
|
91
|
-
import bl_ui.space_console
|
|
83
|
+
import bl_ui.space_view3d
|
|
92
84
|
import bl_operators.spreadsheet
|
|
85
|
+
import bl_ui.node_add_menu
|
|
86
|
+
import bl_ui.space_console
|
|
87
|
+
import bl_ui.space_toolsystem_common
|
|
88
|
+
import bl_ui.properties_mask_common
|
|
89
|
+
import bl_ui.properties_data_curve
|
|
90
|
+
import bl_ui.space_dopesheet
|
|
91
|
+
import bl_ui.properties_physics_rigidbody_constraint
|
|
92
|
+
import bl_ui.space_toolsystem_toolbar
|
|
93
93
|
|
|
94
94
|
GenericType = typing.TypeVar("GenericType")
|
|
95
95
|
|
|
@@ -6857,10 +6857,10 @@ class Context(bpy_struct):
|
|
|
6857
6857
|
:type: 'UIList'
|
|
6858
6858
|
"""
|
|
6859
6859
|
|
|
6860
|
-
property: typing.Union[
|
|
6860
|
+
property: typing.Union[int, str, "AnyType"]
|
|
6861
6861
|
""" Get the property associated with a hovered button. Returns a tuple of the data-block, data path to the property, and array index.
|
|
6862
6862
|
|
|
6863
|
-
:type: typing.Union[
|
|
6863
|
+
:type: typing.Union[int, str, 'AnyType']
|
|
6864
6864
|
"""
|
|
6865
6865
|
|
|
6866
6866
|
edit_text: "Text"
|
|
@@ -14892,7 +14892,7 @@ class Gizmo(bpy_struct):
|
|
|
14892
14892
|
context: "Context",
|
|
14893
14893
|
event: "Event",
|
|
14894
14894
|
tweak: typing.Optional[typing.Union[typing.Set[str], typing.Set[int]]],
|
|
14895
|
-
) -> typing.Union[typing.Set[
|
|
14895
|
+
) -> typing.Union[typing.Set[int], typing.Set[str]]:
|
|
14896
14896
|
"""
|
|
14897
14897
|
|
|
14898
14898
|
:param context:
|
|
@@ -14901,7 +14901,7 @@ class Gizmo(bpy_struct):
|
|
|
14901
14901
|
:type event: 'Event'
|
|
14902
14902
|
:param tweak: Tweak
|
|
14903
14903
|
:type tweak: typing.Optional[typing.Union[typing.Set[str], typing.Set[int]]]
|
|
14904
|
-
:rtype: typing.Union[typing.Set[
|
|
14904
|
+
:rtype: typing.Union[typing.Set[int], typing.Set[str]]
|
|
14905
14905
|
:return: result
|
|
14906
14906
|
"""
|
|
14907
14907
|
...
|
|
@@ -14909,14 +14909,14 @@ class Gizmo(bpy_struct):
|
|
|
14909
14909
|
def setup(self): ...
|
|
14910
14910
|
def invoke(
|
|
14911
14911
|
self, context: "Context", event: "Event"
|
|
14912
|
-
) -> typing.Union[typing.Set[
|
|
14912
|
+
) -> typing.Union[typing.Set[int], typing.Set[str]]:
|
|
14913
14913
|
"""
|
|
14914
14914
|
|
|
14915
14915
|
:param context:
|
|
14916
14916
|
:type context: 'Context'
|
|
14917
14917
|
:param event:
|
|
14918
14918
|
:type event: 'Event'
|
|
14919
|
-
:rtype: typing.Union[typing.Set[
|
|
14919
|
+
:rtype: typing.Union[typing.Set[int], typing.Set[str]]
|
|
14920
14920
|
:return: result
|
|
14921
14921
|
"""
|
|
14922
14922
|
...
|
|
@@ -17486,10 +17486,10 @@ class KeyingSetInfo(bpy_struct):
|
|
|
17486
17486
|
:type: typing.Union[str, typing.Any]
|
|
17487
17487
|
"""
|
|
17488
17488
|
|
|
17489
|
-
bl_options: typing.Union[typing.Set[
|
|
17489
|
+
bl_options: typing.Union[typing.Set[int], typing.Set[str]]
|
|
17490
17490
|
""" Keying Set options to use when inserting keyframes
|
|
17491
17491
|
|
|
17492
|
-
:type: typing.Union[typing.Set[
|
|
17492
|
+
:type: typing.Union[typing.Set[int], typing.Set[str]]
|
|
17493
17493
|
"""
|
|
17494
17494
|
|
|
17495
17495
|
def poll(self, context: typing.Optional["Context"]) -> bool:
|
|
@@ -17961,10 +17961,10 @@ class Macro(bpy_struct):
|
|
|
17961
17961
|
:type: typing.Union[str, typing.Any]
|
|
17962
17962
|
"""
|
|
17963
17963
|
|
|
17964
|
-
bl_options: typing.Union[typing.Set[
|
|
17964
|
+
bl_options: typing.Union[typing.Set[int], typing.Set[str]]
|
|
17965
17965
|
""" Options for this operator type
|
|
17966
17966
|
|
|
17967
|
-
:type: typing.Union[typing.Set[
|
|
17967
|
+
:type: typing.Union[typing.Set[int], typing.Set[str]]
|
|
17968
17968
|
"""
|
|
17969
17969
|
|
|
17970
17970
|
bl_translation_context: typing.Union[str, typing.Any]
|
|
@@ -17999,13 +17999,13 @@ class Macro(bpy_struct):
|
|
|
17999
17999
|
|
|
18000
18000
|
def report(
|
|
18001
18001
|
self,
|
|
18002
|
-
type: typing.Optional[typing.Union[typing.Set[
|
|
18002
|
+
type: typing.Optional[typing.Union[typing.Set[int], typing.Set[str]]],
|
|
18003
18003
|
message: typing.Union[str, typing.Any],
|
|
18004
18004
|
):
|
|
18005
18005
|
"""report
|
|
18006
18006
|
|
|
18007
18007
|
:param type: Type
|
|
18008
|
-
:type type: typing.Optional[typing.Union[typing.Set[
|
|
18008
|
+
:type type: typing.Optional[typing.Union[typing.Set[int], typing.Set[str]]]
|
|
18009
18009
|
:param message: Report Message
|
|
18010
18010
|
:type message: typing.Union[str, typing.Any]
|
|
18011
18011
|
"""
|
|
@@ -23155,10 +23155,10 @@ class Operator(bpy_struct):
|
|
|
23155
23155
|
:type: typing.Union[str, typing.Any]
|
|
23156
23156
|
"""
|
|
23157
23157
|
|
|
23158
|
-
bl_options: typing.Union[typing.Set[
|
|
23158
|
+
bl_options: typing.Union[typing.Set[int], typing.Set[str]]
|
|
23159
23159
|
""" Options for this operator type
|
|
23160
23160
|
|
|
23161
|
-
:type: typing.Union[typing.Set[
|
|
23161
|
+
:type: typing.Union[typing.Set[int], typing.Set[str]]
|
|
23162
23162
|
"""
|
|
23163
23163
|
|
|
23164
23164
|
bl_translation_context: typing.Union[str, typing.Any]
|
|
@@ -23217,13 +23217,13 @@ class Operator(bpy_struct):
|
|
|
23217
23217
|
|
|
23218
23218
|
def report(
|
|
23219
23219
|
self,
|
|
23220
|
-
type: typing.Optional[typing.Union[typing.Set[
|
|
23220
|
+
type: typing.Optional[typing.Union[typing.Set[int], typing.Set[str]]],
|
|
23221
23221
|
message: typing.Union[str, typing.Any],
|
|
23222
23222
|
):
|
|
23223
23223
|
"""report
|
|
23224
23224
|
|
|
23225
23225
|
:param type: Type
|
|
23226
|
-
:type type: typing.Optional[typing.Union[typing.Set[
|
|
23226
|
+
:type type: typing.Optional[typing.Union[typing.Set[int], typing.Set[str]]]
|
|
23227
23227
|
:param message: Report Message
|
|
23228
23228
|
:type message: typing.Union[str, typing.Any]
|
|
23229
23229
|
"""
|
|
@@ -23249,12 +23249,12 @@ class Operator(bpy_struct):
|
|
|
23249
23249
|
|
|
23250
23250
|
def execute(
|
|
23251
23251
|
self, context: "Context"
|
|
23252
|
-
) -> typing.Union[typing.Set[
|
|
23252
|
+
) -> typing.Union[typing.Set[int], typing.Set[str]]:
|
|
23253
23253
|
"""Execute the operator
|
|
23254
23254
|
|
|
23255
23255
|
:param context:
|
|
23256
23256
|
:type context: 'Context'
|
|
23257
|
-
:rtype: typing.Union[typing.Set[
|
|
23257
|
+
:rtype: typing.Union[typing.Set[int], typing.Set[str]]
|
|
23258
23258
|
:return: result
|
|
23259
23259
|
"""
|
|
23260
23260
|
...
|
|
@@ -23271,28 +23271,28 @@ class Operator(bpy_struct):
|
|
|
23271
23271
|
|
|
23272
23272
|
def invoke(
|
|
23273
23273
|
self, context: "Context", event: "Event"
|
|
23274
|
-
) -> typing.Union[typing.Set[
|
|
23274
|
+
) -> typing.Union[typing.Set[int], typing.Set[str]]:
|
|
23275
23275
|
"""Invoke the operator
|
|
23276
23276
|
|
|
23277
23277
|
:param context:
|
|
23278
23278
|
:type context: 'Context'
|
|
23279
23279
|
:param event:
|
|
23280
23280
|
:type event: 'Event'
|
|
23281
|
-
:rtype: typing.Union[typing.Set[
|
|
23281
|
+
:rtype: typing.Union[typing.Set[int], typing.Set[str]]
|
|
23282
23282
|
:return: result
|
|
23283
23283
|
"""
|
|
23284
23284
|
...
|
|
23285
23285
|
|
|
23286
23286
|
def modal(
|
|
23287
23287
|
self, context: "Context", event: "Event"
|
|
23288
|
-
) -> typing.Union[typing.Set[
|
|
23288
|
+
) -> typing.Union[typing.Set[int], typing.Set[str]]:
|
|
23289
23289
|
"""Modal operator function
|
|
23290
23290
|
|
|
23291
23291
|
:param context:
|
|
23292
23292
|
:type context: 'Context'
|
|
23293
23293
|
:param event:
|
|
23294
23294
|
:type event: 'Event'
|
|
23295
|
-
:rtype: typing.Union[typing.Set[
|
|
23295
|
+
:rtype: typing.Union[typing.Set[int], typing.Set[str]]
|
|
23296
23296
|
:return: result
|
|
23297
23297
|
"""
|
|
23298
23298
|
...
|
|
@@ -29198,13 +29198,13 @@ class RenderEngine(bpy_struct):
|
|
|
29198
29198
|
|
|
29199
29199
|
def report(
|
|
29200
29200
|
self,
|
|
29201
|
-
type: typing.Optional[typing.Union[typing.Set[
|
|
29201
|
+
type: typing.Optional[typing.Union[typing.Set[int], typing.Set[str]]],
|
|
29202
29202
|
message: typing.Union[str, typing.Any],
|
|
29203
29203
|
):
|
|
29204
29204
|
"""Report info, warning or error messages
|
|
29205
29205
|
|
|
29206
29206
|
:param type: Type
|
|
29207
|
-
:type type: typing.Optional[typing.Union[typing.Set[
|
|
29207
|
+
:type type: typing.Optional[typing.Union[typing.Set[int], typing.Set[str]]]
|
|
29208
29208
|
:param message: Report Message
|
|
29209
29209
|
:type message: typing.Union[str, typing.Any]
|
|
29210
29210
|
"""
|
|
@@ -40365,10 +40365,10 @@ class ToolSettings(bpy_struct):
|
|
|
40365
40365
|
:type: typing.Union[str, int]
|
|
40366
40366
|
"""
|
|
40367
40367
|
|
|
40368
|
-
snap_elements: typing.Union[typing.Set[
|
|
40368
|
+
snap_elements: typing.Union[typing.Set[int], typing.Set[str]]
|
|
40369
40369
|
""" Type of element to snap to
|
|
40370
40370
|
|
|
40371
|
-
:type: typing.Union[typing.Set[
|
|
40371
|
+
:type: typing.Union[typing.Set[int], typing.Set[str]]
|
|
40372
40372
|
"""
|
|
40373
40373
|
|
|
40374
40374
|
snap_elements_base: typing.Union[typing.Set[str], typing.Set[int]]
|
|
@@ -41168,7 +41168,7 @@ class UILayout(bpy_struct):
|
|
|
41168
41168
|
idname: typing.Union[str, typing.Any],
|
|
41169
41169
|
default_closed: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
41170
41170
|
):
|
|
41171
|
-
"""Creates a collapsable panel. Whether it is open or closed is stored in the region using the given idname
|
|
41171
|
+
"""Creates a collapsable panel. Whether it is open or closed is stored in the region using the given idname. This can only be used when the panel has the full width of the panel region available to it. So it can't be used in e.g. in a box or columns
|
|
41172
41172
|
|
|
41173
41173
|
:param idname: Identifier of the panel
|
|
41174
41174
|
:type idname: typing.Union[str, typing.Any]
|
|
@@ -41178,7 +41178,7 @@ class UILayout(bpy_struct):
|
|
|
41178
41178
|
...
|
|
41179
41179
|
|
|
41180
41180
|
def panel_prop(self, data: typing.Any, property: typing.Union[str, typing.Any]):
|
|
41181
|
-
"""Similar to `.panel(...)` but instead of storing whether it is open or closed in the region, it is stored in the provided boolean property. This should be used when multiple instances of the same panel can exist. For example one for every item in a collection property or list
|
|
41181
|
+
"""Similar to `.panel(...)` but instead of storing whether it is open or closed in the region, it is stored in the provided boolean property. This should be used when multiple instances of the same panel can exist. For example one for every item in a collection property or list. This can only be used when the panel has the full width of the panel region available to it. So it can't be used in e.g. in a box or columns
|
|
41182
41182
|
|
|
41183
41183
|
:param data: Data from which to take the open-state property
|
|
41184
41184
|
:type data: typing.Any
|
|
@@ -65504,14 +65504,14 @@ class WindowManager(ID, bpy_struct):
|
|
|
65504
65504
|
@classmethod
|
|
65505
65505
|
def invoke_props_popup(
|
|
65506
65506
|
cls, operator: typing.Optional["Operator"], event: typing.Optional["Event"]
|
|
65507
|
-
) -> typing.Union[typing.Set[
|
|
65507
|
+
) -> typing.Union[typing.Set[int], typing.Set[str]]:
|
|
65508
65508
|
"""Operator popup invoke (show operator properties and execute it automatically on changes)
|
|
65509
65509
|
|
|
65510
65510
|
:param operator: Operator to call
|
|
65511
65511
|
:type operator: typing.Optional['Operator']
|
|
65512
65512
|
:param event: Event
|
|
65513
65513
|
:type event: typing.Optional['Event']
|
|
65514
|
-
:rtype: typing.Union[typing.Set[
|
|
65514
|
+
:rtype: typing.Union[typing.Set[int], typing.Set[str]]
|
|
65515
65515
|
:return: result
|
|
65516
65516
|
"""
|
|
65517
65517
|
...
|
|
@@ -65525,7 +65525,7 @@ class WindowManager(ID, bpy_struct):
|
|
|
65525
65525
|
confirm_text: typing.Union[str, typing.Any] = "",
|
|
65526
65526
|
text_ctxt: typing.Optional[typing.Union[str, typing.Any]] = "",
|
|
65527
65527
|
translate: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
65528
|
-
) -> typing.Union[typing.Set[
|
|
65528
|
+
) -> typing.Union[typing.Set[int], typing.Set[str]]:
|
|
65529
65529
|
"""Operator dialog (non-autoexec popup) invoke (show operator properties and only execute it on click on OK button)
|
|
65530
65530
|
|
|
65531
65531
|
:param operator: Operator to call
|
|
@@ -65540,7 +65540,7 @@ class WindowManager(ID, bpy_struct):
|
|
|
65540
65540
|
:type text_ctxt: typing.Optional[typing.Union[str, typing.Any]]
|
|
65541
65541
|
:param translate: Translate the given text, when UI translation is enabled
|
|
65542
65542
|
:type translate: typing.Optional[typing.Union[bool, typing.Any]]
|
|
65543
|
-
:rtype: typing.Union[typing.Set[
|
|
65543
|
+
:rtype: typing.Union[typing.Set[int], typing.Set[str]]
|
|
65544
65544
|
:return: result
|
|
65545
65545
|
"""
|
|
65546
65546
|
...
|
|
@@ -65559,14 +65559,14 @@ class WindowManager(ID, bpy_struct):
|
|
|
65559
65559
|
cls,
|
|
65560
65560
|
operator: typing.Optional["Operator"],
|
|
65561
65561
|
width: typing.Optional[typing.Any] = 300,
|
|
65562
|
-
) -> typing.Union[typing.Set[
|
|
65562
|
+
) -> typing.Union[typing.Set[int], typing.Set[str]]:
|
|
65563
65563
|
"""Operator popup invoke (only shows operator's properties, without executing it)
|
|
65564
65564
|
|
|
65565
65565
|
:param operator: Operator to call
|
|
65566
65566
|
:type operator: typing.Optional['Operator']
|
|
65567
65567
|
:param width: Width of the popup
|
|
65568
65568
|
:type width: typing.Optional[typing.Any]
|
|
65569
|
-
:rtype: typing.Union[typing.Set[
|
|
65569
|
+
:rtype: typing.Union[typing.Set[int], typing.Set[str]]
|
|
65570
65570
|
:return: result
|
|
65571
65571
|
"""
|
|
65572
65572
|
...
|
|
@@ -65582,7 +65582,7 @@ class WindowManager(ID, bpy_struct):
|
|
|
65582
65582
|
icon: typing.Optional[typing.Any] = "WARNING",
|
|
65583
65583
|
text_ctxt: typing.Optional[typing.Union[str, typing.Any]] = "",
|
|
65584
65584
|
translate: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
65585
|
-
) -> typing.Union[typing.Set[
|
|
65585
|
+
) -> typing.Union[typing.Set[int], typing.Set[str]]:
|
|
65586
65586
|
"""Operator confirmation popup (only to let user confirm the execution, no operator properties shown)
|
|
65587
65587
|
|
|
65588
65588
|
:param operator: Operator to call
|
|
@@ -65601,7 +65601,7 @@ class WindowManager(ID, bpy_struct):
|
|
|
65601
65601
|
:type text_ctxt: typing.Optional[typing.Union[str, typing.Any]]
|
|
65602
65602
|
:param translate: Translate the given text, when UI translation is enabled
|
|
65603
65603
|
:type translate: typing.Optional[typing.Union[bool, typing.Any]]
|
|
65604
|
-
:rtype: typing.Union[typing.Set[
|
|
65604
|
+
:rtype: typing.Union[typing.Set[int], typing.Set[str]]
|
|
65605
65605
|
:return: result
|
|
65606
65606
|
"""
|
|
65607
65607
|
...
|
|
@@ -68636,10 +68636,10 @@ class DecimateModifier(Modifier, bpy_struct):
|
|
|
68636
68636
|
:type: typing.Union[str, int]
|
|
68637
68637
|
"""
|
|
68638
68638
|
|
|
68639
|
-
delimit: typing.Union[typing.Set[
|
|
68639
|
+
delimit: typing.Union[typing.Set[int], typing.Set[str]]
|
|
68640
68640
|
""" Limit merging geometry
|
|
68641
68641
|
|
|
68642
|
-
:type: typing.Union[typing.Set[
|
|
68642
|
+
:type: typing.Union[typing.Set[int], typing.Set[str]]
|
|
68643
68643
|
"""
|
|
68644
68644
|
|
|
68645
68645
|
face_count: int
|
|
@@ -69114,18 +69114,246 @@ class GreasePencilColorModifier(Modifier, bpy_struct):
|
|
|
69114
69114
|
:type: bool
|
|
69115
69115
|
"""
|
|
69116
69116
|
|
|
69117
|
-
saturation: float
|
|
69118
|
-
""" Color saturation factor
|
|
69117
|
+
saturation: float
|
|
69118
|
+
""" Color saturation factor
|
|
69119
|
+
|
|
69120
|
+
:type: float
|
|
69121
|
+
"""
|
|
69122
|
+
|
|
69123
|
+
use_custom_curve: bool
|
|
69124
|
+
""" Use a custom curve to define a factor along the strokes
|
|
69125
|
+
|
|
69126
|
+
:type: bool
|
|
69127
|
+
"""
|
|
69128
|
+
|
|
69129
|
+
use_layer_pass_filter: bool
|
|
69130
|
+
""" Use layer pass filter
|
|
69131
|
+
|
|
69132
|
+
:type: bool
|
|
69133
|
+
"""
|
|
69134
|
+
|
|
69135
|
+
use_material_pass_filter: bool
|
|
69136
|
+
""" Use material pass filter
|
|
69137
|
+
|
|
69138
|
+
:type: bool
|
|
69139
|
+
"""
|
|
69140
|
+
|
|
69141
|
+
value: float
|
|
69142
|
+
""" Color value factor
|
|
69143
|
+
|
|
69144
|
+
:type: float
|
|
69145
|
+
"""
|
|
69146
|
+
|
|
69147
|
+
@classmethod
|
|
69148
|
+
def bl_rna_get_subclass(cls, id: typing.Optional[str], default=None) -> "Struct":
|
|
69149
|
+
"""
|
|
69150
|
+
|
|
69151
|
+
:param id: The RNA type identifier.
|
|
69152
|
+
:type id: typing.Optional[str]
|
|
69153
|
+
:rtype: 'Struct'
|
|
69154
|
+
:return: The RNA type or default when not found.
|
|
69155
|
+
"""
|
|
69156
|
+
...
|
|
69157
|
+
|
|
69158
|
+
@classmethod
|
|
69159
|
+
def bl_rna_get_subclass_py(
|
|
69160
|
+
cls, id: typing.Optional[str], default=None
|
|
69161
|
+
) -> typing.Any:
|
|
69162
|
+
"""
|
|
69163
|
+
|
|
69164
|
+
:param id: The RNA type identifier.
|
|
69165
|
+
:type id: typing.Optional[str]
|
|
69166
|
+
:rtype: typing.Any
|
|
69167
|
+
:return: The class or default when not found.
|
|
69168
|
+
"""
|
|
69169
|
+
...
|
|
69170
|
+
|
|
69171
|
+
class GreasePencilDashModifierData(Modifier, bpy_struct):
|
|
69172
|
+
"""Create dot-dash effect for strokes"""
|
|
69173
|
+
|
|
69174
|
+
dash_offset: int
|
|
69175
|
+
""" Offset into each stroke before the beginning of the dashed segment generation
|
|
69176
|
+
|
|
69177
|
+
:type: int
|
|
69178
|
+
"""
|
|
69179
|
+
|
|
69180
|
+
invert_layer_filter: bool
|
|
69181
|
+
""" Invert layer filter
|
|
69182
|
+
|
|
69183
|
+
:type: bool
|
|
69184
|
+
"""
|
|
69185
|
+
|
|
69186
|
+
invert_layer_pass_filter: bool
|
|
69187
|
+
""" Invert layer pass filter
|
|
69188
|
+
|
|
69189
|
+
:type: bool
|
|
69190
|
+
"""
|
|
69191
|
+
|
|
69192
|
+
invert_material_filter: bool
|
|
69193
|
+
""" Invert material filter
|
|
69194
|
+
|
|
69195
|
+
:type: bool
|
|
69196
|
+
"""
|
|
69197
|
+
|
|
69198
|
+
invert_material_pass_filter: bool
|
|
69199
|
+
""" Invert material pass filter
|
|
69200
|
+
|
|
69201
|
+
:type: bool
|
|
69202
|
+
"""
|
|
69203
|
+
|
|
69204
|
+
layer_filter: typing.Union[str, typing.Any]
|
|
69205
|
+
""" Layer name
|
|
69206
|
+
|
|
69207
|
+
:type: typing.Union[str, typing.Any]
|
|
69208
|
+
"""
|
|
69209
|
+
|
|
69210
|
+
layer_pass_filter: int
|
|
69211
|
+
""" Layer pass filter
|
|
69212
|
+
|
|
69213
|
+
:type: int
|
|
69214
|
+
"""
|
|
69215
|
+
|
|
69216
|
+
material_filter: "Material"
|
|
69217
|
+
""" Material used for filtering
|
|
69218
|
+
|
|
69219
|
+
:type: 'Material'
|
|
69220
|
+
"""
|
|
69221
|
+
|
|
69222
|
+
material_pass_filter: int
|
|
69223
|
+
""" Material pass
|
|
69224
|
+
|
|
69225
|
+
:type: int
|
|
69226
|
+
"""
|
|
69227
|
+
|
|
69228
|
+
open_influence_panel: bool
|
|
69229
|
+
"""
|
|
69230
|
+
|
|
69231
|
+
:type: bool
|
|
69232
|
+
"""
|
|
69233
|
+
|
|
69234
|
+
segment_active_index: int
|
|
69235
|
+
""" Active index in the segment list
|
|
69236
|
+
|
|
69237
|
+
:type: int
|
|
69238
|
+
"""
|
|
69239
|
+
|
|
69240
|
+
segments: bpy_prop_collection["GreasePencilDashModifierSegment"]
|
|
69241
|
+
"""
|
|
69242
|
+
|
|
69243
|
+
:type: bpy_prop_collection['GreasePencilDashModifierSegment']
|
|
69244
|
+
"""
|
|
69245
|
+
|
|
69246
|
+
use_layer_pass_filter: bool
|
|
69247
|
+
""" Use layer pass filter
|
|
69248
|
+
|
|
69249
|
+
:type: bool
|
|
69250
|
+
"""
|
|
69251
|
+
|
|
69252
|
+
use_material_pass_filter: bool
|
|
69253
|
+
""" Use material pass filter
|
|
69254
|
+
|
|
69255
|
+
:type: bool
|
|
69256
|
+
"""
|
|
69257
|
+
|
|
69258
|
+
@classmethod
|
|
69259
|
+
def bl_rna_get_subclass(cls, id: typing.Optional[str], default=None) -> "Struct":
|
|
69260
|
+
"""
|
|
69261
|
+
|
|
69262
|
+
:param id: The RNA type identifier.
|
|
69263
|
+
:type id: typing.Optional[str]
|
|
69264
|
+
:rtype: 'Struct'
|
|
69265
|
+
:return: The RNA type or default when not found.
|
|
69266
|
+
"""
|
|
69267
|
+
...
|
|
69268
|
+
|
|
69269
|
+
@classmethod
|
|
69270
|
+
def bl_rna_get_subclass_py(
|
|
69271
|
+
cls, id: typing.Optional[str], default=None
|
|
69272
|
+
) -> typing.Any:
|
|
69273
|
+
"""
|
|
69274
|
+
|
|
69275
|
+
:param id: The RNA type identifier.
|
|
69276
|
+
:type id: typing.Optional[str]
|
|
69277
|
+
:rtype: typing.Any
|
|
69278
|
+
:return: The class or default when not found.
|
|
69279
|
+
"""
|
|
69280
|
+
...
|
|
69281
|
+
|
|
69282
|
+
class GreasePencilLatticeModifier(Modifier, bpy_struct):
|
|
69283
|
+
"""Deform strokes using a lattice object"""
|
|
69284
|
+
|
|
69285
|
+
invert_layer_filter: bool
|
|
69286
|
+
""" Invert layer filter
|
|
69287
|
+
|
|
69288
|
+
:type: bool
|
|
69289
|
+
"""
|
|
69290
|
+
|
|
69291
|
+
invert_layer_pass_filter: bool
|
|
69292
|
+
""" Invert layer pass filter
|
|
69293
|
+
|
|
69294
|
+
:type: bool
|
|
69295
|
+
"""
|
|
69296
|
+
|
|
69297
|
+
invert_material_filter: bool
|
|
69298
|
+
""" Invert material filter
|
|
69299
|
+
|
|
69300
|
+
:type: bool
|
|
69301
|
+
"""
|
|
69302
|
+
|
|
69303
|
+
invert_material_pass_filter: bool
|
|
69304
|
+
""" Invert material pass filter
|
|
69305
|
+
|
|
69306
|
+
:type: bool
|
|
69307
|
+
"""
|
|
69308
|
+
|
|
69309
|
+
invert_vertex_group: bool
|
|
69310
|
+
""" Invert vertex group weights
|
|
69311
|
+
|
|
69312
|
+
:type: bool
|
|
69313
|
+
"""
|
|
69314
|
+
|
|
69315
|
+
layer_filter: typing.Union[str, typing.Any]
|
|
69316
|
+
""" Layer name
|
|
69317
|
+
|
|
69318
|
+
:type: typing.Union[str, typing.Any]
|
|
69319
|
+
"""
|
|
69320
|
+
|
|
69321
|
+
layer_pass_filter: int
|
|
69322
|
+
""" Layer pass filter
|
|
69323
|
+
|
|
69324
|
+
:type: int
|
|
69325
|
+
"""
|
|
69326
|
+
|
|
69327
|
+
material_filter: "Material"
|
|
69328
|
+
""" Material used for filtering
|
|
69329
|
+
|
|
69330
|
+
:type: 'Material'
|
|
69331
|
+
"""
|
|
69332
|
+
|
|
69333
|
+
material_pass_filter: int
|
|
69334
|
+
""" Material pass
|
|
69335
|
+
|
|
69336
|
+
:type: int
|
|
69337
|
+
"""
|
|
69338
|
+
|
|
69339
|
+
object: "Object"
|
|
69340
|
+
""" Lattice object to deform with
|
|
69341
|
+
|
|
69342
|
+
:type: 'Object'
|
|
69343
|
+
"""
|
|
69344
|
+
|
|
69345
|
+
open_influence_panel: bool
|
|
69346
|
+
"""
|
|
69347
|
+
|
|
69348
|
+
:type: bool
|
|
69349
|
+
"""
|
|
69350
|
+
|
|
69351
|
+
strength: float
|
|
69352
|
+
""" Strength of modifier effect
|
|
69119
69353
|
|
|
69120
69354
|
:type: float
|
|
69121
69355
|
"""
|
|
69122
69356
|
|
|
69123
|
-
use_custom_curve: bool
|
|
69124
|
-
""" Use a custom curve to define a factor along the strokes
|
|
69125
|
-
|
|
69126
|
-
:type: bool
|
|
69127
|
-
"""
|
|
69128
|
-
|
|
69129
69357
|
use_layer_pass_filter: bool
|
|
69130
69358
|
""" Use layer pass filter
|
|
69131
69359
|
|
|
@@ -69138,10 +69366,10 @@ class GreasePencilColorModifier(Modifier, bpy_struct):
|
|
|
69138
69366
|
:type: bool
|
|
69139
69367
|
"""
|
|
69140
69368
|
|
|
69141
|
-
|
|
69142
|
-
"""
|
|
69369
|
+
vertex_group_name: typing.Union[str, typing.Any]
|
|
69370
|
+
""" Vertex group name for modulating the deform
|
|
69143
69371
|
|
|
69144
|
-
:type:
|
|
69372
|
+
:type: typing.Union[str, typing.Any]
|
|
69145
69373
|
"""
|
|
69146
69374
|
|
|
69147
69375
|
@classmethod
|
|
@@ -69168,13 +69396,25 @@ class GreasePencilColorModifier(Modifier, bpy_struct):
|
|
|
69168
69396
|
"""
|
|
69169
69397
|
...
|
|
69170
69398
|
|
|
69171
|
-
class
|
|
69172
|
-
"""
|
|
69399
|
+
class GreasePencilLengthModifier(Modifier, bpy_struct):
|
|
69400
|
+
"""Stretch or shrink strokes"""
|
|
69173
69401
|
|
|
69174
|
-
|
|
69175
|
-
"""
|
|
69402
|
+
end_factor: float
|
|
69403
|
+
""" Added length to the end of each stroke relative to its length
|
|
69176
69404
|
|
|
69177
|
-
:type:
|
|
69405
|
+
:type: float
|
|
69406
|
+
"""
|
|
69407
|
+
|
|
69408
|
+
end_length: float
|
|
69409
|
+
""" Absolute added length to the end of each stroke
|
|
69410
|
+
|
|
69411
|
+
:type: float
|
|
69412
|
+
"""
|
|
69413
|
+
|
|
69414
|
+
invert_curvature: bool
|
|
69415
|
+
""" Invert the curvature of the stroke's extension
|
|
69416
|
+
|
|
69417
|
+
:type: bool
|
|
69178
69418
|
"""
|
|
69179
69419
|
|
|
69180
69420
|
invert_layer_filter: bool
|
|
@@ -69201,6 +69441,12 @@ class GreasePencilDashModifierData(Modifier, bpy_struct):
|
|
|
69201
69441
|
:type: bool
|
|
69202
69442
|
"""
|
|
69203
69443
|
|
|
69444
|
+
invert_vertex_group: bool
|
|
69445
|
+
""" Invert vertex group weights
|
|
69446
|
+
|
|
69447
|
+
:type: bool
|
|
69448
|
+
"""
|
|
69449
|
+
|
|
69204
69450
|
layer_filter: typing.Union[str, typing.Any]
|
|
69205
69451
|
""" Layer name
|
|
69206
69452
|
|
|
@@ -69225,22 +69471,100 @@ class GreasePencilDashModifierData(Modifier, bpy_struct):
|
|
|
69225
69471
|
:type: int
|
|
69226
69472
|
"""
|
|
69227
69473
|
|
|
69474
|
+
max_angle: float
|
|
69475
|
+
""" Ignore points on the stroke that deviate from their neighbors by more than this angle when determining the extrapolation shape
|
|
69476
|
+
|
|
69477
|
+
:type: float
|
|
69478
|
+
"""
|
|
69479
|
+
|
|
69480
|
+
mode: typing.Union[str, int]
|
|
69481
|
+
""" Mode to define length * ``RELATIVE`` Relative -- Length in ratio to the stroke's length. * ``ABSOLUTE`` Absolute -- Length in geometry space.
|
|
69482
|
+
|
|
69483
|
+
:type: typing.Union[str, int]
|
|
69484
|
+
"""
|
|
69485
|
+
|
|
69486
|
+
open_curvature_panel: bool
|
|
69487
|
+
"""
|
|
69488
|
+
|
|
69489
|
+
:type: bool
|
|
69490
|
+
"""
|
|
69491
|
+
|
|
69228
69492
|
open_influence_panel: bool
|
|
69229
69493
|
"""
|
|
69230
69494
|
|
|
69231
69495
|
:type: bool
|
|
69232
69496
|
"""
|
|
69233
69497
|
|
|
69234
|
-
|
|
69235
|
-
"""
|
|
69498
|
+
open_random_panel: bool
|
|
69499
|
+
"""
|
|
69500
|
+
|
|
69501
|
+
:type: bool
|
|
69502
|
+
"""
|
|
69503
|
+
|
|
69504
|
+
overshoot_factor: float
|
|
69505
|
+
""" Defines what portion of the stroke is used for the calculation of the extension
|
|
69506
|
+
|
|
69507
|
+
:type: float
|
|
69508
|
+
"""
|
|
69509
|
+
|
|
69510
|
+
point_density: float
|
|
69511
|
+
""" Multiplied by Start/End for the total added point count
|
|
69512
|
+
|
|
69513
|
+
:type: float
|
|
69514
|
+
"""
|
|
69515
|
+
|
|
69516
|
+
random_end_factor: float
|
|
69517
|
+
""" Size of random length added to the end of each stroke
|
|
69518
|
+
|
|
69519
|
+
:type: float
|
|
69520
|
+
"""
|
|
69521
|
+
|
|
69522
|
+
random_offset: float
|
|
69523
|
+
""" Smoothly offset each stroke's random value
|
|
69524
|
+
|
|
69525
|
+
:type: float
|
|
69526
|
+
"""
|
|
69527
|
+
|
|
69528
|
+
random_start_factor: float
|
|
69529
|
+
""" Size of random length added to the start of each stroke
|
|
69530
|
+
|
|
69531
|
+
:type: float
|
|
69532
|
+
"""
|
|
69533
|
+
|
|
69534
|
+
seed: int
|
|
69535
|
+
""" Random seed
|
|
69236
69536
|
|
|
69237
69537
|
:type: int
|
|
69238
69538
|
"""
|
|
69239
69539
|
|
|
69240
|
-
|
|
69241
|
-
"""
|
|
69540
|
+
segment_influence: float
|
|
69541
|
+
""" Factor to determine how much the length of the individual segments should influence the final computed curvature. Higher factors makes small segments influence the overall curvature less
|
|
69242
69542
|
|
|
69243
|
-
:type:
|
|
69543
|
+
:type: float
|
|
69544
|
+
"""
|
|
69545
|
+
|
|
69546
|
+
start_factor: float
|
|
69547
|
+
""" Added length to the start of each stroke relative to its length
|
|
69548
|
+
|
|
69549
|
+
:type: float
|
|
69550
|
+
"""
|
|
69551
|
+
|
|
69552
|
+
start_length: float
|
|
69553
|
+
""" Absolute added length to the start of each stroke
|
|
69554
|
+
|
|
69555
|
+
:type: float
|
|
69556
|
+
"""
|
|
69557
|
+
|
|
69558
|
+
step: int
|
|
69559
|
+
""" Number of frames between randomization steps
|
|
69560
|
+
|
|
69561
|
+
:type: int
|
|
69562
|
+
"""
|
|
69563
|
+
|
|
69564
|
+
use_curvature: bool
|
|
69565
|
+
""" Follow the curvature of the stroke
|
|
69566
|
+
|
|
69567
|
+
:type: bool
|
|
69244
69568
|
"""
|
|
69245
69569
|
|
|
69246
69570
|
use_layer_pass_filter: bool
|
|
@@ -69255,6 +69579,18 @@ class GreasePencilDashModifierData(Modifier, bpy_struct):
|
|
|
69255
69579
|
:type: bool
|
|
69256
69580
|
"""
|
|
69257
69581
|
|
|
69582
|
+
use_random: bool
|
|
69583
|
+
""" Use random values over time
|
|
69584
|
+
|
|
69585
|
+
:type: bool
|
|
69586
|
+
"""
|
|
69587
|
+
|
|
69588
|
+
vertex_group_name: typing.Union[str, typing.Any]
|
|
69589
|
+
""" Vertex group name for modulating the deform
|
|
69590
|
+
|
|
69591
|
+
:type: typing.Union[str, typing.Any]
|
|
69592
|
+
"""
|
|
69593
|
+
|
|
69258
69594
|
@classmethod
|
|
69259
69595
|
def bl_rna_get_subclass(cls, id: typing.Optional[str], default=None) -> "Struct":
|
|
69260
69596
|
"""
|
|
@@ -69279,9 +69615,7 @@ class GreasePencilDashModifierData(Modifier, bpy_struct):
|
|
|
69279
69615
|
"""
|
|
69280
69616
|
...
|
|
69281
69617
|
|
|
69282
|
-
class
|
|
69283
|
-
"""Deform strokes using a lattice object"""
|
|
69284
|
-
|
|
69618
|
+
class GreasePencilMirrorModifier(Modifier, bpy_struct):
|
|
69285
69619
|
invert_layer_filter: bool
|
|
69286
69620
|
""" Invert layer filter
|
|
69287
69621
|
|
|
@@ -69306,12 +69640,6 @@ class GreasePencilLatticeModifier(Modifier, bpy_struct):
|
|
|
69306
69640
|
:type: bool
|
|
69307
69641
|
"""
|
|
69308
69642
|
|
|
69309
|
-
invert_vertex_group: bool
|
|
69310
|
-
""" Invert vertex group weights
|
|
69311
|
-
|
|
69312
|
-
:type: bool
|
|
69313
|
-
"""
|
|
69314
|
-
|
|
69315
69643
|
layer_filter: typing.Union[str, typing.Any]
|
|
69316
69644
|
""" Layer name
|
|
69317
69645
|
|
|
@@ -69337,7 +69665,7 @@ class GreasePencilLatticeModifier(Modifier, bpy_struct):
|
|
|
69337
69665
|
"""
|
|
69338
69666
|
|
|
69339
69667
|
object: "Object"
|
|
69340
|
-
"""
|
|
69668
|
+
""" Object used as center
|
|
69341
69669
|
|
|
69342
69670
|
:type: 'Object'
|
|
69343
69671
|
"""
|
|
@@ -69348,10 +69676,22 @@ class GreasePencilLatticeModifier(Modifier, bpy_struct):
|
|
|
69348
69676
|
:type: bool
|
|
69349
69677
|
"""
|
|
69350
69678
|
|
|
69351
|
-
|
|
69352
|
-
"""
|
|
69679
|
+
use_axis_x: bool
|
|
69680
|
+
""" Mirror the X axis
|
|
69353
69681
|
|
|
69354
|
-
:type:
|
|
69682
|
+
:type: bool
|
|
69683
|
+
"""
|
|
69684
|
+
|
|
69685
|
+
use_axis_y: bool
|
|
69686
|
+
""" Mirror the Y axis
|
|
69687
|
+
|
|
69688
|
+
:type: bool
|
|
69689
|
+
"""
|
|
69690
|
+
|
|
69691
|
+
use_axis_z: bool
|
|
69692
|
+
""" Mirror the Z axis
|
|
69693
|
+
|
|
69694
|
+
:type: bool
|
|
69355
69695
|
"""
|
|
69356
69696
|
|
|
69357
69697
|
use_layer_pass_filter: bool
|
|
@@ -69366,12 +69706,6 @@ class GreasePencilLatticeModifier(Modifier, bpy_struct):
|
|
|
69366
69706
|
:type: bool
|
|
69367
69707
|
"""
|
|
69368
69708
|
|
|
69369
|
-
vertex_group_name: typing.Union[str, typing.Any]
|
|
69370
|
-
""" Vertex group name for modulating the deform
|
|
69371
|
-
|
|
69372
|
-
:type: typing.Union[str, typing.Any]
|
|
69373
|
-
"""
|
|
69374
|
-
|
|
69375
69709
|
@classmethod
|
|
69376
69710
|
def bl_rna_get_subclass(cls, id: typing.Optional[str], default=None) -> "Struct":
|
|
69377
69711
|
"""
|
|
@@ -69396,7 +69730,39 @@ class GreasePencilLatticeModifier(Modifier, bpy_struct):
|
|
|
69396
69730
|
"""
|
|
69397
69731
|
...
|
|
69398
69732
|
|
|
69399
|
-
class
|
|
69733
|
+
class GreasePencilMultiplyModifier(Modifier, bpy_struct):
|
|
69734
|
+
"""Generate multiple strokes from one stroke"""
|
|
69735
|
+
|
|
69736
|
+
distance: float
|
|
69737
|
+
""" Distance of duplications
|
|
69738
|
+
|
|
69739
|
+
:type: float
|
|
69740
|
+
"""
|
|
69741
|
+
|
|
69742
|
+
duplicates: int
|
|
69743
|
+
""" How many copies of strokes be displayed
|
|
69744
|
+
|
|
69745
|
+
:type: int
|
|
69746
|
+
"""
|
|
69747
|
+
|
|
69748
|
+
fading_center: float
|
|
69749
|
+
""" Fade center
|
|
69750
|
+
|
|
69751
|
+
:type: float
|
|
69752
|
+
"""
|
|
69753
|
+
|
|
69754
|
+
fading_opacity: float
|
|
69755
|
+
""" Fade influence of stroke's opacity
|
|
69756
|
+
|
|
69757
|
+
:type: float
|
|
69758
|
+
"""
|
|
69759
|
+
|
|
69760
|
+
fading_thickness: float
|
|
69761
|
+
""" Fade influence of stroke's thickness
|
|
69762
|
+
|
|
69763
|
+
:type: float
|
|
69764
|
+
"""
|
|
69765
|
+
|
|
69400
69766
|
invert_layer_filter: bool
|
|
69401
69767
|
""" Invert layer filter
|
|
69402
69768
|
|
|
@@ -69445,32 +69811,26 @@ class GreasePencilMirrorModifier(Modifier, bpy_struct):
|
|
|
69445
69811
|
:type: int
|
|
69446
69812
|
"""
|
|
69447
69813
|
|
|
69448
|
-
|
|
69449
|
-
"""
|
|
69814
|
+
offset: float
|
|
69815
|
+
""" Offset of duplicates. -1 to 1: inner to outer
|
|
69450
69816
|
|
|
69451
|
-
:type:
|
|
69817
|
+
:type: float
|
|
69452
69818
|
"""
|
|
69453
69819
|
|
|
69454
|
-
|
|
69820
|
+
open_fading_panel: bool
|
|
69455
69821
|
"""
|
|
69456
69822
|
|
|
69457
69823
|
:type: bool
|
|
69458
69824
|
"""
|
|
69459
69825
|
|
|
69460
|
-
|
|
69461
|
-
"""
|
|
69462
|
-
|
|
69463
|
-
:type: bool
|
|
69464
|
-
"""
|
|
69465
|
-
|
|
69466
|
-
use_axis_y: bool
|
|
69467
|
-
""" Mirror the Y axis
|
|
69826
|
+
open_influence_panel: bool
|
|
69827
|
+
"""
|
|
69468
69828
|
|
|
69469
69829
|
:type: bool
|
|
69470
69830
|
"""
|
|
69471
69831
|
|
|
69472
|
-
|
|
69473
|
-
"""
|
|
69832
|
+
use_fade: bool
|
|
69833
|
+
""" Fade the stroke thickness for each generated stroke
|
|
69474
69834
|
|
|
69475
69835
|
:type: bool
|
|
69476
69836
|
"""
|
|
@@ -71023,10 +71383,10 @@ class MeshCacheModifier(Modifier, bpy_struct):
|
|
|
71023
71383
|
:type: typing.Union[str, typing.Any]
|
|
71024
71384
|
"""
|
|
71025
71385
|
|
|
71026
|
-
flip_axis: typing.Union[typing.Set[
|
|
71386
|
+
flip_axis: typing.Union[typing.Set[int], typing.Set[str]]
|
|
71027
71387
|
"""
|
|
71028
71388
|
|
|
71029
|
-
:type: typing.Union[typing.Set[
|
|
71389
|
+
:type: typing.Union[typing.Set[int], typing.Set[str]]
|
|
71030
71390
|
"""
|
|
71031
71391
|
|
|
71032
71392
|
forward_axis: typing.Union[str, int]
|
|
@@ -89037,12 +89397,6 @@ class BlendDataNodeTrees(bpy_prop_collection[NodeTree], bpy_struct):
|
|
|
89037
89397
|
class CompositorNodeTree(NodeTree, ID, bpy_struct):
|
|
89038
89398
|
"""Node tree consisting of linked nodes used for compositing"""
|
|
89039
89399
|
|
|
89040
|
-
chunk_size: typing.Union[str, int]
|
|
89041
|
-
""" Max size of a tile (smaller values gives better distribution of multiple threads, but more overhead) * ``32`` 32×32 -- Chunksize of 32×32. * ``64`` 64×64 -- Chunksize of 64×64. * ``128`` 128×128 -- Chunksize of 128×128. * ``256`` 256×256 -- Chunksize of 256×256. * ``512`` 512×512 -- Chunksize of 512×512. * ``1024`` 1024×1024 -- Chunksize of 1024×1024.
|
|
89042
|
-
|
|
89043
|
-
:type: typing.Union[str, int]
|
|
89044
|
-
"""
|
|
89045
|
-
|
|
89046
89400
|
edit_quality: typing.Union[str, int]
|
|
89047
89401
|
""" Quality when editing * ``HIGH`` High -- High quality. * ``MEDIUM`` Medium -- Medium quality. * ``LOW`` Low -- Low quality.
|
|
89048
89402
|
|
|
@@ -89050,7 +89404,7 @@ class CompositorNodeTree(NodeTree, ID, bpy_struct):
|
|
|
89050
89404
|
"""
|
|
89051
89405
|
|
|
89052
89406
|
execution_mode: typing.Union[str, int]
|
|
89053
|
-
""" Set how compositing is executed
|
|
89407
|
+
""" Set how compositing is executed
|
|
89054
89408
|
|
|
89055
89409
|
:type: typing.Union[str, int]
|
|
89056
89410
|
"""
|
|
@@ -89067,18 +89421,6 @@ class CompositorNodeTree(NodeTree, ID, bpy_struct):
|
|
|
89067
89421
|
:type: typing.Union[str, int]
|
|
89068
89422
|
"""
|
|
89069
89423
|
|
|
89070
|
-
use_groupnode_buffer: bool
|
|
89071
|
-
""" Enable buffering of group nodes
|
|
89072
|
-
|
|
89073
|
-
:type: bool
|
|
89074
|
-
"""
|
|
89075
|
-
|
|
89076
|
-
use_opencl: bool
|
|
89077
|
-
""" Enable GPU calculations
|
|
89078
|
-
|
|
89079
|
-
:type: bool
|
|
89080
|
-
"""
|
|
89081
|
-
|
|
89082
89424
|
use_two_pass: bool
|
|
89083
89425
|
""" Use two pass execution during editing: first calculate fast nodes, second pass calculate all nodes
|
|
89084
89426
|
|
|
@@ -111002,10 +111344,10 @@ class GeometryNodeCurveHandleTypeSelection(
|
|
|
111002
111344
|
:type: typing.Union[str, int]
|
|
111003
111345
|
"""
|
|
111004
111346
|
|
|
111005
|
-
mode: typing.Union[typing.Set[
|
|
111347
|
+
mode: typing.Union[typing.Set[int], typing.Set[str]]
|
|
111006
111348
|
""" Whether to check the type of left and right handles
|
|
111007
111349
|
|
|
111008
|
-
:type: typing.Union[typing.Set[
|
|
111350
|
+
:type: typing.Union[typing.Set[int], typing.Set[str]]
|
|
111009
111351
|
"""
|
|
111010
111352
|
|
|
111011
111353
|
@classmethod
|
|
@@ -111538,10 +111880,10 @@ class GeometryNodeCurveSetHandles(GeometryNode, NodeInternal, Node, bpy_struct):
|
|
|
111538
111880
|
:type: typing.Union[str, int]
|
|
111539
111881
|
"""
|
|
111540
111882
|
|
|
111541
|
-
mode: typing.Union[typing.Set[
|
|
111883
|
+
mode: typing.Union[typing.Set[int], typing.Set[str]]
|
|
111542
111884
|
""" Whether to update left and right handles
|
|
111543
111885
|
|
|
111544
|
-
:type: typing.Union[typing.Set[
|
|
111886
|
+
:type: typing.Union[typing.Set[int], typing.Set[str]]
|
|
111545
111887
|
"""
|
|
111546
111888
|
|
|
111547
111889
|
@classmethod
|