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,21 +7,14 @@ import bpy_types
|
|
|
7
7
|
GenericType1 = typing.TypeVar("GenericType1")
|
|
8
8
|
GenericType2 = typing.TypeVar("GenericType2")
|
|
9
9
|
|
|
10
|
-
class MaterialFreestyleButtonsPanel:
|
|
10
|
+
class MATERIAL_PT_freestyle_line(MaterialFreestyleButtonsPanel, bpy_types._GenericUI):
|
|
11
|
+
COMPAT_ENGINES: typing.Any
|
|
11
12
|
bl_context: typing.Any
|
|
12
|
-
bl_region_type: typing.Any
|
|
13
|
-
bl_space_type: typing.Any
|
|
14
|
-
|
|
15
|
-
def poll(self, context):
|
|
16
|
-
"""
|
|
17
|
-
|
|
18
|
-
:param context:
|
|
19
|
-
"""
|
|
20
|
-
...
|
|
21
|
-
|
|
22
|
-
class RENDER_MT_lineset_context_menu(bpy_types._GenericUI):
|
|
23
13
|
bl_label: typing.Any
|
|
14
|
+
bl_options: typing.Any
|
|
15
|
+
bl_region_type: typing.Any
|
|
24
16
|
bl_rna: typing.Any
|
|
17
|
+
bl_space_type: typing.Any
|
|
25
18
|
id_data: typing.Any
|
|
26
19
|
|
|
27
20
|
def append(self, draw_func):
|
|
@@ -56,30 +49,10 @@ class RENDER_MT_lineset_context_menu(bpy_types._GenericUI):
|
|
|
56
49
|
"""
|
|
57
50
|
...
|
|
58
51
|
|
|
59
|
-
def draw(self,
|
|
60
|
-
"""
|
|
61
|
-
|
|
62
|
-
:param _context:
|
|
63
|
-
"""
|
|
64
|
-
...
|
|
65
|
-
|
|
66
|
-
def draw_collapsible(self, context, layout):
|
|
52
|
+
def draw(self, context):
|
|
67
53
|
"""
|
|
68
54
|
|
|
69
55
|
:param context:
|
|
70
|
-
:param layout:
|
|
71
|
-
"""
|
|
72
|
-
...
|
|
73
|
-
|
|
74
|
-
def draw_preset(self, _context):
|
|
75
|
-
"""Define these on the subclass:
|
|
76
|
-
- preset_operator (string)
|
|
77
|
-
- preset_subdir (string)Optionally:
|
|
78
|
-
- preset_add_operator (string)
|
|
79
|
-
- preset_extensions (set of strings)
|
|
80
|
-
- preset_operator_defaults (dict of keyword args)
|
|
81
|
-
|
|
82
|
-
:param _context:
|
|
83
56
|
"""
|
|
84
57
|
...
|
|
85
58
|
|
|
@@ -201,42 +174,15 @@ class RENDER_MT_lineset_context_menu(bpy_types._GenericUI):
|
|
|
201
174
|
"""
|
|
202
175
|
...
|
|
203
176
|
|
|
204
|
-
def
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
operator: str,
|
|
208
|
-
props_default: dict = None,
|
|
209
|
-
prop_filepath: str | None = "filepath",
|
|
210
|
-
filter_ext: collections.abc.Callable | None = None,
|
|
211
|
-
filter_path=None,
|
|
212
|
-
display_name: collections.abc.Callable | None = None,
|
|
213
|
-
add_operator=None,
|
|
214
|
-
add_operator_props=None,
|
|
215
|
-
):
|
|
216
|
-
"""Populate a menu from a list of paths.
|
|
217
|
-
|
|
218
|
-
:param searchpaths: Paths to scan.
|
|
219
|
-
:type searchpaths: list[str]
|
|
220
|
-
:param operator: The operator id to use with each file.
|
|
221
|
-
:type operator: str
|
|
222
|
-
:param props_default: Properties to assign to each operator.
|
|
223
|
-
:type props_default: dict
|
|
224
|
-
:param prop_filepath: Optional operator filepath property (defaults to "filepath").
|
|
225
|
-
:type prop_filepath: str | None
|
|
226
|
-
:param filter_ext: Optional callback that takes the file extensions.
|
|
177
|
+
def path_resolve(self):
|
|
178
|
+
"""Returns the property from the path, raise an exception when not found."""
|
|
179
|
+
...
|
|
227
180
|
|
|
228
|
-
|
|
229
|
-
:type filter_ext: collections.abc.Callable | None
|
|
230
|
-
:param filter_path:
|
|
231
|
-
:param display_name: Optional callback that takes the full path, returns the name to display.
|
|
232
|
-
:type display_name: collections.abc.Callable | None
|
|
233
|
-
:param add_operator:
|
|
234
|
-
:param add_operator_props:
|
|
181
|
+
def poll(self, context):
|
|
235
182
|
"""
|
|
236
|
-
...
|
|
237
183
|
|
|
238
|
-
|
|
239
|
-
"""
|
|
184
|
+
:param context:
|
|
185
|
+
"""
|
|
240
186
|
...
|
|
241
187
|
|
|
242
188
|
def pop(self):
|
|
@@ -289,21 +235,8 @@ class RENDER_MT_lineset_context_menu(bpy_types._GenericUI):
|
|
|
289
235
|
"""
|
|
290
236
|
...
|
|
291
237
|
|
|
292
|
-
class
|
|
293
|
-
bl_context: typing.Any
|
|
294
|
-
bl_region_type: typing.Any
|
|
295
|
-
bl_space_type: typing.Any
|
|
296
|
-
|
|
297
|
-
def poll(self, context):
|
|
298
|
-
"""
|
|
299
|
-
|
|
300
|
-
:param context:
|
|
301
|
-
"""
|
|
302
|
-
...
|
|
303
|
-
|
|
304
|
-
class ViewLayerFreestyleButtonsPanel:
|
|
238
|
+
class MaterialFreestyleButtonsPanel:
|
|
305
239
|
bl_context: typing.Any
|
|
306
|
-
bl_order: typing.Any
|
|
307
240
|
bl_region_type: typing.Any
|
|
308
241
|
bl_space_type: typing.Any
|
|
309
242
|
|
|
@@ -314,7 +247,8 @@ class ViewLayerFreestyleButtonsPanel:
|
|
|
314
247
|
"""
|
|
315
248
|
...
|
|
316
249
|
|
|
317
|
-
class
|
|
250
|
+
class RENDER_MT_lineset_context_menu(bpy_types._GenericUI):
|
|
251
|
+
bl_label: typing.Any
|
|
318
252
|
bl_rna: typing.Any
|
|
319
253
|
id_data: typing.Any
|
|
320
254
|
|
|
@@ -350,19 +284,30 @@ class VIEWLAYER_UL_linesets(bpy_types._GenericUI):
|
|
|
350
284
|
"""
|
|
351
285
|
...
|
|
352
286
|
|
|
353
|
-
def
|
|
354
|
-
self, _context, layout, _data, item, icon, _active_data, _active_propname, index
|
|
355
|
-
):
|
|
287
|
+
def draw(self, _context):
|
|
356
288
|
"""
|
|
357
289
|
|
|
358
290
|
:param _context:
|
|
291
|
+
"""
|
|
292
|
+
...
|
|
293
|
+
|
|
294
|
+
def draw_collapsible(self, context, layout):
|
|
295
|
+
"""
|
|
296
|
+
|
|
297
|
+
:param context:
|
|
359
298
|
:param layout:
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
299
|
+
"""
|
|
300
|
+
...
|
|
301
|
+
|
|
302
|
+
def draw_preset(self, _context):
|
|
303
|
+
"""Define these on the subclass:
|
|
304
|
+
- preset_operator (string)
|
|
305
|
+
- preset_subdir (string)Optionally:
|
|
306
|
+
- preset_add_operator (string)
|
|
307
|
+
- preset_extensions (set of strings)
|
|
308
|
+
- preset_operator_defaults (dict of keyword args)
|
|
309
|
+
|
|
310
|
+
:param _context:
|
|
366
311
|
"""
|
|
367
312
|
...
|
|
368
313
|
|
|
@@ -484,6 +429,40 @@ class VIEWLAYER_UL_linesets(bpy_types._GenericUI):
|
|
|
484
429
|
"""
|
|
485
430
|
...
|
|
486
431
|
|
|
432
|
+
def path_menu(
|
|
433
|
+
self,
|
|
434
|
+
searchpaths: list[str],
|
|
435
|
+
operator: str,
|
|
436
|
+
props_default: dict = None,
|
|
437
|
+
prop_filepath: str | None = "filepath",
|
|
438
|
+
filter_ext: collections.abc.Callable | None = None,
|
|
439
|
+
filter_path=None,
|
|
440
|
+
display_name: collections.abc.Callable | None = None,
|
|
441
|
+
add_operator=None,
|
|
442
|
+
add_operator_props=None,
|
|
443
|
+
):
|
|
444
|
+
"""Populate a menu from a list of paths.
|
|
445
|
+
|
|
446
|
+
:param searchpaths: Paths to scan.
|
|
447
|
+
:type searchpaths: list[str]
|
|
448
|
+
:param operator: The operator id to use with each file.
|
|
449
|
+
:type operator: str
|
|
450
|
+
:param props_default: Properties to assign to each operator.
|
|
451
|
+
:type props_default: dict
|
|
452
|
+
:param prop_filepath: Optional operator filepath property (defaults to "filepath").
|
|
453
|
+
:type prop_filepath: str | None
|
|
454
|
+
:param filter_ext: Optional callback that takes the file extensions.
|
|
455
|
+
|
|
456
|
+
Returning false excludes the file from the list.
|
|
457
|
+
:type filter_ext: collections.abc.Callable | None
|
|
458
|
+
:param filter_path:
|
|
459
|
+
:param display_name: Optional callback that takes the full path, returns the name to display.
|
|
460
|
+
:type display_name: collections.abc.Callable | None
|
|
461
|
+
:param add_operator:
|
|
462
|
+
:param add_operator_props:
|
|
463
|
+
"""
|
|
464
|
+
...
|
|
465
|
+
|
|
487
466
|
def path_resolve(self):
|
|
488
467
|
"""Returns the property from the path, raise an exception when not found."""
|
|
489
468
|
...
|
|
@@ -538,11 +517,12 @@ class VIEWLAYER_UL_linesets(bpy_types._GenericUI):
|
|
|
538
517
|
"""
|
|
539
518
|
...
|
|
540
519
|
|
|
541
|
-
class
|
|
520
|
+
class RENDER_PT_freestyle(RenderFreestyleButtonsPanel, bpy_types._GenericUI):
|
|
542
521
|
COMPAT_ENGINES: typing.Any
|
|
543
522
|
bl_context: typing.Any
|
|
544
523
|
bl_label: typing.Any
|
|
545
524
|
bl_options: typing.Any
|
|
525
|
+
bl_order: typing.Any
|
|
546
526
|
bl_region_type: typing.Any
|
|
547
527
|
bl_rna: typing.Any
|
|
548
528
|
bl_space_type: typing.Any
|
|
@@ -587,6 +567,13 @@ class MATERIAL_PT_freestyle_line(MaterialFreestyleButtonsPanel, bpy_types._Gener
|
|
|
587
567
|
"""
|
|
588
568
|
...
|
|
589
569
|
|
|
570
|
+
def draw_header(self, context):
|
|
571
|
+
"""
|
|
572
|
+
|
|
573
|
+
:param context:
|
|
574
|
+
"""
|
|
575
|
+
...
|
|
576
|
+
|
|
590
577
|
def driver_add(self) -> bpy.types.FCurve:
|
|
591
578
|
"""Adds driver(s) to the given property
|
|
592
579
|
|
|
@@ -766,11 +753,22 @@ class MATERIAL_PT_freestyle_line(MaterialFreestyleButtonsPanel, bpy_types._Gener
|
|
|
766
753
|
"""
|
|
767
754
|
...
|
|
768
755
|
|
|
769
|
-
class
|
|
756
|
+
class RenderFreestyleButtonsPanel:
|
|
757
|
+
bl_context: typing.Any
|
|
758
|
+
bl_region_type: typing.Any
|
|
759
|
+
bl_space_type: typing.Any
|
|
760
|
+
|
|
761
|
+
def poll(self, context):
|
|
762
|
+
"""
|
|
763
|
+
|
|
764
|
+
:param context:
|
|
765
|
+
"""
|
|
766
|
+
...
|
|
767
|
+
|
|
768
|
+
class VIEWLAYER_PT_freestyle(ViewLayerFreestyleButtonsPanel, bpy_types._GenericUI):
|
|
770
769
|
COMPAT_ENGINES: typing.Any
|
|
771
770
|
bl_context: typing.Any
|
|
772
771
|
bl_label: typing.Any
|
|
773
|
-
bl_options: typing.Any
|
|
774
772
|
bl_order: typing.Any
|
|
775
773
|
bl_region_type: typing.Any
|
|
776
774
|
bl_rna: typing.Any
|
|
@@ -1002,11 +1000,14 @@ class RENDER_PT_freestyle(RenderFreestyleButtonsPanel, bpy_types._GenericUI):
|
|
|
1002
1000
|
"""
|
|
1003
1001
|
...
|
|
1004
1002
|
|
|
1005
|
-
class
|
|
1003
|
+
class VIEWLAYER_PT_freestyle_edge_detection(
|
|
1004
|
+
ViewLayerFreestyleButtonsPanel, bpy_types._GenericUI
|
|
1005
|
+
):
|
|
1006
1006
|
COMPAT_ENGINES: typing.Any
|
|
1007
1007
|
bl_context: typing.Any
|
|
1008
1008
|
bl_label: typing.Any
|
|
1009
1009
|
bl_order: typing.Any
|
|
1010
|
+
bl_parent_id: typing.Any
|
|
1010
1011
|
bl_region_type: typing.Any
|
|
1011
1012
|
bl_rna: typing.Any
|
|
1012
1013
|
bl_space_type: typing.Any
|
|
@@ -1051,13 +1052,6 @@ class VIEWLAYER_PT_freestyle(ViewLayerFreestyleButtonsPanel, bpy_types._GenericU
|
|
|
1051
1052
|
"""
|
|
1052
1053
|
...
|
|
1053
1054
|
|
|
1054
|
-
def draw_header(self, context):
|
|
1055
|
-
"""
|
|
1056
|
-
|
|
1057
|
-
:param context:
|
|
1058
|
-
"""
|
|
1059
|
-
...
|
|
1060
|
-
|
|
1061
1055
|
def driver_add(self) -> bpy.types.FCurve:
|
|
1062
1056
|
"""Adds driver(s) to the given property
|
|
1063
1057
|
|
|
@@ -1237,14 +1231,15 @@ class VIEWLAYER_PT_freestyle(ViewLayerFreestyleButtonsPanel, bpy_types._GenericU
|
|
|
1237
1231
|
"""
|
|
1238
1232
|
...
|
|
1239
1233
|
|
|
1240
|
-
class
|
|
1241
|
-
|
|
1234
|
+
class VIEWLAYER_PT_freestyle_lineset(
|
|
1235
|
+
ViewLayerFreestyleEditorButtonsPanel,
|
|
1236
|
+
ViewLayerFreestyleButtonsPanel,
|
|
1237
|
+
bpy_types._GenericUI,
|
|
1242
1238
|
):
|
|
1243
1239
|
COMPAT_ENGINES: typing.Any
|
|
1244
1240
|
bl_context: typing.Any
|
|
1245
1241
|
bl_label: typing.Any
|
|
1246
1242
|
bl_order: typing.Any
|
|
1247
|
-
bl_parent_id: typing.Any
|
|
1248
1243
|
bl_region_type: typing.Any
|
|
1249
1244
|
bl_rna: typing.Any
|
|
1250
1245
|
bl_space_type: typing.Any
|
|
@@ -1289,6 +1284,15 @@ class VIEWLAYER_PT_freestyle_edge_detection(
|
|
|
1289
1284
|
"""
|
|
1290
1285
|
...
|
|
1291
1286
|
|
|
1287
|
+
def draw_edge_type_buttons(self, box, lineset, edge_type):
|
|
1288
|
+
"""
|
|
1289
|
+
|
|
1290
|
+
:param box:
|
|
1291
|
+
:param lineset:
|
|
1292
|
+
:param edge_type:
|
|
1293
|
+
"""
|
|
1294
|
+
...
|
|
1295
|
+
|
|
1292
1296
|
def driver_add(self) -> bpy.types.FCurve:
|
|
1293
1297
|
"""Adds driver(s) to the given property
|
|
1294
1298
|
|
|
@@ -1468,12 +1472,16 @@ class VIEWLAYER_PT_freestyle_edge_detection(
|
|
|
1468
1472
|
"""
|
|
1469
1473
|
...
|
|
1470
1474
|
|
|
1471
|
-
class
|
|
1472
|
-
|
|
1475
|
+
class VIEWLAYER_PT_freestyle_lineset_collection(
|
|
1476
|
+
ViewLayerFreestyleEditorButtonsPanel,
|
|
1477
|
+
ViewLayerFreestyleLineStyle,
|
|
1478
|
+
ViewLayerFreestyleButtonsPanel,
|
|
1479
|
+
bpy_types._GenericUI,
|
|
1473
1480
|
):
|
|
1474
1481
|
COMPAT_ENGINES: typing.Any
|
|
1475
1482
|
bl_context: typing.Any
|
|
1476
1483
|
bl_label: typing.Any
|
|
1484
|
+
bl_options: typing.Any
|
|
1477
1485
|
bl_order: typing.Any
|
|
1478
1486
|
bl_parent_id: typing.Any
|
|
1479
1487
|
bl_region_type: typing.Any
|
|
@@ -1520,6 +1528,13 @@ class VIEWLAYER_PT_freestyle_style_modules(
|
|
|
1520
1528
|
"""
|
|
1521
1529
|
...
|
|
1522
1530
|
|
|
1531
|
+
def draw_header(self, context):
|
|
1532
|
+
"""
|
|
1533
|
+
|
|
1534
|
+
:param context:
|
|
1535
|
+
"""
|
|
1536
|
+
...
|
|
1537
|
+
|
|
1523
1538
|
def driver_add(self) -> bpy.types.FCurve:
|
|
1524
1539
|
"""Adds driver(s) to the given property
|
|
1525
1540
|
|
|
@@ -1699,21 +1714,9 @@ class VIEWLAYER_PT_freestyle_style_modules(
|
|
|
1699
1714
|
"""
|
|
1700
1715
|
...
|
|
1701
1716
|
|
|
1702
|
-
class
|
|
1703
|
-
bl_context: typing.Any
|
|
1704
|
-
bl_order: typing.Any
|
|
1705
|
-
bl_region_type: typing.Any
|
|
1706
|
-
bl_space_type: typing.Any
|
|
1707
|
-
|
|
1708
|
-
def poll(self, context):
|
|
1709
|
-
"""
|
|
1710
|
-
|
|
1711
|
-
:param context:
|
|
1712
|
-
"""
|
|
1713
|
-
...
|
|
1714
|
-
|
|
1715
|
-
class VIEWLAYER_PT_freestyle_lineset(
|
|
1717
|
+
class VIEWLAYER_PT_freestyle_lineset_edgetype(
|
|
1716
1718
|
ViewLayerFreestyleEditorButtonsPanel,
|
|
1719
|
+
ViewLayerFreestyleLineStyle,
|
|
1717
1720
|
ViewLayerFreestyleButtonsPanel,
|
|
1718
1721
|
bpy_types._GenericUI,
|
|
1719
1722
|
):
|
|
@@ -1721,6 +1724,7 @@ class VIEWLAYER_PT_freestyle_lineset(
|
|
|
1721
1724
|
bl_context: typing.Any
|
|
1722
1725
|
bl_label: typing.Any
|
|
1723
1726
|
bl_order: typing.Any
|
|
1727
|
+
bl_parent_id: typing.Any
|
|
1724
1728
|
bl_region_type: typing.Any
|
|
1725
1729
|
bl_rna: typing.Any
|
|
1726
1730
|
bl_space_type: typing.Any
|
|
@@ -1774,6 +1778,13 @@ class VIEWLAYER_PT_freestyle_lineset(
|
|
|
1774
1778
|
"""
|
|
1775
1779
|
...
|
|
1776
1780
|
|
|
1781
|
+
def draw_header(self, context):
|
|
1782
|
+
"""
|
|
1783
|
+
|
|
1784
|
+
:param context:
|
|
1785
|
+
"""
|
|
1786
|
+
...
|
|
1787
|
+
|
|
1777
1788
|
def driver_add(self) -> bpy.types.FCurve:
|
|
1778
1789
|
"""Adds driver(s) to the given property
|
|
1779
1790
|
|
|
@@ -1953,23 +1964,7 @@ class VIEWLAYER_PT_freestyle_lineset(
|
|
|
1953
1964
|
"""
|
|
1954
1965
|
...
|
|
1955
1966
|
|
|
1956
|
-
class
|
|
1957
|
-
ViewLayerFreestyleEditorButtonsPanel, ViewLayerFreestyleButtonsPanel
|
|
1958
|
-
):
|
|
1959
|
-
COMPAT_ENGINES: typing.Any
|
|
1960
|
-
bl_context: typing.Any
|
|
1961
|
-
bl_order: typing.Any
|
|
1962
|
-
bl_region_type: typing.Any
|
|
1963
|
-
bl_space_type: typing.Any
|
|
1964
|
-
|
|
1965
|
-
def poll(self, context):
|
|
1966
|
-
"""
|
|
1967
|
-
|
|
1968
|
-
:param context:
|
|
1969
|
-
"""
|
|
1970
|
-
...
|
|
1971
|
-
|
|
1972
|
-
class VIEWLAYER_PT_freestyle_lineset_collection(
|
|
1967
|
+
class VIEWLAYER_PT_freestyle_lineset_facemarks(
|
|
1973
1968
|
ViewLayerFreestyleEditorButtonsPanel,
|
|
1974
1969
|
ViewLayerFreestyleLineStyle,
|
|
1975
1970
|
ViewLayerFreestyleButtonsPanel,
|
|
@@ -2211,7 +2206,7 @@ class VIEWLAYER_PT_freestyle_lineset_collection(
|
|
|
2211
2206
|
"""
|
|
2212
2207
|
...
|
|
2213
2208
|
|
|
2214
|
-
class
|
|
2209
|
+
class VIEWLAYER_PT_freestyle_lineset_visibilty(
|
|
2215
2210
|
ViewLayerFreestyleEditorButtonsPanel,
|
|
2216
2211
|
ViewLayerFreestyleLineStyle,
|
|
2217
2212
|
ViewLayerFreestyleButtonsPanel,
|
|
@@ -2266,15 +2261,6 @@ class VIEWLAYER_PT_freestyle_lineset_edgetype(
|
|
|
2266
2261
|
"""
|
|
2267
2262
|
...
|
|
2268
2263
|
|
|
2269
|
-
def draw_edge_type_buttons(self, box, lineset, edge_type):
|
|
2270
|
-
"""
|
|
2271
|
-
|
|
2272
|
-
:param box:
|
|
2273
|
-
:param lineset:
|
|
2274
|
-
:param edge_type:
|
|
2275
|
-
"""
|
|
2276
|
-
...
|
|
2277
|
-
|
|
2278
2264
|
def draw_header(self, context):
|
|
2279
2265
|
"""
|
|
2280
2266
|
|
|
@@ -2461,7 +2447,7 @@ class VIEWLAYER_PT_freestyle_lineset_edgetype(
|
|
|
2461
2447
|
"""
|
|
2462
2448
|
...
|
|
2463
2449
|
|
|
2464
|
-
class
|
|
2450
|
+
class VIEWLAYER_PT_freestyle_linestyle_alpha(
|
|
2465
2451
|
ViewLayerFreestyleEditorButtonsPanel,
|
|
2466
2452
|
ViewLayerFreestyleLineStyle,
|
|
2467
2453
|
ViewLayerFreestyleButtonsPanel,
|
|
@@ -2472,7 +2458,6 @@ class VIEWLAYER_PT_freestyle_lineset_facemarks(
|
|
|
2472
2458
|
bl_label: typing.Any
|
|
2473
2459
|
bl_options: typing.Any
|
|
2474
2460
|
bl_order: typing.Any
|
|
2475
|
-
bl_parent_id: typing.Any
|
|
2476
2461
|
bl_region_type: typing.Any
|
|
2477
2462
|
bl_rna: typing.Any
|
|
2478
2463
|
bl_space_type: typing.Any
|
|
@@ -2517,10 +2502,11 @@ class VIEWLAYER_PT_freestyle_lineset_facemarks(
|
|
|
2517
2502
|
"""
|
|
2518
2503
|
...
|
|
2519
2504
|
|
|
2520
|
-
def
|
|
2505
|
+
def draw_alpha_modifier(self, context, modifier):
|
|
2521
2506
|
"""
|
|
2522
2507
|
|
|
2523
2508
|
:param context:
|
|
2509
|
+
:param modifier:
|
|
2524
2510
|
"""
|
|
2525
2511
|
...
|
|
2526
2512
|
|
|
@@ -2703,7 +2689,7 @@ class VIEWLAYER_PT_freestyle_lineset_facemarks(
|
|
|
2703
2689
|
"""
|
|
2704
2690
|
...
|
|
2705
2691
|
|
|
2706
|
-
class
|
|
2692
|
+
class VIEWLAYER_PT_freestyle_linestyle_color(
|
|
2707
2693
|
ViewLayerFreestyleEditorButtonsPanel,
|
|
2708
2694
|
ViewLayerFreestyleLineStyle,
|
|
2709
2695
|
ViewLayerFreestyleButtonsPanel,
|
|
@@ -2712,8 +2698,8 @@ class VIEWLAYER_PT_freestyle_lineset_visibilty(
|
|
|
2712
2698
|
COMPAT_ENGINES: typing.Any
|
|
2713
2699
|
bl_context: typing.Any
|
|
2714
2700
|
bl_label: typing.Any
|
|
2701
|
+
bl_options: typing.Any
|
|
2715
2702
|
bl_order: typing.Any
|
|
2716
|
-
bl_parent_id: typing.Any
|
|
2717
2703
|
bl_region_type: typing.Any
|
|
2718
2704
|
bl_rna: typing.Any
|
|
2719
2705
|
bl_space_type: typing.Any
|
|
@@ -2758,10 +2744,11 @@ class VIEWLAYER_PT_freestyle_lineset_visibilty(
|
|
|
2758
2744
|
"""
|
|
2759
2745
|
...
|
|
2760
2746
|
|
|
2761
|
-
def
|
|
2747
|
+
def draw_color_modifier(self, context, modifier):
|
|
2762
2748
|
"""
|
|
2763
2749
|
|
|
2764
2750
|
:param context:
|
|
2751
|
+
:param modifier:
|
|
2765
2752
|
"""
|
|
2766
2753
|
...
|
|
2767
2754
|
|
|
@@ -2944,7 +2931,7 @@ class VIEWLAYER_PT_freestyle_lineset_visibilty(
|
|
|
2944
2931
|
"""
|
|
2945
2932
|
...
|
|
2946
2933
|
|
|
2947
|
-
class
|
|
2934
|
+
class VIEWLAYER_PT_freestyle_linestyle_geometry(
|
|
2948
2935
|
ViewLayerFreestyleEditorButtonsPanel,
|
|
2949
2936
|
ViewLayerFreestyleLineStyle,
|
|
2950
2937
|
ViewLayerFreestyleButtonsPanel,
|
|
@@ -2999,10 +2986,10 @@ class VIEWLAYER_PT_freestyle_linestyle_alpha(
|
|
|
2999
2986
|
"""
|
|
3000
2987
|
...
|
|
3001
2988
|
|
|
3002
|
-
def
|
|
2989
|
+
def draw_geometry_modifier(self, _context, modifier):
|
|
3003
2990
|
"""
|
|
3004
2991
|
|
|
3005
|
-
:param
|
|
2992
|
+
:param _context:
|
|
3006
2993
|
:param modifier:
|
|
3007
2994
|
"""
|
|
3008
2995
|
...
|
|
@@ -3186,7 +3173,7 @@ class VIEWLAYER_PT_freestyle_linestyle_alpha(
|
|
|
3186
3173
|
"""
|
|
3187
3174
|
...
|
|
3188
3175
|
|
|
3189
|
-
class
|
|
3176
|
+
class VIEWLAYER_PT_freestyle_linestyle_strokes(
|
|
3190
3177
|
ViewLayerFreestyleEditorButtonsPanel,
|
|
3191
3178
|
ViewLayerFreestyleLineStyle,
|
|
3192
3179
|
ViewLayerFreestyleButtonsPanel,
|
|
@@ -3241,14 +3228,6 @@ class VIEWLAYER_PT_freestyle_linestyle_color(
|
|
|
3241
3228
|
"""
|
|
3242
3229
|
...
|
|
3243
3230
|
|
|
3244
|
-
def draw_color_modifier(self, context, modifier):
|
|
3245
|
-
"""
|
|
3246
|
-
|
|
3247
|
-
:param context:
|
|
3248
|
-
:param modifier:
|
|
3249
|
-
"""
|
|
3250
|
-
...
|
|
3251
|
-
|
|
3252
3231
|
def driver_add(self) -> bpy.types.FCurve:
|
|
3253
3232
|
"""Adds driver(s) to the given property
|
|
3254
3233
|
|
|
@@ -3428,8 +3407,9 @@ class VIEWLAYER_PT_freestyle_linestyle_color(
|
|
|
3428
3407
|
"""
|
|
3429
3408
|
...
|
|
3430
3409
|
|
|
3431
|
-
class
|
|
3410
|
+
class VIEWLAYER_PT_freestyle_linestyle_strokes_chaining(
|
|
3432
3411
|
ViewLayerFreestyleEditorButtonsPanel,
|
|
3412
|
+
ViewLayerFreestyleLinestyleStrokesSubPanel,
|
|
3433
3413
|
ViewLayerFreestyleLineStyle,
|
|
3434
3414
|
ViewLayerFreestyleButtonsPanel,
|
|
3435
3415
|
bpy_types._GenericUI,
|
|
@@ -3437,8 +3417,8 @@ class VIEWLAYER_PT_freestyle_linestyle_geometry(
|
|
|
3437
3417
|
COMPAT_ENGINES: typing.Any
|
|
3438
3418
|
bl_context: typing.Any
|
|
3439
3419
|
bl_label: typing.Any
|
|
3440
|
-
bl_options: typing.Any
|
|
3441
3420
|
bl_order: typing.Any
|
|
3421
|
+
bl_parent_id: typing.Any
|
|
3442
3422
|
bl_region_type: typing.Any
|
|
3443
3423
|
bl_rna: typing.Any
|
|
3444
3424
|
bl_space_type: typing.Any
|
|
@@ -3483,11 +3463,10 @@ class VIEWLAYER_PT_freestyle_linestyle_geometry(
|
|
|
3483
3463
|
"""
|
|
3484
3464
|
...
|
|
3485
3465
|
|
|
3486
|
-
def
|
|
3466
|
+
def draw_header(self, context):
|
|
3487
3467
|
"""
|
|
3488
3468
|
|
|
3489
|
-
:param
|
|
3490
|
-
:param modifier:
|
|
3469
|
+
:param context:
|
|
3491
3470
|
"""
|
|
3492
3471
|
...
|
|
3493
3472
|
|
|
@@ -3670,8 +3649,9 @@ class VIEWLAYER_PT_freestyle_linestyle_geometry(
|
|
|
3670
3649
|
"""
|
|
3671
3650
|
...
|
|
3672
3651
|
|
|
3673
|
-
class
|
|
3652
|
+
class VIEWLAYER_PT_freestyle_linestyle_strokes_dashedline(
|
|
3674
3653
|
ViewLayerFreestyleEditorButtonsPanel,
|
|
3654
|
+
ViewLayerFreestyleLinestyleStrokesSubPanel,
|
|
3675
3655
|
ViewLayerFreestyleLineStyle,
|
|
3676
3656
|
ViewLayerFreestyleButtonsPanel,
|
|
3677
3657
|
bpy_types._GenericUI,
|
|
@@ -3681,6 +3661,7 @@ class VIEWLAYER_PT_freestyle_linestyle_strokes(
|
|
|
3681
3661
|
bl_label: typing.Any
|
|
3682
3662
|
bl_options: typing.Any
|
|
3683
3663
|
bl_order: typing.Any
|
|
3664
|
+
bl_parent_id: typing.Any
|
|
3684
3665
|
bl_region_type: typing.Any
|
|
3685
3666
|
bl_rna: typing.Any
|
|
3686
3667
|
bl_space_type: typing.Any
|
|
@@ -3725,6 +3706,13 @@ class VIEWLAYER_PT_freestyle_linestyle_strokes(
|
|
|
3725
3706
|
"""
|
|
3726
3707
|
...
|
|
3727
3708
|
|
|
3709
|
+
def draw_header(self, context):
|
|
3710
|
+
"""
|
|
3711
|
+
|
|
3712
|
+
:param context:
|
|
3713
|
+
"""
|
|
3714
|
+
...
|
|
3715
|
+
|
|
3728
3716
|
def driver_add(self) -> bpy.types.FCurve:
|
|
3729
3717
|
"""Adds driver(s) to the given property
|
|
3730
3718
|
|
|
@@ -3904,8 +3892,9 @@ class VIEWLAYER_PT_freestyle_linestyle_strokes(
|
|
|
3904
3892
|
"""
|
|
3905
3893
|
...
|
|
3906
3894
|
|
|
3907
|
-
class
|
|
3895
|
+
class VIEWLAYER_PT_freestyle_linestyle_strokes_selection(
|
|
3908
3896
|
ViewLayerFreestyleEditorButtonsPanel,
|
|
3897
|
+
ViewLayerFreestyleLinestyleStrokesSubPanel,
|
|
3909
3898
|
ViewLayerFreestyleLineStyle,
|
|
3910
3899
|
ViewLayerFreestyleButtonsPanel,
|
|
3911
3900
|
bpy_types._GenericUI,
|
|
@@ -3915,6 +3904,7 @@ class VIEWLAYER_PT_freestyle_linestyle_texture(
|
|
|
3915
3904
|
bl_label: typing.Any
|
|
3916
3905
|
bl_options: typing.Any
|
|
3917
3906
|
bl_order: typing.Any
|
|
3907
|
+
bl_parent_id: typing.Any
|
|
3918
3908
|
bl_region_type: typing.Any
|
|
3919
3909
|
bl_rna: typing.Any
|
|
3920
3910
|
bl_space_type: typing.Any
|
|
@@ -4138,8 +4128,9 @@ class VIEWLAYER_PT_freestyle_linestyle_texture(
|
|
|
4138
4128
|
"""
|
|
4139
4129
|
...
|
|
4140
4130
|
|
|
4141
|
-
class
|
|
4131
|
+
class VIEWLAYER_PT_freestyle_linestyle_strokes_sorting(
|
|
4142
4132
|
ViewLayerFreestyleEditorButtonsPanel,
|
|
4133
|
+
ViewLayerFreestyleLinestyleStrokesSubPanel,
|
|
4143
4134
|
ViewLayerFreestyleLineStyle,
|
|
4144
4135
|
ViewLayerFreestyleButtonsPanel,
|
|
4145
4136
|
bpy_types._GenericUI,
|
|
@@ -4149,6 +4140,7 @@ class VIEWLAYER_PT_freestyle_linestyle_thickness(
|
|
|
4149
4140
|
bl_label: typing.Any
|
|
4150
4141
|
bl_options: typing.Any
|
|
4151
4142
|
bl_order: typing.Any
|
|
4143
|
+
bl_parent_id: typing.Any
|
|
4152
4144
|
bl_region_type: typing.Any
|
|
4153
4145
|
bl_rna: typing.Any
|
|
4154
4146
|
bl_space_type: typing.Any
|
|
@@ -4193,11 +4185,10 @@ class VIEWLAYER_PT_freestyle_linestyle_thickness(
|
|
|
4193
4185
|
"""
|
|
4194
4186
|
...
|
|
4195
4187
|
|
|
4196
|
-
def
|
|
4188
|
+
def draw_header(self, context):
|
|
4197
4189
|
"""
|
|
4198
4190
|
|
|
4199
4191
|
:param context:
|
|
4200
|
-
:param modifier:
|
|
4201
4192
|
"""
|
|
4202
4193
|
...
|
|
4203
4194
|
|
|
@@ -4380,26 +4371,7 @@ class VIEWLAYER_PT_freestyle_linestyle_thickness(
|
|
|
4380
4371
|
"""
|
|
4381
4372
|
...
|
|
4382
4373
|
|
|
4383
|
-
class
|
|
4384
|
-
ViewLayerFreestyleEditorButtonsPanel,
|
|
4385
|
-
ViewLayerFreestyleLineStyle,
|
|
4386
|
-
ViewLayerFreestyleButtonsPanel,
|
|
4387
|
-
):
|
|
4388
|
-
COMPAT_ENGINES: typing.Any
|
|
4389
|
-
bl_context: typing.Any
|
|
4390
|
-
bl_order: typing.Any
|
|
4391
|
-
bl_parent_id: typing.Any
|
|
4392
|
-
bl_region_type: typing.Any
|
|
4393
|
-
bl_space_type: typing.Any
|
|
4394
|
-
|
|
4395
|
-
def poll(self, context):
|
|
4396
|
-
"""
|
|
4397
|
-
|
|
4398
|
-
:param context:
|
|
4399
|
-
"""
|
|
4400
|
-
...
|
|
4401
|
-
|
|
4402
|
-
class VIEWLAYER_PT_freestyle_linestyle_strokes_chaining(
|
|
4374
|
+
class VIEWLAYER_PT_freestyle_linestyle_strokes_splitting(
|
|
4403
4375
|
ViewLayerFreestyleEditorButtonsPanel,
|
|
4404
4376
|
ViewLayerFreestyleLinestyleStrokesSubPanel,
|
|
4405
4377
|
ViewLayerFreestyleLineStyle,
|
|
@@ -4409,6 +4381,7 @@ class VIEWLAYER_PT_freestyle_linestyle_strokes_chaining(
|
|
|
4409
4381
|
COMPAT_ENGINES: typing.Any
|
|
4410
4382
|
bl_context: typing.Any
|
|
4411
4383
|
bl_label: typing.Any
|
|
4384
|
+
bl_options: typing.Any
|
|
4412
4385
|
bl_order: typing.Any
|
|
4413
4386
|
bl_parent_id: typing.Any
|
|
4414
4387
|
bl_region_type: typing.Any
|
|
@@ -4455,13 +4428,6 @@ class VIEWLAYER_PT_freestyle_linestyle_strokes_chaining(
|
|
|
4455
4428
|
"""
|
|
4456
4429
|
...
|
|
4457
4430
|
|
|
4458
|
-
def draw_header(self, context):
|
|
4459
|
-
"""
|
|
4460
|
-
|
|
4461
|
-
:param context:
|
|
4462
|
-
"""
|
|
4463
|
-
...
|
|
4464
|
-
|
|
4465
4431
|
def driver_add(self) -> bpy.types.FCurve:
|
|
4466
4432
|
"""Adds driver(s) to the given property
|
|
4467
4433
|
|
|
@@ -4641,7 +4607,7 @@ class VIEWLAYER_PT_freestyle_linestyle_strokes_chaining(
|
|
|
4641
4607
|
"""
|
|
4642
4608
|
...
|
|
4643
4609
|
|
|
4644
|
-
class
|
|
4610
|
+
class VIEWLAYER_PT_freestyle_linestyle_strokes_splitting_pattern(
|
|
4645
4611
|
ViewLayerFreestyleEditorButtonsPanel,
|
|
4646
4612
|
ViewLayerFreestyleLinestyleStrokesSubPanel,
|
|
4647
4613
|
ViewLayerFreestyleLineStyle,
|
|
@@ -4884,9 +4850,8 @@ class VIEWLAYER_PT_freestyle_linestyle_strokes_dashedline(
|
|
|
4884
4850
|
"""
|
|
4885
4851
|
...
|
|
4886
4852
|
|
|
4887
|
-
class
|
|
4853
|
+
class VIEWLAYER_PT_freestyle_linestyle_texture(
|
|
4888
4854
|
ViewLayerFreestyleEditorButtonsPanel,
|
|
4889
|
-
ViewLayerFreestyleLinestyleStrokesSubPanel,
|
|
4890
4855
|
ViewLayerFreestyleLineStyle,
|
|
4891
4856
|
ViewLayerFreestyleButtonsPanel,
|
|
4892
4857
|
bpy_types._GenericUI,
|
|
@@ -4896,7 +4861,6 @@ class VIEWLAYER_PT_freestyle_linestyle_strokes_selection(
|
|
|
4896
4861
|
bl_label: typing.Any
|
|
4897
4862
|
bl_options: typing.Any
|
|
4898
4863
|
bl_order: typing.Any
|
|
4899
|
-
bl_parent_id: typing.Any
|
|
4900
4864
|
bl_region_type: typing.Any
|
|
4901
4865
|
bl_rna: typing.Any
|
|
4902
4866
|
bl_space_type: typing.Any
|
|
@@ -5120,9 +5084,8 @@ class VIEWLAYER_PT_freestyle_linestyle_strokes_selection(
|
|
|
5120
5084
|
"""
|
|
5121
5085
|
...
|
|
5122
5086
|
|
|
5123
|
-
class
|
|
5087
|
+
class VIEWLAYER_PT_freestyle_linestyle_thickness(
|
|
5124
5088
|
ViewLayerFreestyleEditorButtonsPanel,
|
|
5125
|
-
ViewLayerFreestyleLinestyleStrokesSubPanel,
|
|
5126
5089
|
ViewLayerFreestyleLineStyle,
|
|
5127
5090
|
ViewLayerFreestyleButtonsPanel,
|
|
5128
5091
|
bpy_types._GenericUI,
|
|
@@ -5132,7 +5095,6 @@ class VIEWLAYER_PT_freestyle_linestyle_strokes_sorting(
|
|
|
5132
5095
|
bl_label: typing.Any
|
|
5133
5096
|
bl_options: typing.Any
|
|
5134
5097
|
bl_order: typing.Any
|
|
5135
|
-
bl_parent_id: typing.Any
|
|
5136
5098
|
bl_region_type: typing.Any
|
|
5137
5099
|
bl_rna: typing.Any
|
|
5138
5100
|
bl_space_type: typing.Any
|
|
@@ -5177,10 +5139,11 @@ class VIEWLAYER_PT_freestyle_linestyle_strokes_sorting(
|
|
|
5177
5139
|
"""
|
|
5178
5140
|
...
|
|
5179
5141
|
|
|
5180
|
-
def
|
|
5142
|
+
def draw_thickness_modifier(self, context, modifier):
|
|
5181
5143
|
"""
|
|
5182
5144
|
|
|
5183
5145
|
:param context:
|
|
5146
|
+
:param modifier:
|
|
5184
5147
|
"""
|
|
5185
5148
|
...
|
|
5186
5149
|
|
|
@@ -5363,17 +5326,12 @@ class VIEWLAYER_PT_freestyle_linestyle_strokes_sorting(
|
|
|
5363
5326
|
"""
|
|
5364
5327
|
...
|
|
5365
5328
|
|
|
5366
|
-
class
|
|
5367
|
-
|
|
5368
|
-
ViewLayerFreestyleLinestyleStrokesSubPanel,
|
|
5369
|
-
ViewLayerFreestyleLineStyle,
|
|
5370
|
-
ViewLayerFreestyleButtonsPanel,
|
|
5371
|
-
bpy_types._GenericUI,
|
|
5329
|
+
class VIEWLAYER_PT_freestyle_style_modules(
|
|
5330
|
+
ViewLayerFreestyleButtonsPanel, bpy_types._GenericUI
|
|
5372
5331
|
):
|
|
5373
5332
|
COMPAT_ENGINES: typing.Any
|
|
5374
5333
|
bl_context: typing.Any
|
|
5375
5334
|
bl_label: typing.Any
|
|
5376
|
-
bl_options: typing.Any
|
|
5377
5335
|
bl_order: typing.Any
|
|
5378
5336
|
bl_parent_id: typing.Any
|
|
5379
5337
|
bl_region_type: typing.Any
|
|
@@ -5599,22 +5557,8 @@ class VIEWLAYER_PT_freestyle_linestyle_strokes_splitting(
|
|
|
5599
5557
|
"""
|
|
5600
5558
|
...
|
|
5601
5559
|
|
|
5602
|
-
class
|
|
5603
|
-
ViewLayerFreestyleEditorButtonsPanel,
|
|
5604
|
-
ViewLayerFreestyleLinestyleStrokesSubPanel,
|
|
5605
|
-
ViewLayerFreestyleLineStyle,
|
|
5606
|
-
ViewLayerFreestyleButtonsPanel,
|
|
5607
|
-
bpy_types._GenericUI,
|
|
5608
|
-
):
|
|
5609
|
-
COMPAT_ENGINES: typing.Any
|
|
5610
|
-
bl_context: typing.Any
|
|
5611
|
-
bl_label: typing.Any
|
|
5612
|
-
bl_options: typing.Any
|
|
5613
|
-
bl_order: typing.Any
|
|
5614
|
-
bl_parent_id: typing.Any
|
|
5615
|
-
bl_region_type: typing.Any
|
|
5560
|
+
class VIEWLAYER_UL_linesets(bpy_types._GenericUI):
|
|
5616
5561
|
bl_rna: typing.Any
|
|
5617
|
-
bl_space_type: typing.Any
|
|
5618
5562
|
id_data: typing.Any
|
|
5619
5563
|
|
|
5620
5564
|
def append(self, draw_func):
|
|
@@ -5649,17 +5593,19 @@ class VIEWLAYER_PT_freestyle_linestyle_strokes_splitting_pattern(
|
|
|
5649
5593
|
"""
|
|
5650
5594
|
...
|
|
5651
5595
|
|
|
5652
|
-
def
|
|
5653
|
-
|
|
5654
|
-
|
|
5655
|
-
:param context:
|
|
5656
|
-
"""
|
|
5657
|
-
...
|
|
5658
|
-
|
|
5659
|
-
def draw_header(self, context):
|
|
5596
|
+
def draw_item(
|
|
5597
|
+
self, _context, layout, _data, item, icon, _active_data, _active_propname, index
|
|
5598
|
+
):
|
|
5660
5599
|
"""
|
|
5661
5600
|
|
|
5662
|
-
:param
|
|
5601
|
+
:param _context:
|
|
5602
|
+
:param layout:
|
|
5603
|
+
:param _data:
|
|
5604
|
+
:param item:
|
|
5605
|
+
:param icon:
|
|
5606
|
+
:param _active_data:
|
|
5607
|
+
:param _active_propname:
|
|
5608
|
+
:param index:
|
|
5663
5609
|
"""
|
|
5664
5610
|
...
|
|
5665
5611
|
|
|
@@ -5785,13 +5731,6 @@ class VIEWLAYER_PT_freestyle_linestyle_strokes_splitting_pattern(
|
|
|
5785
5731
|
"""Returns the property from the path, raise an exception when not found."""
|
|
5786
5732
|
...
|
|
5787
5733
|
|
|
5788
|
-
def poll(self, context):
|
|
5789
|
-
"""
|
|
5790
|
-
|
|
5791
|
-
:param context:
|
|
5792
|
-
"""
|
|
5793
|
-
...
|
|
5794
|
-
|
|
5795
5734
|
def pop(self):
|
|
5796
5735
|
"""Remove and return the value of the custom property assigned to key or default
|
|
5797
5736
|
when not found (matches Python's dictionary function of the same name).
|
|
@@ -5842,6 +5781,67 @@ class VIEWLAYER_PT_freestyle_linestyle_strokes_splitting_pattern(
|
|
|
5842
5781
|
"""
|
|
5843
5782
|
...
|
|
5844
5783
|
|
|
5784
|
+
class ViewLayerFreestyleButtonsPanel:
|
|
5785
|
+
bl_context: typing.Any
|
|
5786
|
+
bl_order: typing.Any
|
|
5787
|
+
bl_region_type: typing.Any
|
|
5788
|
+
bl_space_type: typing.Any
|
|
5789
|
+
|
|
5790
|
+
def poll(self, context):
|
|
5791
|
+
"""
|
|
5792
|
+
|
|
5793
|
+
:param context:
|
|
5794
|
+
"""
|
|
5795
|
+
...
|
|
5796
|
+
|
|
5797
|
+
class ViewLayerFreestyleEditorButtonsPanel(ViewLayerFreestyleButtonsPanel):
|
|
5798
|
+
bl_context: typing.Any
|
|
5799
|
+
bl_order: typing.Any
|
|
5800
|
+
bl_region_type: typing.Any
|
|
5801
|
+
bl_space_type: typing.Any
|
|
5802
|
+
|
|
5803
|
+
def poll(self, context):
|
|
5804
|
+
"""
|
|
5805
|
+
|
|
5806
|
+
:param context:
|
|
5807
|
+
"""
|
|
5808
|
+
...
|
|
5809
|
+
|
|
5810
|
+
class ViewLayerFreestyleLineStyle(
|
|
5811
|
+
ViewLayerFreestyleEditorButtonsPanel, ViewLayerFreestyleButtonsPanel
|
|
5812
|
+
):
|
|
5813
|
+
COMPAT_ENGINES: typing.Any
|
|
5814
|
+
bl_context: typing.Any
|
|
5815
|
+
bl_order: typing.Any
|
|
5816
|
+
bl_region_type: typing.Any
|
|
5817
|
+
bl_space_type: typing.Any
|
|
5818
|
+
|
|
5819
|
+
def poll(self, context):
|
|
5820
|
+
"""
|
|
5821
|
+
|
|
5822
|
+
:param context:
|
|
5823
|
+
"""
|
|
5824
|
+
...
|
|
5825
|
+
|
|
5826
|
+
class ViewLayerFreestyleLinestyleStrokesSubPanel(
|
|
5827
|
+
ViewLayerFreestyleEditorButtonsPanel,
|
|
5828
|
+
ViewLayerFreestyleLineStyle,
|
|
5829
|
+
ViewLayerFreestyleButtonsPanel,
|
|
5830
|
+
):
|
|
5831
|
+
COMPAT_ENGINES: typing.Any
|
|
5832
|
+
bl_context: typing.Any
|
|
5833
|
+
bl_order: typing.Any
|
|
5834
|
+
bl_parent_id: typing.Any
|
|
5835
|
+
bl_region_type: typing.Any
|
|
5836
|
+
bl_space_type: typing.Any
|
|
5837
|
+
|
|
5838
|
+
def poll(self, context):
|
|
5839
|
+
"""
|
|
5840
|
+
|
|
5841
|
+
:param context:
|
|
5842
|
+
"""
|
|
5843
|
+
...
|
|
5844
|
+
|
|
5845
5845
|
def draw_modifier_box_error(box, _modifier, message): ...
|
|
5846
5846
|
def draw_modifier_box_header(box, modifier): ...
|
|
5847
5847
|
def draw_modifier_color_ramp_common(box, modifier, has_range): ...
|