fake-bpy-module 20241003__py3-none-any.whl → 20241008__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_ui/properties_data_gpencil/__init__.pyi +0 -256
- bl_ui/properties_grease_pencil_common/__init__.pyi +0 -220
- bl_ui/properties_object/__init__.pyi +149 -0
- bl_ui/properties_paint_common/__init__.pyi +43 -0
- bl_ui/space_dopesheet/__init__.pyi +0 -194
- bl_ui/space_toolsystem_toolbar/__init__.pyi +0 -56
- bl_ui/space_topbar/__init__.pyi +0 -43
- bl_ui/space_view3d/__init__.pyi +45 -721
- bl_ui/space_view3d_toolbar/__init__.pyi +0 -28
- bpy/ops/file/__init__.pyi +3 -0
- bpy/ops/gpencil/__init__.pyi +9 -2857
- bpy/ops/grease_pencil/__init__.pyi +16 -0
- bpy/ops/mesh/__init__.pyi +25 -0
- bpy/ops/node/__init__.pyi +24 -24
- bpy/ops/object/__init__.pyi +3 -66
- bpy/ops/wm/__init__.pyi +13 -357
- bpy/types/__init__.pyi +126 -250
- bpy/typing/__init__.pyi +8 -8
- {fake_bpy_module-20241003.dist-info → fake_bpy_module-20241008.dist-info}/METADATA +1 -1
- {fake_bpy_module-20241003.dist-info → fake_bpy_module-20241008.dist-info}/RECORD +22 -22
- {fake_bpy_module-20241003.dist-info → fake_bpy_module-20241008.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20241003.dist-info → fake_bpy_module-20241008.dist-info}/top_level.txt +0 -0
bl_ui/space_view3d/__init__.pyi
CHANGED
|
@@ -6,6 +6,9 @@ import bl_ui.properties_paint_common
|
|
|
6
6
|
import bl_ui.space_toolsystem_common
|
|
7
7
|
import bpy.types
|
|
8
8
|
|
|
9
|
+
class AssetShelfHiddenByDefault:
|
|
10
|
+
bl_options: typing.Any
|
|
11
|
+
|
|
9
12
|
class BoneOptions:
|
|
10
13
|
def draw(self, context):
|
|
11
14
|
"""
|
|
@@ -127,7 +130,7 @@ class TOPBAR_PT_annotation_layers(
|
|
|
127
130
|
:rtype: typing.Any
|
|
128
131
|
"""
|
|
129
132
|
|
|
130
|
-
class
|
|
133
|
+
class TOPBAR_PT_grease_pencil_materials(
|
|
131
134
|
bl_ui.properties_grease_pencil_common.GreasePencilMaterialsPanel, bpy.types.Panel
|
|
132
135
|
):
|
|
133
136
|
bl_label: typing.Any
|
|
@@ -158,37 +161,6 @@ class TOPBAR_PT_gpencil_materials(
|
|
|
158
161
|
:param context:
|
|
159
162
|
"""
|
|
160
163
|
|
|
161
|
-
class TOPBAR_PT_gpencil_vertexcolor(
|
|
162
|
-
bl_ui.properties_grease_pencil_common.GreasePencilVertexcolorPanel, bpy.types.Panel
|
|
163
|
-
):
|
|
164
|
-
bl_label: typing.Any
|
|
165
|
-
bl_region_type: typing.Any
|
|
166
|
-
bl_rna: typing.Any
|
|
167
|
-
bl_space_type: typing.Any
|
|
168
|
-
bl_ui_units_x: typing.Any
|
|
169
|
-
id_data: typing.Any
|
|
170
|
-
|
|
171
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
172
|
-
"""
|
|
173
|
-
|
|
174
|
-
:return: The RNA type or default when not found.
|
|
175
|
-
:rtype: bpy.types.Struct
|
|
176
|
-
"""
|
|
177
|
-
|
|
178
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
179
|
-
"""
|
|
180
|
-
|
|
181
|
-
:return: The class or default when not found.
|
|
182
|
-
:rtype: typing.Any
|
|
183
|
-
"""
|
|
184
|
-
|
|
185
|
-
@classmethod
|
|
186
|
-
def poll(cls, context):
|
|
187
|
-
"""
|
|
188
|
-
|
|
189
|
-
:param context:
|
|
190
|
-
"""
|
|
191
|
-
|
|
192
164
|
class TOPBAR_PT_grease_pencil_vertex_color(bpy.types.Panel):
|
|
193
165
|
bl_label: typing.Any
|
|
194
166
|
bl_region_type: typing.Any
|
|
@@ -276,33 +248,9 @@ class VIEW3D_AST_brush_gpencil_sculpt(View3DAssetShelf, bpy.types.AssetShelf):
|
|
|
276
248
|
:rtype: typing.Any
|
|
277
249
|
"""
|
|
278
250
|
|
|
279
|
-
class VIEW3D_AST_brush_gpencil_vertex(
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
bl_options: typing.Any
|
|
283
|
-
bl_rna: typing.Any
|
|
284
|
-
bl_space_type: typing.Any
|
|
285
|
-
brush_type_prop: typing.Any
|
|
286
|
-
id_data: typing.Any
|
|
287
|
-
mode: typing.Any
|
|
288
|
-
mode_prop: typing.Any
|
|
289
|
-
tool_prop: typing.Any
|
|
290
|
-
|
|
291
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
292
|
-
"""
|
|
293
|
-
|
|
294
|
-
:return: The RNA type or default when not found.
|
|
295
|
-
:rtype: bpy.types.Struct
|
|
296
|
-
"""
|
|
297
|
-
|
|
298
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
299
|
-
"""
|
|
300
|
-
|
|
301
|
-
:return: The class or default when not found.
|
|
302
|
-
:rtype: typing.Any
|
|
303
|
-
"""
|
|
304
|
-
|
|
305
|
-
class VIEW3D_AST_brush_gpencil_weight(View3DAssetShelf, bpy.types.AssetShelf):
|
|
251
|
+
class VIEW3D_AST_brush_gpencil_vertex(
|
|
252
|
+
View3DAssetShelf, AssetShelfHiddenByDefault, bpy.types.AssetShelf
|
|
253
|
+
):
|
|
306
254
|
bl_activate_operator: typing.Any
|
|
307
255
|
bl_default_preview_size: typing.Any
|
|
308
256
|
bl_options: typing.Any
|
|
@@ -328,7 +276,9 @@ class VIEW3D_AST_brush_gpencil_weight(View3DAssetShelf, bpy.types.AssetShelf):
|
|
|
328
276
|
:rtype: typing.Any
|
|
329
277
|
"""
|
|
330
278
|
|
|
331
|
-
class
|
|
279
|
+
class VIEW3D_AST_brush_gpencil_weight(
|
|
280
|
+
View3DAssetShelf, AssetShelfHiddenByDefault, bpy.types.AssetShelf
|
|
281
|
+
):
|
|
332
282
|
bl_activate_operator: typing.Any
|
|
333
283
|
bl_default_preview_size: typing.Any
|
|
334
284
|
bl_options: typing.Any
|
|
@@ -458,7 +408,9 @@ class VIEW3D_AST_brush_vertex_paint(View3DAssetShelf, bpy.types.AssetShelf):
|
|
|
458
408
|
:rtype: typing.Any
|
|
459
409
|
"""
|
|
460
410
|
|
|
461
|
-
class VIEW3D_AST_brush_weight_paint(
|
|
411
|
+
class VIEW3D_AST_brush_weight_paint(
|
|
412
|
+
View3DAssetShelf, AssetShelfHiddenByDefault, bpy.types.AssetShelf
|
|
413
|
+
):
|
|
462
414
|
bl_activate_operator: typing.Any
|
|
463
415
|
bl_default_preview_size: typing.Any
|
|
464
416
|
bl_options: typing.Any
|
|
@@ -628,31 +580,6 @@ class VIEW3D_MT_armature_context_menu(bpy.types.Menu):
|
|
|
628
580
|
:param context:
|
|
629
581
|
"""
|
|
630
582
|
|
|
631
|
-
class VIEW3D_MT_assign_material(bpy.types.Menu):
|
|
632
|
-
bl_label: typing.Any
|
|
633
|
-
bl_rna: typing.Any
|
|
634
|
-
id_data: typing.Any
|
|
635
|
-
|
|
636
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
637
|
-
"""
|
|
638
|
-
|
|
639
|
-
:return: The RNA type or default when not found.
|
|
640
|
-
:rtype: bpy.types.Struct
|
|
641
|
-
"""
|
|
642
|
-
|
|
643
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
644
|
-
"""
|
|
645
|
-
|
|
646
|
-
:return: The class or default when not found.
|
|
647
|
-
:rtype: typing.Any
|
|
648
|
-
"""
|
|
649
|
-
|
|
650
|
-
def draw(self, context):
|
|
651
|
-
"""
|
|
652
|
-
|
|
653
|
-
:param context:
|
|
654
|
-
"""
|
|
655
|
-
|
|
656
583
|
class VIEW3D_MT_bone_collections(bpy.types.Menu):
|
|
657
584
|
bl_label: typing.Any
|
|
658
585
|
bl_rna: typing.Any
|
|
@@ -739,31 +666,6 @@ class VIEW3D_MT_curve_add(bpy.types.Menu):
|
|
|
739
666
|
:param context:
|
|
740
667
|
"""
|
|
741
668
|
|
|
742
|
-
class VIEW3D_MT_draw_gpencil(bpy.types.Menu):
|
|
743
|
-
bl_label: typing.Any
|
|
744
|
-
bl_rna: typing.Any
|
|
745
|
-
id_data: typing.Any
|
|
746
|
-
|
|
747
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
748
|
-
"""
|
|
749
|
-
|
|
750
|
-
:return: The RNA type or default when not found.
|
|
751
|
-
:rtype: bpy.types.Struct
|
|
752
|
-
"""
|
|
753
|
-
|
|
754
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
755
|
-
"""
|
|
756
|
-
|
|
757
|
-
:return: The class or default when not found.
|
|
758
|
-
:rtype: typing.Any
|
|
759
|
-
"""
|
|
760
|
-
|
|
761
|
-
def draw(self, _context):
|
|
762
|
-
"""
|
|
763
|
-
|
|
764
|
-
:param _context:
|
|
765
|
-
"""
|
|
766
|
-
|
|
767
669
|
class VIEW3D_MT_edit_armature(bpy.types.Menu):
|
|
768
670
|
bl_label: typing.Any
|
|
769
671
|
bl_rna: typing.Any
|
|
@@ -1329,156 +1231,6 @@ class VIEW3D_MT_edit_font_kerning(bpy.types.Menu):
|
|
|
1329
1231
|
:param context:
|
|
1330
1232
|
"""
|
|
1331
1233
|
|
|
1332
|
-
class VIEW3D_MT_edit_gpencil(bpy.types.Menu):
|
|
1333
|
-
bl_label: typing.Any
|
|
1334
|
-
bl_rna: typing.Any
|
|
1335
|
-
id_data: typing.Any
|
|
1336
|
-
|
|
1337
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
1338
|
-
"""
|
|
1339
|
-
|
|
1340
|
-
:return: The RNA type or default when not found.
|
|
1341
|
-
:rtype: bpy.types.Struct
|
|
1342
|
-
"""
|
|
1343
|
-
|
|
1344
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1345
|
-
"""
|
|
1346
|
-
|
|
1347
|
-
:return: The class or default when not found.
|
|
1348
|
-
:rtype: typing.Any
|
|
1349
|
-
"""
|
|
1350
|
-
|
|
1351
|
-
def draw(self, _context):
|
|
1352
|
-
"""
|
|
1353
|
-
|
|
1354
|
-
:param _context:
|
|
1355
|
-
"""
|
|
1356
|
-
|
|
1357
|
-
class VIEW3D_MT_edit_gpencil_delete(bpy.types.Menu):
|
|
1358
|
-
bl_label: typing.Any
|
|
1359
|
-
bl_rna: typing.Any
|
|
1360
|
-
id_data: typing.Any
|
|
1361
|
-
|
|
1362
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
1363
|
-
"""
|
|
1364
|
-
|
|
1365
|
-
:return: The RNA type or default when not found.
|
|
1366
|
-
:rtype: bpy.types.Struct
|
|
1367
|
-
"""
|
|
1368
|
-
|
|
1369
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1370
|
-
"""
|
|
1371
|
-
|
|
1372
|
-
:return: The class or default when not found.
|
|
1373
|
-
:rtype: typing.Any
|
|
1374
|
-
"""
|
|
1375
|
-
|
|
1376
|
-
def draw(self, _context):
|
|
1377
|
-
"""
|
|
1378
|
-
|
|
1379
|
-
:param _context:
|
|
1380
|
-
"""
|
|
1381
|
-
|
|
1382
|
-
class VIEW3D_MT_edit_gpencil_point(bpy.types.Menu):
|
|
1383
|
-
bl_label: typing.Any
|
|
1384
|
-
bl_rna: typing.Any
|
|
1385
|
-
id_data: typing.Any
|
|
1386
|
-
|
|
1387
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
1388
|
-
"""
|
|
1389
|
-
|
|
1390
|
-
:return: The RNA type or default when not found.
|
|
1391
|
-
:rtype: bpy.types.Struct
|
|
1392
|
-
"""
|
|
1393
|
-
|
|
1394
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1395
|
-
"""
|
|
1396
|
-
|
|
1397
|
-
:return: The class or default when not found.
|
|
1398
|
-
:rtype: typing.Any
|
|
1399
|
-
"""
|
|
1400
|
-
|
|
1401
|
-
def draw(self, _context):
|
|
1402
|
-
"""
|
|
1403
|
-
|
|
1404
|
-
:param _context:
|
|
1405
|
-
"""
|
|
1406
|
-
|
|
1407
|
-
class VIEW3D_MT_edit_gpencil_showhide(bpy.types.Menu):
|
|
1408
|
-
bl_label: typing.Any
|
|
1409
|
-
bl_rna: typing.Any
|
|
1410
|
-
id_data: typing.Any
|
|
1411
|
-
|
|
1412
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
1413
|
-
"""
|
|
1414
|
-
|
|
1415
|
-
:return: The RNA type or default when not found.
|
|
1416
|
-
:rtype: bpy.types.Struct
|
|
1417
|
-
"""
|
|
1418
|
-
|
|
1419
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1420
|
-
"""
|
|
1421
|
-
|
|
1422
|
-
:return: The class or default when not found.
|
|
1423
|
-
:rtype: typing.Any
|
|
1424
|
-
"""
|
|
1425
|
-
|
|
1426
|
-
def draw(self, _context):
|
|
1427
|
-
"""
|
|
1428
|
-
|
|
1429
|
-
:param _context:
|
|
1430
|
-
"""
|
|
1431
|
-
|
|
1432
|
-
class VIEW3D_MT_edit_gpencil_stroke(bpy.types.Menu):
|
|
1433
|
-
bl_label: typing.Any
|
|
1434
|
-
bl_rna: typing.Any
|
|
1435
|
-
id_data: typing.Any
|
|
1436
|
-
|
|
1437
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
1438
|
-
"""
|
|
1439
|
-
|
|
1440
|
-
:return: The RNA type or default when not found.
|
|
1441
|
-
:rtype: bpy.types.Struct
|
|
1442
|
-
"""
|
|
1443
|
-
|
|
1444
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1445
|
-
"""
|
|
1446
|
-
|
|
1447
|
-
:return: The class or default when not found.
|
|
1448
|
-
:rtype: typing.Any
|
|
1449
|
-
"""
|
|
1450
|
-
|
|
1451
|
-
def draw(self, context):
|
|
1452
|
-
"""
|
|
1453
|
-
|
|
1454
|
-
:param context:
|
|
1455
|
-
"""
|
|
1456
|
-
|
|
1457
|
-
class VIEW3D_MT_edit_gpencil_transform(bpy.types.Menu):
|
|
1458
|
-
bl_label: typing.Any
|
|
1459
|
-
bl_rna: typing.Any
|
|
1460
|
-
id_data: typing.Any
|
|
1461
|
-
|
|
1462
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
1463
|
-
"""
|
|
1464
|
-
|
|
1465
|
-
:return: The RNA type or default when not found.
|
|
1466
|
-
:rtype: bpy.types.Struct
|
|
1467
|
-
"""
|
|
1468
|
-
|
|
1469
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1470
|
-
"""
|
|
1471
|
-
|
|
1472
|
-
:return: The class or default when not found.
|
|
1473
|
-
:rtype: typing.Any
|
|
1474
|
-
"""
|
|
1475
|
-
|
|
1476
|
-
def draw(self, _context):
|
|
1477
|
-
"""
|
|
1478
|
-
|
|
1479
|
-
:param _context:
|
|
1480
|
-
"""
|
|
1481
|
-
|
|
1482
1234
|
class VIEW3D_MT_edit_greasepencil(bpy.types.Menu):
|
|
1483
1235
|
bl_label: typing.Any
|
|
1484
1236
|
bl_rna: typing.Any
|
|
@@ -2493,138 +2245,6 @@ class VIEW3D_MT_face_sets_init(bpy.types.Menu):
|
|
|
2493
2245
|
:param _context:
|
|
2494
2246
|
"""
|
|
2495
2247
|
|
|
2496
|
-
class VIEW3D_MT_gpencil_animation(bpy.types.Menu):
|
|
2497
|
-
bl_label: typing.Any
|
|
2498
|
-
bl_rna: typing.Any
|
|
2499
|
-
id_data: typing.Any
|
|
2500
|
-
|
|
2501
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
2502
|
-
"""
|
|
2503
|
-
|
|
2504
|
-
:return: The RNA type or default when not found.
|
|
2505
|
-
:rtype: bpy.types.Struct
|
|
2506
|
-
"""
|
|
2507
|
-
|
|
2508
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
2509
|
-
"""
|
|
2510
|
-
|
|
2511
|
-
:return: The class or default when not found.
|
|
2512
|
-
:rtype: typing.Any
|
|
2513
|
-
"""
|
|
2514
|
-
|
|
2515
|
-
def draw(self, _context):
|
|
2516
|
-
"""
|
|
2517
|
-
|
|
2518
|
-
:param _context:
|
|
2519
|
-
"""
|
|
2520
|
-
|
|
2521
|
-
@classmethod
|
|
2522
|
-
def poll(cls, context):
|
|
2523
|
-
"""
|
|
2524
|
-
|
|
2525
|
-
:param context:
|
|
2526
|
-
"""
|
|
2527
|
-
|
|
2528
|
-
class VIEW3D_MT_gpencil_autoweights(bpy.types.Menu):
|
|
2529
|
-
bl_label: typing.Any
|
|
2530
|
-
bl_rna: typing.Any
|
|
2531
|
-
id_data: typing.Any
|
|
2532
|
-
|
|
2533
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
2534
|
-
"""
|
|
2535
|
-
|
|
2536
|
-
:return: The RNA type or default when not found.
|
|
2537
|
-
:rtype: bpy.types.Struct
|
|
2538
|
-
"""
|
|
2539
|
-
|
|
2540
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
2541
|
-
"""
|
|
2542
|
-
|
|
2543
|
-
:return: The class or default when not found.
|
|
2544
|
-
:rtype: typing.Any
|
|
2545
|
-
"""
|
|
2546
|
-
|
|
2547
|
-
def draw(self, _context):
|
|
2548
|
-
"""
|
|
2549
|
-
|
|
2550
|
-
:param _context:
|
|
2551
|
-
"""
|
|
2552
|
-
|
|
2553
|
-
class VIEW3D_MT_gpencil_edit_context_menu(bpy.types.Menu):
|
|
2554
|
-
bl_label: typing.Any
|
|
2555
|
-
bl_rna: typing.Any
|
|
2556
|
-
id_data: typing.Any
|
|
2557
|
-
|
|
2558
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
2559
|
-
"""
|
|
2560
|
-
|
|
2561
|
-
:return: The RNA type or default when not found.
|
|
2562
|
-
:rtype: bpy.types.Struct
|
|
2563
|
-
"""
|
|
2564
|
-
|
|
2565
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
2566
|
-
"""
|
|
2567
|
-
|
|
2568
|
-
:return: The class or default when not found.
|
|
2569
|
-
:rtype: typing.Any
|
|
2570
|
-
"""
|
|
2571
|
-
|
|
2572
|
-
def draw(self, context):
|
|
2573
|
-
"""
|
|
2574
|
-
|
|
2575
|
-
:param context:
|
|
2576
|
-
"""
|
|
2577
|
-
|
|
2578
|
-
class VIEW3D_MT_gpencil_simplify(bpy.types.Menu):
|
|
2579
|
-
bl_label: typing.Any
|
|
2580
|
-
bl_rna: typing.Any
|
|
2581
|
-
id_data: typing.Any
|
|
2582
|
-
|
|
2583
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
2584
|
-
"""
|
|
2585
|
-
|
|
2586
|
-
:return: The RNA type or default when not found.
|
|
2587
|
-
:rtype: bpy.types.Struct
|
|
2588
|
-
"""
|
|
2589
|
-
|
|
2590
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
2591
|
-
"""
|
|
2592
|
-
|
|
2593
|
-
:return: The class or default when not found.
|
|
2594
|
-
:rtype: typing.Any
|
|
2595
|
-
"""
|
|
2596
|
-
|
|
2597
|
-
def draw(self, _context):
|
|
2598
|
-
"""
|
|
2599
|
-
|
|
2600
|
-
:param _context:
|
|
2601
|
-
"""
|
|
2602
|
-
|
|
2603
|
-
class VIEW3D_MT_gpencil_vertex_group(bpy.types.Menu):
|
|
2604
|
-
bl_label: typing.Any
|
|
2605
|
-
bl_rna: typing.Any
|
|
2606
|
-
id_data: typing.Any
|
|
2607
|
-
|
|
2608
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
2609
|
-
"""
|
|
2610
|
-
|
|
2611
|
-
:return: The RNA type or default when not found.
|
|
2612
|
-
:rtype: bpy.types.Struct
|
|
2613
|
-
"""
|
|
2614
|
-
|
|
2615
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
2616
|
-
"""
|
|
2617
|
-
|
|
2618
|
-
:return: The class or default when not found.
|
|
2619
|
-
:rtype: typing.Any
|
|
2620
|
-
"""
|
|
2621
|
-
|
|
2622
|
-
def draw(self, context):
|
|
2623
|
-
"""
|
|
2624
|
-
|
|
2625
|
-
:param context:
|
|
2626
|
-
"""
|
|
2627
|
-
|
|
2628
2248
|
class VIEW3D_MT_grease_pencil_add(bpy.types.Menu):
|
|
2629
2249
|
bl_idname: typing.Any
|
|
2630
2250
|
bl_label: typing.Any
|
|
@@ -2884,6 +2504,12 @@ class VIEW3D_MT_make_links(bpy.types.Menu):
|
|
|
2884
2504
|
:rtype: typing.Any
|
|
2885
2505
|
"""
|
|
2886
2506
|
|
|
2507
|
+
def draw(self, _context):
|
|
2508
|
+
"""
|
|
2509
|
+
|
|
2510
|
+
:param _context:
|
|
2511
|
+
"""
|
|
2512
|
+
|
|
2887
2513
|
class VIEW3D_MT_make_single_user(bpy.types.Menu):
|
|
2888
2514
|
bl_label: typing.Any
|
|
2889
2515
|
bl_rna: typing.Any
|
|
@@ -3541,31 +3167,6 @@ class VIEW3D_MT_orientations_pie(bpy.types.Menu):
|
|
|
3541
3167
|
:param context:
|
|
3542
3168
|
"""
|
|
3543
3169
|
|
|
3544
|
-
class VIEW3D_MT_paint_gpencil(bpy.types.Menu):
|
|
3545
|
-
bl_label: typing.Any
|
|
3546
|
-
bl_rna: typing.Any
|
|
3547
|
-
id_data: typing.Any
|
|
3548
|
-
|
|
3549
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
3550
|
-
"""
|
|
3551
|
-
|
|
3552
|
-
:return: The RNA type or default when not found.
|
|
3553
|
-
:rtype: bpy.types.Struct
|
|
3554
|
-
"""
|
|
3555
|
-
|
|
3556
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
3557
|
-
"""
|
|
3558
|
-
|
|
3559
|
-
:return: The class or default when not found.
|
|
3560
|
-
:rtype: typing.Any
|
|
3561
|
-
"""
|
|
3562
|
-
|
|
3563
|
-
def draw(self, _context):
|
|
3564
|
-
"""
|
|
3565
|
-
|
|
3566
|
-
:param _context:
|
|
3567
|
-
"""
|
|
3568
|
-
|
|
3569
3170
|
class VIEW3D_MT_paint_grease_pencil(bpy.types.Menu):
|
|
3570
3171
|
bl_label: typing.Any
|
|
3571
3172
|
bl_rna: typing.Any
|
|
@@ -4184,60 +3785,10 @@ class VIEW3D_MT_sculpt_curves(bpy.types.Menu):
|
|
|
4184
3785
|
def draw(self, _context):
|
|
4185
3786
|
"""
|
|
4186
3787
|
|
|
4187
|
-
:param _context:
|
|
4188
|
-
"""
|
|
4189
|
-
|
|
4190
|
-
class VIEW3D_MT_sculpt_face_sets_edit_pie(bpy.types.Menu):
|
|
4191
|
-
bl_label: typing.Any
|
|
4192
|
-
bl_rna: typing.Any
|
|
4193
|
-
id_data: typing.Any
|
|
4194
|
-
|
|
4195
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
4196
|
-
"""
|
|
4197
|
-
|
|
4198
|
-
:return: The RNA type or default when not found.
|
|
4199
|
-
:rtype: bpy.types.Struct
|
|
4200
|
-
"""
|
|
4201
|
-
|
|
4202
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
4203
|
-
"""
|
|
4204
|
-
|
|
4205
|
-
:return: The class or default when not found.
|
|
4206
|
-
:rtype: typing.Any
|
|
4207
|
-
"""
|
|
4208
|
-
|
|
4209
|
-
def draw(self, _context):
|
|
4210
|
-
"""
|
|
4211
|
-
|
|
4212
|
-
:param _context:
|
|
4213
|
-
"""
|
|
4214
|
-
|
|
4215
|
-
class VIEW3D_MT_sculpt_gpencil_automasking_pie(bpy.types.Menu):
|
|
4216
|
-
bl_label: typing.Any
|
|
4217
|
-
bl_rna: typing.Any
|
|
4218
|
-
id_data: typing.Any
|
|
4219
|
-
|
|
4220
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
4221
|
-
"""
|
|
4222
|
-
|
|
4223
|
-
:return: The RNA type or default when not found.
|
|
4224
|
-
:rtype: bpy.types.Struct
|
|
4225
|
-
"""
|
|
4226
|
-
|
|
4227
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
4228
|
-
"""
|
|
4229
|
-
|
|
4230
|
-
:return: The class or default when not found.
|
|
4231
|
-
:rtype: typing.Any
|
|
4232
|
-
"""
|
|
4233
|
-
|
|
4234
|
-
def draw(self, context):
|
|
4235
|
-
"""
|
|
4236
|
-
|
|
4237
|
-
:param context:
|
|
3788
|
+
:param _context:
|
|
4238
3789
|
"""
|
|
4239
3790
|
|
|
4240
|
-
class
|
|
3791
|
+
class VIEW3D_MT_sculpt_face_sets_edit_pie(bpy.types.Menu):
|
|
4241
3792
|
bl_label: typing.Any
|
|
4242
3793
|
bl_rna: typing.Any
|
|
4243
3794
|
id_data: typing.Any
|
|
@@ -4262,7 +3813,7 @@ class VIEW3D_MT_sculpt_mask_edit_pie(bpy.types.Menu):
|
|
|
4262
3813
|
:param _context:
|
|
4263
3814
|
"""
|
|
4264
3815
|
|
|
4265
|
-
class
|
|
3816
|
+
class VIEW3D_MT_sculpt_mask_edit_pie(bpy.types.Menu):
|
|
4266
3817
|
bl_label: typing.Any
|
|
4267
3818
|
bl_rna: typing.Any
|
|
4268
3819
|
id_data: typing.Any
|
|
@@ -4287,7 +3838,7 @@ class VIEW3D_MT_sculpt_set_pivot(bpy.types.Menu):
|
|
|
4287
3838
|
:param _context:
|
|
4288
3839
|
"""
|
|
4289
3840
|
|
|
4290
|
-
class
|
|
3841
|
+
class VIEW3D_MT_sculpt_set_pivot(bpy.types.Menu):
|
|
4291
3842
|
bl_label: typing.Any
|
|
4292
3843
|
bl_rna: typing.Any
|
|
4293
3844
|
id_data: typing.Any
|
|
@@ -4312,7 +3863,7 @@ class VIEW3D_MT_sculpt_showhide(bpy.types.Menu):
|
|
|
4312
3863
|
:param _context:
|
|
4313
3864
|
"""
|
|
4314
3865
|
|
|
4315
|
-
class
|
|
3866
|
+
class VIEW3D_MT_sculpt_showhide(bpy.types.Menu):
|
|
4316
3867
|
bl_label: typing.Any
|
|
4317
3868
|
bl_rna: typing.Any
|
|
4318
3869
|
id_data: typing.Any
|
|
@@ -4337,7 +3888,7 @@ class VIEW3D_MT_sculpt_transform(bpy.types.Menu):
|
|
|
4337
3888
|
:param _context:
|
|
4338
3889
|
"""
|
|
4339
3890
|
|
|
4340
|
-
class
|
|
3891
|
+
class VIEW3D_MT_sculpt_transform(bpy.types.Menu):
|
|
4341
3892
|
bl_label: typing.Any
|
|
4342
3893
|
bl_rna: typing.Any
|
|
4343
3894
|
id_data: typing.Any
|
|
@@ -4362,7 +3913,7 @@ class VIEW3D_MT_sculpt_trim(bpy.types.Menu):
|
|
|
4362
3913
|
:param _context:
|
|
4363
3914
|
"""
|
|
4364
3915
|
|
|
4365
|
-
class
|
|
3916
|
+
class VIEW3D_MT_sculpt_trim(bpy.types.Menu):
|
|
4366
3917
|
bl_label: typing.Any
|
|
4367
3918
|
bl_rna: typing.Any
|
|
4368
3919
|
id_data: typing.Any
|
|
@@ -4387,7 +3938,7 @@ class VIEW3D_MT_select_edit_armature(bpy.types.Menu):
|
|
|
4387
3938
|
:param _context:
|
|
4388
3939
|
"""
|
|
4389
3940
|
|
|
4390
|
-
class
|
|
3941
|
+
class VIEW3D_MT_select_edit_armature(bpy.types.Menu):
|
|
4391
3942
|
bl_label: typing.Any
|
|
4392
3943
|
bl_rna: typing.Any
|
|
4393
3944
|
id_data: typing.Any
|
|
@@ -4412,7 +3963,7 @@ class VIEW3D_MT_select_edit_curve(bpy.types.Menu):
|
|
|
4412
3963
|
:param _context:
|
|
4413
3964
|
"""
|
|
4414
3965
|
|
|
4415
|
-
class
|
|
3966
|
+
class VIEW3D_MT_select_edit_curve(bpy.types.Menu):
|
|
4416
3967
|
bl_label: typing.Any
|
|
4417
3968
|
bl_rna: typing.Any
|
|
4418
3969
|
id_data: typing.Any
|
|
@@ -4437,7 +3988,7 @@ class VIEW3D_MT_select_edit_curves(bpy.types.Menu):
|
|
|
4437
3988
|
:param _context:
|
|
4438
3989
|
"""
|
|
4439
3990
|
|
|
4440
|
-
class
|
|
3991
|
+
class VIEW3D_MT_select_edit_curves(bpy.types.Menu):
|
|
4441
3992
|
bl_label: typing.Any
|
|
4442
3993
|
bl_rna: typing.Any
|
|
4443
3994
|
id_data: typing.Any
|
|
@@ -4456,10 +4007,10 @@ class VIEW3D_MT_select_edit_gpencil(bpy.types.Menu):
|
|
|
4456
4007
|
:rtype: typing.Any
|
|
4457
4008
|
"""
|
|
4458
4009
|
|
|
4459
|
-
def draw(self,
|
|
4010
|
+
def draw(self, _context):
|
|
4460
4011
|
"""
|
|
4461
4012
|
|
|
4462
|
-
:param
|
|
4013
|
+
:param _context:
|
|
4463
4014
|
"""
|
|
4464
4015
|
|
|
4465
4016
|
class VIEW3D_MT_select_edit_grease_pencil(bpy.types.Menu):
|
|
@@ -5381,31 +4932,6 @@ class VIEW3D_MT_volume_add(bpy.types.Menu):
|
|
|
5381
4932
|
:param _context:
|
|
5382
4933
|
"""
|
|
5383
4934
|
|
|
5384
|
-
class VIEW3D_MT_weight_gpencil(bpy.types.Menu):
|
|
5385
|
-
bl_label: typing.Any
|
|
5386
|
-
bl_rna: typing.Any
|
|
5387
|
-
id_data: typing.Any
|
|
5388
|
-
|
|
5389
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
5390
|
-
"""
|
|
5391
|
-
|
|
5392
|
-
:return: The RNA type or default when not found.
|
|
5393
|
-
:rtype: bpy.types.Struct
|
|
5394
|
-
"""
|
|
5395
|
-
|
|
5396
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
5397
|
-
"""
|
|
5398
|
-
|
|
5399
|
-
:return: The class or default when not found.
|
|
5400
|
-
:rtype: typing.Any
|
|
5401
|
-
"""
|
|
5402
|
-
|
|
5403
|
-
def draw(self, _context):
|
|
5404
|
-
"""
|
|
5405
|
-
|
|
5406
|
-
:param _context:
|
|
5407
|
-
"""
|
|
5408
|
-
|
|
5409
4935
|
class VIEW3D_MT_weight_grease_pencil(bpy.types.Menu):
|
|
5410
4936
|
bl_label: typing.Any
|
|
5411
4937
|
bl_rna: typing.Any
|
|
@@ -5720,90 +5246,12 @@ class VIEW3D_PT_gizmo_display(bpy.types.Panel):
|
|
|
5720
5246
|
:param context:
|
|
5721
5247
|
"""
|
|
5722
5248
|
|
|
5723
|
-
class
|
|
5724
|
-
|
|
5725
|
-
|
|
5726
|
-
|
|
5727
|
-
bl_space_type: typing.Any
|
|
5728
|
-
id_data: typing.Any
|
|
5729
|
-
|
|
5730
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
5731
|
-
"""
|
|
5732
|
-
|
|
5733
|
-
:return: The RNA type or default when not found.
|
|
5734
|
-
:rtype: bpy.types.Struct
|
|
5735
|
-
"""
|
|
5736
|
-
|
|
5737
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
5738
|
-
"""
|
|
5739
|
-
|
|
5740
|
-
:return: The class or default when not found.
|
|
5741
|
-
:rtype: typing.Any
|
|
5742
|
-
"""
|
|
5743
|
-
|
|
5744
|
-
def draw(self, context):
|
|
5745
|
-
"""
|
|
5746
|
-
|
|
5747
|
-
:param context:
|
|
5748
|
-
"""
|
|
5749
|
-
|
|
5750
|
-
class VIEW3D_PT_gpencil_draw_context_menu(bpy.types.Panel):
|
|
5751
|
-
bl_label: typing.Any
|
|
5752
|
-
bl_region_type: typing.Any
|
|
5753
|
-
bl_rna: typing.Any
|
|
5754
|
-
bl_space_type: typing.Any
|
|
5755
|
-
bl_ui_units_x: typing.Any
|
|
5756
|
-
id_data: typing.Any
|
|
5757
|
-
|
|
5758
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
5759
|
-
"""
|
|
5760
|
-
|
|
5761
|
-
:return: The RNA type or default when not found.
|
|
5762
|
-
:rtype: bpy.types.Struct
|
|
5763
|
-
"""
|
|
5764
|
-
|
|
5765
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
5766
|
-
"""
|
|
5767
|
-
|
|
5768
|
-
:return: The class or default when not found.
|
|
5769
|
-
:rtype: typing.Any
|
|
5770
|
-
"""
|
|
5771
|
-
|
|
5772
|
-
def draw(self, context):
|
|
5773
|
-
"""
|
|
5774
|
-
|
|
5775
|
-
:param context:
|
|
5776
|
-
"""
|
|
5777
|
-
|
|
5778
|
-
class VIEW3D_PT_gpencil_guide(bpy.types.Panel):
|
|
5779
|
-
bl_label: typing.Any
|
|
5780
|
-
bl_region_type: typing.Any
|
|
5781
|
-
bl_rna: typing.Any
|
|
5782
|
-
bl_space_type: typing.Any
|
|
5783
|
-
id_data: typing.Any
|
|
5784
|
-
|
|
5785
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
5786
|
-
"""
|
|
5787
|
-
|
|
5788
|
-
:return: The RNA type or default when not found.
|
|
5789
|
-
:rtype: bpy.types.Struct
|
|
5790
|
-
"""
|
|
5791
|
-
|
|
5792
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
5793
|
-
"""
|
|
5794
|
-
|
|
5795
|
-
:return: The class or default when not found.
|
|
5796
|
-
:rtype: typing.Any
|
|
5797
|
-
"""
|
|
5798
|
-
|
|
5799
|
-
def draw(self, context):
|
|
5800
|
-
"""
|
|
5801
|
-
|
|
5802
|
-
:param context:
|
|
5803
|
-
"""
|
|
5804
|
-
|
|
5805
|
-
class VIEW3D_PT_gpencil_lock(bpy.types.Panel):
|
|
5249
|
+
class VIEW3D_PT_grease_pencil(
|
|
5250
|
+
bl_ui.properties_grease_pencil_common.AnnotationDataPanel, bpy.types.Panel
|
|
5251
|
+
):
|
|
5252
|
+
bl_category: typing.Any
|
|
5806
5253
|
bl_label: typing.Any
|
|
5254
|
+
bl_options: typing.Any
|
|
5807
5255
|
bl_region_type: typing.Any
|
|
5808
5256
|
bl_rna: typing.Any
|
|
5809
5257
|
bl_space_type: typing.Any
|
|
@@ -5823,13 +5271,7 @@ class VIEW3D_PT_gpencil_lock(bpy.types.Panel):
|
|
|
5823
5271
|
:rtype: typing.Any
|
|
5824
5272
|
"""
|
|
5825
5273
|
|
|
5826
|
-
|
|
5827
|
-
"""
|
|
5828
|
-
|
|
5829
|
-
:param context:
|
|
5830
|
-
"""
|
|
5831
|
-
|
|
5832
|
-
class VIEW3D_PT_gpencil_multi_frame(bpy.types.Panel):
|
|
5274
|
+
class VIEW3D_PT_grease_pencil_guide(bpy.types.Panel):
|
|
5833
5275
|
bl_label: typing.Any
|
|
5834
5276
|
bl_region_type: typing.Any
|
|
5835
5277
|
bl_rna: typing.Any
|
|
@@ -5856,7 +5298,7 @@ class VIEW3D_PT_gpencil_multi_frame(bpy.types.Panel):
|
|
|
5856
5298
|
:param context:
|
|
5857
5299
|
"""
|
|
5858
5300
|
|
|
5859
|
-
class
|
|
5301
|
+
class VIEW3D_PT_grease_pencil_lock(bpy.types.Panel):
|
|
5860
5302
|
bl_label: typing.Any
|
|
5861
5303
|
bl_region_type: typing.Any
|
|
5862
5304
|
bl_rna: typing.Any
|
|
@@ -5883,12 +5325,11 @@ class VIEW3D_PT_gpencil_origin(bpy.types.Panel):
|
|
|
5883
5325
|
:param context:
|
|
5884
5326
|
"""
|
|
5885
5327
|
|
|
5886
|
-
class
|
|
5328
|
+
class VIEW3D_PT_grease_pencil_multi_frame(bpy.types.Panel):
|
|
5887
5329
|
bl_label: typing.Any
|
|
5888
5330
|
bl_region_type: typing.Any
|
|
5889
5331
|
bl_rna: typing.Any
|
|
5890
5332
|
bl_space_type: typing.Any
|
|
5891
|
-
bl_ui_units_x: typing.Any
|
|
5892
5333
|
id_data: typing.Any
|
|
5893
5334
|
|
|
5894
5335
|
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
@@ -5911,12 +5352,11 @@ class VIEW3D_PT_gpencil_sculpt_automasking(bpy.types.Panel):
|
|
|
5911
5352
|
:param context:
|
|
5912
5353
|
"""
|
|
5913
5354
|
|
|
5914
|
-
class
|
|
5355
|
+
class VIEW3D_PT_grease_pencil_origin(bpy.types.Panel):
|
|
5915
5356
|
bl_label: typing.Any
|
|
5916
5357
|
bl_region_type: typing.Any
|
|
5917
5358
|
bl_rna: typing.Any
|
|
5918
5359
|
bl_space_type: typing.Any
|
|
5919
|
-
bl_ui_units_x: typing.Any
|
|
5920
5360
|
id_data: typing.Any
|
|
5921
5361
|
|
|
5922
5362
|
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
@@ -5939,7 +5379,7 @@ class VIEW3D_PT_gpencil_sculpt_context_menu(bpy.types.Panel):
|
|
|
5939
5379
|
:param context:
|
|
5940
5380
|
"""
|
|
5941
5381
|
|
|
5942
|
-
class
|
|
5382
|
+
class VIEW3D_PT_grease_pencil_sculpt_automasking(bpy.types.Panel):
|
|
5943
5383
|
bl_label: typing.Any
|
|
5944
5384
|
bl_region_type: typing.Any
|
|
5945
5385
|
bl_rna: typing.Any
|
|
@@ -5967,7 +5407,7 @@ class VIEW3D_PT_gpencil_vertex_context_menu(bpy.types.Panel):
|
|
|
5967
5407
|
:param context:
|
|
5968
5408
|
"""
|
|
5969
5409
|
|
|
5970
|
-
class
|
|
5410
|
+
class VIEW3D_PT_greasepencil_draw_context_menu(bpy.types.Panel):
|
|
5971
5411
|
bl_label: typing.Any
|
|
5972
5412
|
bl_region_type: typing.Any
|
|
5973
5413
|
bl_rna: typing.Any
|
|
@@ -5995,59 +5435,7 @@ class VIEW3D_PT_gpencil_weight_context_menu(bpy.types.Panel):
|
|
|
5995
5435
|
:param context:
|
|
5996
5436
|
"""
|
|
5997
5437
|
|
|
5998
|
-
class
|
|
5999
|
-
bl_ui.properties_grease_pencil_common.AnnotationDataPanel, bpy.types.Panel
|
|
6000
|
-
):
|
|
6001
|
-
bl_category: typing.Any
|
|
6002
|
-
bl_label: typing.Any
|
|
6003
|
-
bl_options: typing.Any
|
|
6004
|
-
bl_region_type: typing.Any
|
|
6005
|
-
bl_rna: typing.Any
|
|
6006
|
-
bl_space_type: typing.Any
|
|
6007
|
-
id_data: typing.Any
|
|
6008
|
-
|
|
6009
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
6010
|
-
"""
|
|
6011
|
-
|
|
6012
|
-
:return: The RNA type or default when not found.
|
|
6013
|
-
:rtype: bpy.types.Struct
|
|
6014
|
-
"""
|
|
6015
|
-
|
|
6016
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
6017
|
-
"""
|
|
6018
|
-
|
|
6019
|
-
:return: The class or default when not found.
|
|
6020
|
-
:rtype: typing.Any
|
|
6021
|
-
"""
|
|
6022
|
-
|
|
6023
|
-
class VIEW3D_PT_grease_pencil_multi_frame(bpy.types.Panel):
|
|
6024
|
-
bl_label: typing.Any
|
|
6025
|
-
bl_region_type: typing.Any
|
|
6026
|
-
bl_rna: typing.Any
|
|
6027
|
-
bl_space_type: typing.Any
|
|
6028
|
-
id_data: typing.Any
|
|
6029
|
-
|
|
6030
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
6031
|
-
"""
|
|
6032
|
-
|
|
6033
|
-
:return: The RNA type or default when not found.
|
|
6034
|
-
:rtype: bpy.types.Struct
|
|
6035
|
-
"""
|
|
6036
|
-
|
|
6037
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
6038
|
-
"""
|
|
6039
|
-
|
|
6040
|
-
:return: The class or default when not found.
|
|
6041
|
-
:rtype: typing.Any
|
|
6042
|
-
"""
|
|
6043
|
-
|
|
6044
|
-
def draw(self, context):
|
|
6045
|
-
"""
|
|
6046
|
-
|
|
6047
|
-
:param context:
|
|
6048
|
-
"""
|
|
6049
|
-
|
|
6050
|
-
class VIEW3D_PT_greasepencil_draw_context_menu(bpy.types.Panel):
|
|
5438
|
+
class VIEW3D_PT_greasepencil_sculpt_context_menu(bpy.types.Panel):
|
|
6051
5439
|
bl_label: typing.Any
|
|
6052
5440
|
bl_region_type: typing.Any
|
|
6053
5441
|
bl_rna: typing.Any
|
|
@@ -6075,7 +5463,7 @@ class VIEW3D_PT_greasepencil_draw_context_menu(bpy.types.Panel):
|
|
|
6075
5463
|
:param context:
|
|
6076
5464
|
"""
|
|
6077
5465
|
|
|
6078
|
-
class
|
|
5466
|
+
class VIEW3D_PT_greasepencil_vertex_paint_context_menu(bpy.types.Panel):
|
|
6079
5467
|
bl_label: typing.Any
|
|
6080
5468
|
bl_region_type: typing.Any
|
|
6081
5469
|
bl_rna: typing.Any
|
|
@@ -6103,7 +5491,7 @@ class VIEW3D_PT_greasepencil_sculpt_context_menu(bpy.types.Panel):
|
|
|
6103
5491
|
:param context:
|
|
6104
5492
|
"""
|
|
6105
5493
|
|
|
6106
|
-
class
|
|
5494
|
+
class VIEW3D_PT_greasepencil_weight_context_menu(bpy.types.Panel):
|
|
6107
5495
|
bl_label: typing.Any
|
|
6108
5496
|
bl_region_type: typing.Any
|
|
6109
5497
|
bl_rna: typing.Any
|
|
@@ -6473,41 +5861,6 @@ class VIEW3D_PT_overlay_geometry(bpy.types.Panel):
|
|
|
6473
5861
|
:param context:
|
|
6474
5862
|
"""
|
|
6475
5863
|
|
|
6476
|
-
class VIEW3D_PT_overlay_gpencil_options(bpy.types.Panel):
|
|
6477
|
-
bl_label: typing.Any
|
|
6478
|
-
bl_region_type: typing.Any
|
|
6479
|
-
bl_rna: typing.Any
|
|
6480
|
-
bl_space_type: typing.Any
|
|
6481
|
-
bl_ui_units_x: typing.Any
|
|
6482
|
-
id_data: typing.Any
|
|
6483
|
-
|
|
6484
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
6485
|
-
"""
|
|
6486
|
-
|
|
6487
|
-
:return: The RNA type or default when not found.
|
|
6488
|
-
:rtype: bpy.types.Struct
|
|
6489
|
-
"""
|
|
6490
|
-
|
|
6491
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
6492
|
-
"""
|
|
6493
|
-
|
|
6494
|
-
:return: The class or default when not found.
|
|
6495
|
-
:rtype: typing.Any
|
|
6496
|
-
"""
|
|
6497
|
-
|
|
6498
|
-
def draw(self, context):
|
|
6499
|
-
"""
|
|
6500
|
-
|
|
6501
|
-
:param context:
|
|
6502
|
-
"""
|
|
6503
|
-
|
|
6504
|
-
@classmethod
|
|
6505
|
-
def poll(cls, context):
|
|
6506
|
-
"""
|
|
6507
|
-
|
|
6508
|
-
:param context:
|
|
6509
|
-
"""
|
|
6510
|
-
|
|
6511
5864
|
class VIEW3D_PT_overlay_grease_pencil_canvas_options(bpy.types.Panel):
|
|
6512
5865
|
bl_label: typing.Any
|
|
6513
5866
|
bl_parent_id: typing.Any
|
|
@@ -7577,15 +6930,6 @@ class View3DAssetShelf(bl_ui.properties_paint_common.BrushAssetShelf):
|
|
|
7577
6930
|
tool_prop: typing.Any
|
|
7578
6931
|
|
|
7579
6932
|
class _draw_tool_settings_context_mode:
|
|
7580
|
-
@staticmethod
|
|
7581
|
-
def PAINT_GPENCIL(context, layout, tool):
|
|
7582
|
-
"""
|
|
7583
|
-
|
|
7584
|
-
:param context:
|
|
7585
|
-
:param layout:
|
|
7586
|
-
:param tool:
|
|
7587
|
-
"""
|
|
7588
|
-
|
|
7589
6933
|
@staticmethod
|
|
7590
6934
|
def PAINT_GREASE_PENCIL(context, layout, tool):
|
|
7591
6935
|
"""
|
|
@@ -7649,15 +6993,6 @@ class _draw_tool_settings_context_mode:
|
|
|
7649
6993
|
:param tool:
|
|
7650
6994
|
"""
|
|
7651
6995
|
|
|
7652
|
-
@staticmethod
|
|
7653
|
-
def SCULPT_GPENCIL(context, layout, tool):
|
|
7654
|
-
"""
|
|
7655
|
-
|
|
7656
|
-
:param context:
|
|
7657
|
-
:param layout:
|
|
7658
|
-
:param tool:
|
|
7659
|
-
"""
|
|
7660
|
-
|
|
7661
6996
|
@staticmethod
|
|
7662
6997
|
def SCULPT_GREASE_PENCIL(context, layout, tool):
|
|
7663
6998
|
"""
|
|
@@ -7667,15 +7002,6 @@ class _draw_tool_settings_context_mode:
|
|
|
7667
7002
|
:param tool:
|
|
7668
7003
|
"""
|
|
7669
7004
|
|
|
7670
|
-
@staticmethod
|
|
7671
|
-
def VERTEX_GPENCIL(context, layout, tool):
|
|
7672
|
-
"""
|
|
7673
|
-
|
|
7674
|
-
:param context:
|
|
7675
|
-
:param layout:
|
|
7676
|
-
:param tool:
|
|
7677
|
-
"""
|
|
7678
|
-
|
|
7679
7005
|
@staticmethod
|
|
7680
7006
|
def VERTEX_GREASE_PENCIL(context, layout, tool):
|
|
7681
7007
|
"""
|
|
@@ -7764,5 +7090,3 @@ class VIEW3D_MT_bone_options_toggle(bpy.types.Menu, BoneOptions):
|
|
|
7764
7090
|
"""
|
|
7765
7091
|
|
|
7766
7092
|
def draw_curve(self_, _context): ...
|
|
7767
|
-
def draw_gpencil_layer_active(context, layout): ...
|
|
7768
|
-
def draw_gpencil_material_active(context, layout): ...
|