fake-bpy-module 20240706__py3-none-any.whl → 20240708__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of fake-bpy-module might be problematic. Click here for more details.
- bl_operators/assets/__init__.pyi +8 -8
- bl_operators/image_as_planes/__init__.pyi +43 -43
- bl_operators/node/__init__.pyi +234 -234
- bl_operators/object_quick_effects/__init__.pyi +21 -21
- bl_operators/presets/__init__.pyi +388 -388
- bl_ui/properties_collection/__init__.pyi +12 -12
- bl_ui/properties_constraint/__init__.pyi +954 -954
- bl_ui/properties_data_armature/__init__.pyi +85 -85
- bl_ui/properties_data_bone/__init__.pyi +12 -12
- bl_ui/properties_data_curve/__init__.pyi +92 -92
- bl_ui/properties_data_curves/__init__.pyi +12 -12
- bl_ui/properties_data_empty/__init__.pyi +12 -12
- bl_ui/properties_data_gpencil/__init__.pyi +265 -265
- bl_ui/properties_data_grease_pencil/__init__.pyi +312 -312
- bl_ui/properties_data_lattice/__init__.pyi +12 -12
- bl_ui/properties_data_light/__init__.pyi +12 -12
- bl_ui/properties_data_lightprobe/__init__.pyi +12 -12
- bl_ui/properties_data_mesh/__init__.pyi +527 -527
- bl_ui/properties_data_metaball/__init__.pyi +12 -12
- bl_ui/properties_data_modifier/__init__.pyi +19 -19
- bl_ui/properties_data_pointcloud/__init__.pyi +140 -140
- bl_ui/properties_data_shaderfx/__init__.pyi +5 -5
- bl_ui/properties_data_speaker/__init__.pyi +12 -12
- bl_ui/properties_data_volume/__init__.pyi +65 -65
- bl_ui/properties_freestyle/__init__.pyi +248 -248
- bl_ui/properties_material/__init__.pyi +145 -145
- bl_ui/properties_material_gpencil/__init__.pyi +86 -86
- bl_ui/properties_object/__init__.pyi +75 -75
- bl_ui/properties_output/__init__.pyi +201 -201
- bl_ui/properties_particle/__init__.pyi +220 -220
- bl_ui/properties_physics_cloth/__init__.pyi +12 -12
- bl_ui/properties_physics_common/__init__.pyi +12 -12
- bl_ui/properties_physics_dynamicpaint/__init__.pyi +187 -187
- bl_ui/properties_physics_field/__init__.pyi +19 -19
- bl_ui/properties_physics_fluid/__init__.pyi +61 -61
- bl_ui/properties_physics_rigidbody/__init__.pyi +5 -5
- bl_ui/properties_physics_rigidbody_constraint/__init__.pyi +5 -5
- bl_ui/properties_physics_softbody/__init__.pyi +12 -12
- bl_ui/properties_render/__init__.pyi +217 -217
- bl_ui/properties_scene/__init__.pyi +143 -143
- bl_ui/properties_texture/__init__.pyi +156 -156
- bl_ui/properties_view_layer/__init__.pyi +78 -78
- bl_ui/properties_workspace/__init__.pyi +64 -64
- bl_ui/properties_world/__init__.pyi +12 -12
- bl_ui/space_clip/__init__.pyi +366 -366
- bl_ui/space_dopesheet/__init__.pyi +176 -176
- bl_ui/space_filebrowser/__init__.pyi +735 -735
- bl_ui/space_image/__init__.pyi +646 -646
- bl_ui/space_sequencer/__init__.pyi +841 -389
- bl_ui/space_time/__init__.pyi +11 -11
- bl_ui/space_userpref/__init__.pyi +684 -684
- bl_ui/space_view3d/__init__.pyi +1152 -1152
- bl_ui/space_view3d_toolbar/__init__.pyi +2831 -2831
- bmesh/types/__init__.pyi +48 -0
- bpy/types/__init__.pyi +70624 -70606
- {fake_bpy_module-20240706.dist-info → fake_bpy_module-20240708.dist-info}/METADATA +4 -4
- {fake_bpy_module-20240706.dist-info → fake_bpy_module-20240708.dist-info}/RECORD +63 -63
- freestyle/utils/__init__.pyi +1 -1
- keyingsets_builtins/__init__.pyi +87 -87
- mathutils/__init__.pyi +156 -50
- nodeitems_builtins/__init__.pyi +7 -7
- {fake_bpy_module-20240706.dist-info → fake_bpy_module-20240708.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240706.dist-info → fake_bpy_module-20240708.dist-info}/top_level.txt +0 -0
|
@@ -7,55 +7,14 @@ import bpy_types
|
|
|
7
7
|
GenericType1 = typing.TypeVar("GenericType1")
|
|
8
8
|
GenericType2 = typing.TypeVar("GenericType2")
|
|
9
9
|
|
|
10
|
-
class PhysicButtonsPanel:
|
|
10
|
+
class PHYSICS_PT_dp_brush_source(PhysicButtonsPanel, bpy_types._GenericUI):
|
|
11
|
+
COMPAT_ENGINES: typing.Any
|
|
11
12
|
bl_context: typing.Any
|
|
13
|
+
bl_label: typing.Any
|
|
14
|
+
bl_parent_id: typing.Any
|
|
12
15
|
bl_region_type: typing.Any
|
|
13
|
-
bl_space_type: typing.Any
|
|
14
|
-
|
|
15
|
-
def poll_dyn_canvas(self, context):
|
|
16
|
-
"""
|
|
17
|
-
|
|
18
|
-
:param context:
|
|
19
|
-
"""
|
|
20
|
-
...
|
|
21
|
-
|
|
22
|
-
def poll_dyn_canvas_brush(self, context):
|
|
23
|
-
"""
|
|
24
|
-
|
|
25
|
-
:param context:
|
|
26
|
-
"""
|
|
27
|
-
...
|
|
28
|
-
|
|
29
|
-
def poll_dyn_canvas_paint(self, context):
|
|
30
|
-
"""
|
|
31
|
-
|
|
32
|
-
:param context:
|
|
33
|
-
"""
|
|
34
|
-
...
|
|
35
|
-
|
|
36
|
-
def poll_dyn_output(self, context):
|
|
37
|
-
"""
|
|
38
|
-
|
|
39
|
-
:param context:
|
|
40
|
-
"""
|
|
41
|
-
...
|
|
42
|
-
|
|
43
|
-
def poll_dyn_output_maps(self, context):
|
|
44
|
-
"""
|
|
45
|
-
|
|
46
|
-
:param context:
|
|
47
|
-
"""
|
|
48
|
-
...
|
|
49
|
-
|
|
50
|
-
def poll_dyn_paint(self, context):
|
|
51
|
-
"""
|
|
52
|
-
|
|
53
|
-
:param context:
|
|
54
|
-
"""
|
|
55
|
-
...
|
|
56
|
-
|
|
57
|
-
class PHYSICS_UL_dynapaint_surfaces(bpy_types._GenericUI):
|
|
58
16
|
bl_rna: typing.Any
|
|
17
|
+
bl_space_type: typing.Any
|
|
59
18
|
id_data: typing.Any
|
|
60
19
|
|
|
61
20
|
def append(self, draw_func):
|
|
@@ -90,27 +49,10 @@ class PHYSICS_UL_dynapaint_surfaces(bpy_types._GenericUI):
|
|
|
90
49
|
"""
|
|
91
50
|
...
|
|
92
51
|
|
|
93
|
-
def
|
|
94
|
-
self,
|
|
95
|
-
_context,
|
|
96
|
-
layout,
|
|
97
|
-
_data,
|
|
98
|
-
item,
|
|
99
|
-
icon,
|
|
100
|
-
_active_data,
|
|
101
|
-
_active_propname,
|
|
102
|
-
_index,
|
|
103
|
-
):
|
|
52
|
+
def draw(self, context):
|
|
104
53
|
"""
|
|
105
54
|
|
|
106
|
-
:param
|
|
107
|
-
:param layout:
|
|
108
|
-
:param _data:
|
|
109
|
-
:param item:
|
|
110
|
-
:param icon:
|
|
111
|
-
:param _active_data:
|
|
112
|
-
:param _active_propname:
|
|
113
|
-
:param _index:
|
|
55
|
+
:param context:
|
|
114
56
|
"""
|
|
115
57
|
...
|
|
116
58
|
|
|
@@ -236,6 +178,55 @@ class PHYSICS_UL_dynapaint_surfaces(bpy_types._GenericUI):
|
|
|
236
178
|
"""Returns the property from the path, raise an exception when not found."""
|
|
237
179
|
...
|
|
238
180
|
|
|
181
|
+
def poll(self, context):
|
|
182
|
+
"""
|
|
183
|
+
|
|
184
|
+
:param context:
|
|
185
|
+
"""
|
|
186
|
+
...
|
|
187
|
+
|
|
188
|
+
def poll_dyn_canvas(self, context):
|
|
189
|
+
"""
|
|
190
|
+
|
|
191
|
+
:param context:
|
|
192
|
+
"""
|
|
193
|
+
...
|
|
194
|
+
|
|
195
|
+
def poll_dyn_canvas_brush(self, context):
|
|
196
|
+
"""
|
|
197
|
+
|
|
198
|
+
:param context:
|
|
199
|
+
"""
|
|
200
|
+
...
|
|
201
|
+
|
|
202
|
+
def poll_dyn_canvas_paint(self, context):
|
|
203
|
+
"""
|
|
204
|
+
|
|
205
|
+
:param context:
|
|
206
|
+
"""
|
|
207
|
+
...
|
|
208
|
+
|
|
209
|
+
def poll_dyn_output(self, context):
|
|
210
|
+
"""
|
|
211
|
+
|
|
212
|
+
:param context:
|
|
213
|
+
"""
|
|
214
|
+
...
|
|
215
|
+
|
|
216
|
+
def poll_dyn_output_maps(self, context):
|
|
217
|
+
"""
|
|
218
|
+
|
|
219
|
+
:param context:
|
|
220
|
+
"""
|
|
221
|
+
...
|
|
222
|
+
|
|
223
|
+
def poll_dyn_paint(self, context):
|
|
224
|
+
"""
|
|
225
|
+
|
|
226
|
+
:param context:
|
|
227
|
+
"""
|
|
228
|
+
...
|
|
229
|
+
|
|
239
230
|
def pop(self):
|
|
240
231
|
"""Remove and return the value of the custom property assigned to key or default
|
|
241
232
|
when not found (matches Python's dictionary function of the same name).
|
|
@@ -286,7 +277,7 @@ class PHYSICS_UL_dynapaint_surfaces(bpy_types._GenericUI):
|
|
|
286
277
|
"""
|
|
287
278
|
...
|
|
288
279
|
|
|
289
|
-
class
|
|
280
|
+
class PHYSICS_PT_dp_brush_source_color_ramp(PhysicButtonsPanel, bpy_types._GenericUI):
|
|
290
281
|
COMPAT_ENGINES: typing.Any
|
|
291
282
|
bl_context: typing.Any
|
|
292
283
|
bl_label: typing.Any
|
|
@@ -556,10 +547,11 @@ class PHYSICS_PT_dp_brush_source(PhysicButtonsPanel, bpy_types._GenericUI):
|
|
|
556
547
|
"""
|
|
557
548
|
...
|
|
558
549
|
|
|
559
|
-
class
|
|
550
|
+
class PHYSICS_PT_dp_brush_velocity(PhysicButtonsPanel, bpy_types._GenericUI):
|
|
560
551
|
COMPAT_ENGINES: typing.Any
|
|
561
552
|
bl_context: typing.Any
|
|
562
553
|
bl_label: typing.Any
|
|
554
|
+
bl_options: typing.Any
|
|
563
555
|
bl_parent_id: typing.Any
|
|
564
556
|
bl_region_type: typing.Any
|
|
565
557
|
bl_rna: typing.Any
|
|
@@ -826,7 +818,7 @@ class PHYSICS_PT_dp_brush_source_color_ramp(PhysicButtonsPanel, bpy_types._Gener
|
|
|
826
818
|
"""
|
|
827
819
|
...
|
|
828
820
|
|
|
829
|
-
class
|
|
821
|
+
class PHYSICS_PT_dp_brush_velocity_color_ramp(PhysicButtonsPanel, bpy_types._GenericUI):
|
|
830
822
|
COMPAT_ENGINES: typing.Any
|
|
831
823
|
bl_context: typing.Any
|
|
832
824
|
bl_label: typing.Any
|
|
@@ -1097,7 +1089,7 @@ class PHYSICS_PT_dp_brush_velocity(PhysicButtonsPanel, bpy_types._GenericUI):
|
|
|
1097
1089
|
"""
|
|
1098
1090
|
...
|
|
1099
1091
|
|
|
1100
|
-
class
|
|
1092
|
+
class PHYSICS_PT_dp_brush_velocity_smudge(PhysicButtonsPanel, bpy_types._GenericUI):
|
|
1101
1093
|
COMPAT_ENGINES: typing.Any
|
|
1102
1094
|
bl_context: typing.Any
|
|
1103
1095
|
bl_label: typing.Any
|
|
@@ -1147,6 +1139,13 @@ class PHYSICS_PT_dp_brush_velocity_color_ramp(PhysicButtonsPanel, bpy_types._Gen
|
|
|
1147
1139
|
"""
|
|
1148
1140
|
...
|
|
1149
1141
|
|
|
1142
|
+
def draw_header(self, context):
|
|
1143
|
+
"""
|
|
1144
|
+
|
|
1145
|
+
:param context:
|
|
1146
|
+
"""
|
|
1147
|
+
...
|
|
1148
|
+
|
|
1150
1149
|
def driver_add(self) -> bpy.types.FCurve:
|
|
1151
1150
|
"""Adds driver(s) to the given property
|
|
1152
1151
|
|
|
@@ -1368,7 +1367,7 @@ class PHYSICS_PT_dp_brush_velocity_color_ramp(PhysicButtonsPanel, bpy_types._Gen
|
|
|
1368
1367
|
"""
|
|
1369
1368
|
...
|
|
1370
1369
|
|
|
1371
|
-
class
|
|
1370
|
+
class PHYSICS_PT_dp_brush_wave(PhysicButtonsPanel, bpy_types._GenericUI):
|
|
1372
1371
|
COMPAT_ENGINES: typing.Any
|
|
1373
1372
|
bl_context: typing.Any
|
|
1374
1373
|
bl_label: typing.Any
|
|
@@ -1418,13 +1417,6 @@ class PHYSICS_PT_dp_brush_velocity_smudge(PhysicButtonsPanel, bpy_types._Generic
|
|
|
1418
1417
|
"""
|
|
1419
1418
|
...
|
|
1420
1419
|
|
|
1421
|
-
def draw_header(self, context):
|
|
1422
|
-
"""
|
|
1423
|
-
|
|
1424
|
-
:param context:
|
|
1425
|
-
"""
|
|
1426
|
-
...
|
|
1427
|
-
|
|
1428
1420
|
def driver_add(self) -> bpy.types.FCurve:
|
|
1429
1421
|
"""Adds driver(s) to the given property
|
|
1430
1422
|
|
|
@@ -1646,7 +1638,7 @@ class PHYSICS_PT_dp_brush_velocity_smudge(PhysicButtonsPanel, bpy_types._Generic
|
|
|
1646
1638
|
"""
|
|
1647
1639
|
...
|
|
1648
1640
|
|
|
1649
|
-
class
|
|
1641
|
+
class PHYSICS_PT_dp_cache(PhysicButtonsPanel, bpy_types._GenericUI):
|
|
1650
1642
|
COMPAT_ENGINES: typing.Any
|
|
1651
1643
|
bl_context: typing.Any
|
|
1652
1644
|
bl_label: typing.Any
|
|
@@ -1917,7 +1909,7 @@ class PHYSICS_PT_dp_brush_wave(PhysicButtonsPanel, bpy_types._GenericUI):
|
|
|
1917
1909
|
"""
|
|
1918
1910
|
...
|
|
1919
1911
|
|
|
1920
|
-
class
|
|
1912
|
+
class PHYSICS_PT_dp_canvas_initial_color(PhysicButtonsPanel, bpy_types._GenericUI):
|
|
1921
1913
|
COMPAT_ENGINES: typing.Any
|
|
1922
1914
|
bl_context: typing.Any
|
|
1923
1915
|
bl_label: typing.Any
|
|
@@ -2188,7 +2180,7 @@ class PHYSICS_PT_dp_cache(PhysicButtonsPanel, bpy_types._GenericUI):
|
|
|
2188
2180
|
"""
|
|
2189
2181
|
...
|
|
2190
2182
|
|
|
2191
|
-
class
|
|
2183
|
+
class PHYSICS_PT_dp_canvas_output(PhysicButtonsPanel, bpy_types._GenericUI):
|
|
2192
2184
|
COMPAT_ENGINES: typing.Any
|
|
2193
2185
|
bl_context: typing.Any
|
|
2194
2186
|
bl_label: typing.Any
|
|
@@ -2459,7 +2451,7 @@ class PHYSICS_PT_dp_canvas_initial_color(PhysicButtonsPanel, bpy_types._GenericU
|
|
|
2459
2451
|
"""
|
|
2460
2452
|
...
|
|
2461
2453
|
|
|
2462
|
-
class
|
|
2454
|
+
class PHYSICS_PT_dp_canvas_output_paintmaps(PhysicButtonsPanel, bpy_types._GenericUI):
|
|
2463
2455
|
COMPAT_ENGINES: typing.Any
|
|
2464
2456
|
bl_context: typing.Any
|
|
2465
2457
|
bl_label: typing.Any
|
|
@@ -2509,6 +2501,13 @@ class PHYSICS_PT_dp_canvas_output(PhysicButtonsPanel, bpy_types._GenericUI):
|
|
|
2509
2501
|
"""
|
|
2510
2502
|
...
|
|
2511
2503
|
|
|
2504
|
+
def draw_header(self, context):
|
|
2505
|
+
"""
|
|
2506
|
+
|
|
2507
|
+
:param context:
|
|
2508
|
+
"""
|
|
2509
|
+
...
|
|
2510
|
+
|
|
2512
2511
|
def driver_add(self) -> bpy.types.FCurve:
|
|
2513
2512
|
"""Adds driver(s) to the given property
|
|
2514
2513
|
|
|
@@ -2730,7 +2729,7 @@ class PHYSICS_PT_dp_canvas_output(PhysicButtonsPanel, bpy_types._GenericUI):
|
|
|
2730
2729
|
"""
|
|
2731
2730
|
...
|
|
2732
2731
|
|
|
2733
|
-
class
|
|
2732
|
+
class PHYSICS_PT_dp_canvas_output_wetmaps(PhysicButtonsPanel, bpy_types._GenericUI):
|
|
2734
2733
|
COMPAT_ENGINES: typing.Any
|
|
2735
2734
|
bl_context: typing.Any
|
|
2736
2735
|
bl_label: typing.Any
|
|
@@ -3008,7 +3007,7 @@ class PHYSICS_PT_dp_canvas_output_paintmaps(PhysicButtonsPanel, bpy_types._Gener
|
|
|
3008
3007
|
"""
|
|
3009
3008
|
...
|
|
3010
3009
|
|
|
3011
|
-
class
|
|
3010
|
+
class PHYSICS_PT_dp_effects(PhysicButtonsPanel, bpy_types._GenericUI):
|
|
3012
3011
|
COMPAT_ENGINES: typing.Any
|
|
3013
3012
|
bl_context: typing.Any
|
|
3014
3013
|
bl_label: typing.Any
|
|
@@ -3051,17 +3050,10 @@ class PHYSICS_PT_dp_canvas_output_wetmaps(PhysicButtonsPanel, bpy_types._Generic
|
|
|
3051
3050
|
"""
|
|
3052
3051
|
...
|
|
3053
3052
|
|
|
3054
|
-
def draw(self,
|
|
3055
|
-
"""
|
|
3056
|
-
|
|
3057
|
-
:param context:
|
|
3058
|
-
"""
|
|
3059
|
-
...
|
|
3060
|
-
|
|
3061
|
-
def draw_header(self, context):
|
|
3053
|
+
def draw(self, _context):
|
|
3062
3054
|
"""
|
|
3063
3055
|
|
|
3064
|
-
:param
|
|
3056
|
+
:param _context:
|
|
3065
3057
|
"""
|
|
3066
3058
|
...
|
|
3067
3059
|
|
|
@@ -3286,7 +3278,7 @@ class PHYSICS_PT_dp_canvas_output_wetmaps(PhysicButtonsPanel, bpy_types._Generic
|
|
|
3286
3278
|
"""
|
|
3287
3279
|
...
|
|
3288
3280
|
|
|
3289
|
-
class
|
|
3281
|
+
class PHYSICS_PT_dp_effects_drip(PhysicButtonsPanel, bpy_types._GenericUI):
|
|
3290
3282
|
COMPAT_ENGINES: typing.Any
|
|
3291
3283
|
bl_context: typing.Any
|
|
3292
3284
|
bl_label: typing.Any
|
|
@@ -3329,10 +3321,17 @@ class PHYSICS_PT_dp_effects(PhysicButtonsPanel, bpy_types._GenericUI):
|
|
|
3329
3321
|
"""
|
|
3330
3322
|
...
|
|
3331
3323
|
|
|
3332
|
-
def draw(self,
|
|
3324
|
+
def draw(self, context):
|
|
3333
3325
|
"""
|
|
3334
3326
|
|
|
3335
|
-
:param
|
|
3327
|
+
:param context:
|
|
3328
|
+
"""
|
|
3329
|
+
...
|
|
3330
|
+
|
|
3331
|
+
def draw_header(self, context):
|
|
3332
|
+
"""
|
|
3333
|
+
|
|
3334
|
+
:param context:
|
|
3336
3335
|
"""
|
|
3337
3336
|
...
|
|
3338
3337
|
|
|
@@ -3557,7 +3556,7 @@ class PHYSICS_PT_dp_effects(PhysicButtonsPanel, bpy_types._GenericUI):
|
|
|
3557
3556
|
"""
|
|
3558
3557
|
...
|
|
3559
3558
|
|
|
3560
|
-
class
|
|
3559
|
+
class PHYSICS_PT_dp_effects_drip_weights(PhysicButtonsPanel, bpy_types._GenericUI):
|
|
3561
3560
|
COMPAT_ENGINES: typing.Any
|
|
3562
3561
|
bl_context: typing.Any
|
|
3563
3562
|
bl_label: typing.Any
|
|
@@ -3607,13 +3606,6 @@ class PHYSICS_PT_dp_effects_drip(PhysicButtonsPanel, bpy_types._GenericUI):
|
|
|
3607
3606
|
"""
|
|
3608
3607
|
...
|
|
3609
3608
|
|
|
3610
|
-
def draw_header(self, context):
|
|
3611
|
-
"""
|
|
3612
|
-
|
|
3613
|
-
:param context:
|
|
3614
|
-
"""
|
|
3615
|
-
...
|
|
3616
|
-
|
|
3617
3609
|
def driver_add(self) -> bpy.types.FCurve:
|
|
3618
3610
|
"""Adds driver(s) to the given property
|
|
3619
3611
|
|
|
@@ -3835,7 +3827,7 @@ class PHYSICS_PT_dp_effects_drip(PhysicButtonsPanel, bpy_types._GenericUI):
|
|
|
3835
3827
|
"""
|
|
3836
3828
|
...
|
|
3837
3829
|
|
|
3838
|
-
class
|
|
3830
|
+
class PHYSICS_PT_dp_effects_shrink(PhysicButtonsPanel, bpy_types._GenericUI):
|
|
3839
3831
|
COMPAT_ENGINES: typing.Any
|
|
3840
3832
|
bl_context: typing.Any
|
|
3841
3833
|
bl_label: typing.Any
|
|
@@ -3885,6 +3877,13 @@ class PHYSICS_PT_dp_effects_drip_weights(PhysicButtonsPanel, bpy_types._GenericU
|
|
|
3885
3877
|
"""
|
|
3886
3878
|
...
|
|
3887
3879
|
|
|
3880
|
+
def draw_header(self, context):
|
|
3881
|
+
"""
|
|
3882
|
+
|
|
3883
|
+
:param context:
|
|
3884
|
+
"""
|
|
3885
|
+
...
|
|
3886
|
+
|
|
3888
3887
|
def driver_add(self) -> bpy.types.FCurve:
|
|
3889
3888
|
"""Adds driver(s) to the given property
|
|
3890
3889
|
|
|
@@ -4106,7 +4105,7 @@ class PHYSICS_PT_dp_effects_drip_weights(PhysicButtonsPanel, bpy_types._GenericU
|
|
|
4106
4105
|
"""
|
|
4107
4106
|
...
|
|
4108
4107
|
|
|
4109
|
-
class
|
|
4108
|
+
class PHYSICS_PT_dp_effects_spread(PhysicButtonsPanel, bpy_types._GenericUI):
|
|
4110
4109
|
COMPAT_ENGINES: typing.Any
|
|
4111
4110
|
bl_context: typing.Any
|
|
4112
4111
|
bl_label: typing.Any
|
|
@@ -4384,11 +4383,10 @@ class PHYSICS_PT_dp_effects_shrink(PhysicButtonsPanel, bpy_types._GenericUI):
|
|
|
4384
4383
|
"""
|
|
4385
4384
|
...
|
|
4386
4385
|
|
|
4387
|
-
class
|
|
4386
|
+
class PHYSICS_PT_dp_surface_canvas(PhysicButtonsPanel, bpy_types._GenericUI):
|
|
4388
4387
|
COMPAT_ENGINES: typing.Any
|
|
4389
4388
|
bl_context: typing.Any
|
|
4390
4389
|
bl_label: typing.Any
|
|
4391
|
-
bl_options: typing.Any
|
|
4392
4390
|
bl_parent_id: typing.Any
|
|
4393
4391
|
bl_region_type: typing.Any
|
|
4394
4392
|
bl_rna: typing.Any
|
|
@@ -4434,13 +4432,6 @@ class PHYSICS_PT_dp_effects_spread(PhysicButtonsPanel, bpy_types._GenericUI):
|
|
|
4434
4432
|
"""
|
|
4435
4433
|
...
|
|
4436
4434
|
|
|
4437
|
-
def draw_header(self, context):
|
|
4438
|
-
"""
|
|
4439
|
-
|
|
4440
|
-
:param context:
|
|
4441
|
-
"""
|
|
4442
|
-
...
|
|
4443
|
-
|
|
4444
4435
|
def driver_add(self) -> bpy.types.FCurve:
|
|
4445
4436
|
"""Adds driver(s) to the given property
|
|
4446
4437
|
|
|
@@ -4662,14 +4653,18 @@ class PHYSICS_PT_dp_effects_spread(PhysicButtonsPanel, bpy_types._GenericUI):
|
|
|
4662
4653
|
"""
|
|
4663
4654
|
...
|
|
4664
4655
|
|
|
4665
|
-
class
|
|
4656
|
+
class PHYSICS_PT_dp_surface_canvas_paint_dissolve(
|
|
4657
|
+
PhysicButtonsPanel, bpy_types._GenericUI
|
|
4658
|
+
):
|
|
4666
4659
|
COMPAT_ENGINES: typing.Any
|
|
4667
4660
|
bl_context: typing.Any
|
|
4668
4661
|
bl_label: typing.Any
|
|
4662
|
+
bl_options: typing.Any
|
|
4669
4663
|
bl_parent_id: typing.Any
|
|
4670
4664
|
bl_region_type: typing.Any
|
|
4671
4665
|
bl_rna: typing.Any
|
|
4672
4666
|
bl_space_type: typing.Any
|
|
4667
|
+
bl_translation_context: typing.Any
|
|
4673
4668
|
id_data: typing.Any
|
|
4674
4669
|
|
|
4675
4670
|
def append(self, draw_func):
|
|
@@ -4711,6 +4706,13 @@ class PHYSICS_PT_dp_surface_canvas(PhysicButtonsPanel, bpy_types._GenericUI):
|
|
|
4711
4706
|
"""
|
|
4712
4707
|
...
|
|
4713
4708
|
|
|
4709
|
+
def draw_header(self, context):
|
|
4710
|
+
"""
|
|
4711
|
+
|
|
4712
|
+
:param context:
|
|
4713
|
+
"""
|
|
4714
|
+
...
|
|
4715
|
+
|
|
4714
4716
|
def driver_add(self) -> bpy.types.FCurve:
|
|
4715
4717
|
"""Adds driver(s) to the given property
|
|
4716
4718
|
|
|
@@ -4932,9 +4934,7 @@ class PHYSICS_PT_dp_surface_canvas(PhysicButtonsPanel, bpy_types._GenericUI):
|
|
|
4932
4934
|
"""
|
|
4933
4935
|
...
|
|
4934
4936
|
|
|
4935
|
-
class
|
|
4936
|
-
PhysicButtonsPanel, bpy_types._GenericUI
|
|
4937
|
-
):
|
|
4937
|
+
class PHYSICS_PT_dp_surface_canvas_paint_dry(PhysicButtonsPanel, bpy_types._GenericUI):
|
|
4938
4938
|
COMPAT_ENGINES: typing.Any
|
|
4939
4939
|
bl_context: typing.Any
|
|
4940
4940
|
bl_label: typing.Any
|
|
@@ -4943,7 +4943,6 @@ class PHYSICS_PT_dp_surface_canvas_paint_dissolve(
|
|
|
4943
4943
|
bl_region_type: typing.Any
|
|
4944
4944
|
bl_rna: typing.Any
|
|
4945
4945
|
bl_space_type: typing.Any
|
|
4946
|
-
bl_translation_context: typing.Any
|
|
4947
4946
|
id_data: typing.Any
|
|
4948
4947
|
|
|
4949
4948
|
def append(self, draw_func):
|
|
@@ -5213,12 +5212,10 @@ class PHYSICS_PT_dp_surface_canvas_paint_dissolve(
|
|
|
5213
5212
|
"""
|
|
5214
5213
|
...
|
|
5215
5214
|
|
|
5216
|
-
class
|
|
5215
|
+
class PHYSICS_PT_dynamic_paint(PhysicButtonsPanel, bpy_types._GenericUI):
|
|
5217
5216
|
COMPAT_ENGINES: typing.Any
|
|
5218
5217
|
bl_context: typing.Any
|
|
5219
5218
|
bl_label: typing.Any
|
|
5220
|
-
bl_options: typing.Any
|
|
5221
|
-
bl_parent_id: typing.Any
|
|
5222
5219
|
bl_region_type: typing.Any
|
|
5223
5220
|
bl_rna: typing.Any
|
|
5224
5221
|
bl_space_type: typing.Any
|
|
@@ -5263,13 +5260,6 @@ class PHYSICS_PT_dp_surface_canvas_paint_dry(PhysicButtonsPanel, bpy_types._Gene
|
|
|
5263
5260
|
"""
|
|
5264
5261
|
...
|
|
5265
5262
|
|
|
5266
|
-
def draw_header(self, context):
|
|
5267
|
-
"""
|
|
5268
|
-
|
|
5269
|
-
:param context:
|
|
5270
|
-
"""
|
|
5271
|
-
...
|
|
5272
|
-
|
|
5273
5263
|
def driver_add(self) -> bpy.types.FCurve:
|
|
5274
5264
|
"""Adds driver(s) to the given property
|
|
5275
5265
|
|
|
@@ -5491,10 +5481,11 @@ class PHYSICS_PT_dp_surface_canvas_paint_dry(PhysicButtonsPanel, bpy_types._Gene
|
|
|
5491
5481
|
"""
|
|
5492
5482
|
...
|
|
5493
5483
|
|
|
5494
|
-
class
|
|
5484
|
+
class PHYSICS_PT_dynamic_paint_settings(PhysicButtonsPanel, bpy_types._GenericUI):
|
|
5495
5485
|
COMPAT_ENGINES: typing.Any
|
|
5496
5486
|
bl_context: typing.Any
|
|
5497
5487
|
bl_label: typing.Any
|
|
5488
|
+
bl_parent_id: typing.Any
|
|
5498
5489
|
bl_region_type: typing.Any
|
|
5499
5490
|
bl_rna: typing.Any
|
|
5500
5491
|
bl_space_type: typing.Any
|
|
@@ -5760,14 +5751,8 @@ class PHYSICS_PT_dynamic_paint(PhysicButtonsPanel, bpy_types._GenericUI):
|
|
|
5760
5751
|
"""
|
|
5761
5752
|
...
|
|
5762
5753
|
|
|
5763
|
-
class
|
|
5764
|
-
COMPAT_ENGINES: typing.Any
|
|
5765
|
-
bl_context: typing.Any
|
|
5766
|
-
bl_label: typing.Any
|
|
5767
|
-
bl_parent_id: typing.Any
|
|
5768
|
-
bl_region_type: typing.Any
|
|
5754
|
+
class PHYSICS_UL_dynapaint_surfaces(bpy_types._GenericUI):
|
|
5769
5755
|
bl_rna: typing.Any
|
|
5770
|
-
bl_space_type: typing.Any
|
|
5771
5756
|
id_data: typing.Any
|
|
5772
5757
|
|
|
5773
5758
|
def append(self, draw_func):
|
|
@@ -5802,10 +5787,27 @@ class PHYSICS_PT_dynamic_paint_settings(PhysicButtonsPanel, bpy_types._GenericUI
|
|
|
5802
5787
|
"""
|
|
5803
5788
|
...
|
|
5804
5789
|
|
|
5805
|
-
def
|
|
5790
|
+
def draw_item(
|
|
5791
|
+
self,
|
|
5792
|
+
_context,
|
|
5793
|
+
layout,
|
|
5794
|
+
_data,
|
|
5795
|
+
item,
|
|
5796
|
+
icon,
|
|
5797
|
+
_active_data,
|
|
5798
|
+
_active_propname,
|
|
5799
|
+
_index,
|
|
5800
|
+
):
|
|
5806
5801
|
"""
|
|
5807
5802
|
|
|
5808
|
-
:param
|
|
5803
|
+
:param _context:
|
|
5804
|
+
:param layout:
|
|
5805
|
+
:param _data:
|
|
5806
|
+
:param item:
|
|
5807
|
+
:param icon:
|
|
5808
|
+
:param _active_data:
|
|
5809
|
+
:param _active_propname:
|
|
5810
|
+
:param _index:
|
|
5809
5811
|
"""
|
|
5810
5812
|
...
|
|
5811
5813
|
|
|
@@ -5931,101 +5933,99 @@ class PHYSICS_PT_dynamic_paint_settings(PhysicButtonsPanel, bpy_types._GenericUI
|
|
|
5931
5933
|
"""Returns the property from the path, raise an exception when not found."""
|
|
5932
5934
|
...
|
|
5933
5935
|
|
|
5934
|
-
def
|
|
5935
|
-
"""
|
|
5936
|
+
def pop(self):
|
|
5937
|
+
"""Remove and return the value of the custom property assigned to key or default
|
|
5938
|
+
when not found (matches Python's dictionary function of the same name).
|
|
5936
5939
|
|
|
5937
|
-
:param context:
|
|
5938
5940
|
"""
|
|
5939
5941
|
...
|
|
5940
5942
|
|
|
5941
|
-
def
|
|
5942
|
-
"""
|
|
5943
|
+
def prepend(self, draw_func):
|
|
5944
|
+
"""Prepend a draw function to this menu, takes the same arguments as
|
|
5945
|
+
the menus draw function
|
|
5943
5946
|
|
|
5944
|
-
|
|
5947
|
+
:param draw_func:
|
|
5945
5948
|
"""
|
|
5946
5949
|
...
|
|
5947
5950
|
|
|
5948
|
-
def
|
|
5949
|
-
"""
|
|
5951
|
+
def property_overridable_library_set(self) -> bool:
|
|
5952
|
+
"""Define a property as overridable or not (only for custom properties!).
|
|
5950
5953
|
|
|
5951
|
-
:
|
|
5954
|
+
:return: True when the overridable status of the property was successfully set.
|
|
5955
|
+
:rtype: bool
|
|
5952
5956
|
"""
|
|
5953
5957
|
...
|
|
5954
5958
|
|
|
5955
|
-
def
|
|
5956
|
-
"""
|
|
5959
|
+
def property_unset(self):
|
|
5960
|
+
"""Unset a property, will use default value afterward."""
|
|
5961
|
+
...
|
|
5957
5962
|
|
|
5958
|
-
|
|
5963
|
+
def remove(self, draw_func):
|
|
5964
|
+
"""Remove a draw function that has been added to this menu
|
|
5965
|
+
|
|
5966
|
+
:param draw_func:
|
|
5959
5967
|
"""
|
|
5960
5968
|
...
|
|
5961
5969
|
|
|
5962
|
-
def
|
|
5963
|
-
"""
|
|
5970
|
+
def type_recast(self):
|
|
5971
|
+
"""Return a new instance, this is needed because types
|
|
5972
|
+
such as textures can be changed at runtime.
|
|
5964
5973
|
|
|
5965
|
-
|
|
5974
|
+
:return: a new instance of this object with the type initialized again.
|
|
5966
5975
|
"""
|
|
5967
5976
|
...
|
|
5968
5977
|
|
|
5969
|
-
def
|
|
5970
|
-
"""
|
|
5978
|
+
def values(self):
|
|
5979
|
+
"""Returns the values of this objects custom properties (matches Python's
|
|
5980
|
+
dictionary function of the same name).
|
|
5971
5981
|
|
|
5972
|
-
|
|
5982
|
+
:return: custom property values.
|
|
5973
5983
|
"""
|
|
5974
5984
|
...
|
|
5975
5985
|
|
|
5976
|
-
|
|
5986
|
+
class PhysicButtonsPanel:
|
|
5987
|
+
bl_context: typing.Any
|
|
5988
|
+
bl_region_type: typing.Any
|
|
5989
|
+
bl_space_type: typing.Any
|
|
5990
|
+
|
|
5991
|
+
def poll_dyn_canvas(self, context):
|
|
5977
5992
|
"""
|
|
5978
5993
|
|
|
5979
5994
|
:param context:
|
|
5980
5995
|
"""
|
|
5981
5996
|
...
|
|
5982
5997
|
|
|
5983
|
-
def
|
|
5984
|
-
"""Remove and return the value of the custom property assigned to key or default
|
|
5985
|
-
when not found (matches Python's dictionary function of the same name).
|
|
5986
|
-
|
|
5998
|
+
def poll_dyn_canvas_brush(self, context):
|
|
5987
5999
|
"""
|
|
5988
|
-
...
|
|
5989
6000
|
|
|
5990
|
-
|
|
5991
|
-
"""Prepend a draw function to this menu, takes the same arguments as
|
|
5992
|
-
the menus draw function
|
|
5993
|
-
|
|
5994
|
-
:param draw_func:
|
|
6001
|
+
:param context:
|
|
5995
6002
|
"""
|
|
5996
6003
|
...
|
|
5997
6004
|
|
|
5998
|
-
def
|
|
5999
|
-
"""Define a property as overridable or not (only for custom properties!).
|
|
6000
|
-
|
|
6001
|
-
:return: True when the overridable status of the property was successfully set.
|
|
6002
|
-
:rtype: bool
|
|
6005
|
+
def poll_dyn_canvas_paint(self, context):
|
|
6003
6006
|
"""
|
|
6004
|
-
...
|
|
6005
6007
|
|
|
6006
|
-
|
|
6007
|
-
"""
|
|
6008
|
+
:param context:
|
|
6009
|
+
"""
|
|
6008
6010
|
...
|
|
6009
6011
|
|
|
6010
|
-
def
|
|
6011
|
-
"""
|
|
6012
|
+
def poll_dyn_output(self, context):
|
|
6013
|
+
"""
|
|
6012
6014
|
|
|
6013
|
-
:param
|
|
6015
|
+
:param context:
|
|
6014
6016
|
"""
|
|
6015
6017
|
...
|
|
6016
6018
|
|
|
6017
|
-
def
|
|
6018
|
-
"""
|
|
6019
|
-
such as textures can be changed at runtime.
|
|
6019
|
+
def poll_dyn_output_maps(self, context):
|
|
6020
|
+
"""
|
|
6020
6021
|
|
|
6021
|
-
|
|
6022
|
+
:param context:
|
|
6022
6023
|
"""
|
|
6023
6024
|
...
|
|
6024
6025
|
|
|
6025
|
-
def
|
|
6026
|
-
"""
|
|
6027
|
-
dictionary function of the same name).
|
|
6026
|
+
def poll_dyn_paint(self, context):
|
|
6027
|
+
"""
|
|
6028
6028
|
|
|
6029
|
-
|
|
6029
|
+
:param context:
|
|
6030
6030
|
"""
|
|
6031
6031
|
...
|