fake-bpy-module 20241004__py3-none-any.whl → 20241009__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/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 +43 -718
- bl_ui/space_view3d_toolbar/__init__.pyi +0 -28
- bpy/ops/anim/__init__.pyi +0 -12
- 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/object/__init__.pyi +3 -66
- bpy/ops/wm/__init__.pyi +0 -357
- bpy/types/__init__.pyi +29827 -30071
- bpy/typing/__init__.pyi +8 -8
- {fake_bpy_module-20241004.dist-info → fake_bpy_module-20241009.dist-info}/METADATA +1 -1
- {fake_bpy_module-20241004.dist-info → fake_bpy_module-20241009.dist-info}/RECORD +21 -21
- mathutils/__init__.pyi +13 -0
- {fake_bpy_module-20241004.dist-info → fake_bpy_module-20241009.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20241004.dist-info → fake_bpy_module-20241009.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
|
|
@@ -3547,31 +3167,6 @@ class VIEW3D_MT_orientations_pie(bpy.types.Menu):
|
|
|
3547
3167
|
:param context:
|
|
3548
3168
|
"""
|
|
3549
3169
|
|
|
3550
|
-
class VIEW3D_MT_paint_gpencil(bpy.types.Menu):
|
|
3551
|
-
bl_label: typing.Any
|
|
3552
|
-
bl_rna: typing.Any
|
|
3553
|
-
id_data: typing.Any
|
|
3554
|
-
|
|
3555
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
3556
|
-
"""
|
|
3557
|
-
|
|
3558
|
-
:return: The RNA type or default when not found.
|
|
3559
|
-
:rtype: bpy.types.Struct
|
|
3560
|
-
"""
|
|
3561
|
-
|
|
3562
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
3563
|
-
"""
|
|
3564
|
-
|
|
3565
|
-
:return: The class or default when not found.
|
|
3566
|
-
:rtype: typing.Any
|
|
3567
|
-
"""
|
|
3568
|
-
|
|
3569
|
-
def draw(self, _context):
|
|
3570
|
-
"""
|
|
3571
|
-
|
|
3572
|
-
:param _context:
|
|
3573
|
-
"""
|
|
3574
|
-
|
|
3575
3170
|
class VIEW3D_MT_paint_grease_pencil(bpy.types.Menu):
|
|
3576
3171
|
bl_label: typing.Any
|
|
3577
3172
|
bl_rna: typing.Any
|
|
@@ -4218,31 +3813,6 @@ class VIEW3D_MT_sculpt_face_sets_edit_pie(bpy.types.Menu):
|
|
|
4218
3813
|
:param _context:
|
|
4219
3814
|
"""
|
|
4220
3815
|
|
|
4221
|
-
class VIEW3D_MT_sculpt_gpencil_automasking_pie(bpy.types.Menu):
|
|
4222
|
-
bl_label: typing.Any
|
|
4223
|
-
bl_rna: typing.Any
|
|
4224
|
-
id_data: typing.Any
|
|
4225
|
-
|
|
4226
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
4227
|
-
"""
|
|
4228
|
-
|
|
4229
|
-
:return: The RNA type or default when not found.
|
|
4230
|
-
:rtype: bpy.types.Struct
|
|
4231
|
-
"""
|
|
4232
|
-
|
|
4233
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
4234
|
-
"""
|
|
4235
|
-
|
|
4236
|
-
:return: The class or default when not found.
|
|
4237
|
-
:rtype: typing.Any
|
|
4238
|
-
"""
|
|
4239
|
-
|
|
4240
|
-
def draw(self, context):
|
|
4241
|
-
"""
|
|
4242
|
-
|
|
4243
|
-
:param context:
|
|
4244
|
-
"""
|
|
4245
|
-
|
|
4246
3816
|
class VIEW3D_MT_sculpt_mask_edit_pie(bpy.types.Menu):
|
|
4247
3817
|
bl_label: typing.Any
|
|
4248
3818
|
bl_rna: typing.Any
|
|
@@ -4418,32 +3988,7 @@ class VIEW3D_MT_select_edit_curve(bpy.types.Menu):
|
|
|
4418
3988
|
:param _context:
|
|
4419
3989
|
"""
|
|
4420
3990
|
|
|
4421
|
-
class VIEW3D_MT_select_edit_curves(bpy.types.Menu):
|
|
4422
|
-
bl_label: typing.Any
|
|
4423
|
-
bl_rna: typing.Any
|
|
4424
|
-
id_data: typing.Any
|
|
4425
|
-
|
|
4426
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
4427
|
-
"""
|
|
4428
|
-
|
|
4429
|
-
:return: The RNA type or default when not found.
|
|
4430
|
-
:rtype: bpy.types.Struct
|
|
4431
|
-
"""
|
|
4432
|
-
|
|
4433
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
4434
|
-
"""
|
|
4435
|
-
|
|
4436
|
-
:return: The class or default when not found.
|
|
4437
|
-
:rtype: typing.Any
|
|
4438
|
-
"""
|
|
4439
|
-
|
|
4440
|
-
def draw(self, _context):
|
|
4441
|
-
"""
|
|
4442
|
-
|
|
4443
|
-
:param _context:
|
|
4444
|
-
"""
|
|
4445
|
-
|
|
4446
|
-
class VIEW3D_MT_select_edit_gpencil(bpy.types.Menu):
|
|
3991
|
+
class VIEW3D_MT_select_edit_curves(bpy.types.Menu):
|
|
4447
3992
|
bl_label: typing.Any
|
|
4448
3993
|
bl_rna: typing.Any
|
|
4449
3994
|
id_data: typing.Any
|
|
@@ -4462,10 +4007,10 @@ class VIEW3D_MT_select_edit_gpencil(bpy.types.Menu):
|
|
|
4462
4007
|
:rtype: typing.Any
|
|
4463
4008
|
"""
|
|
4464
4009
|
|
|
4465
|
-
def draw(self,
|
|
4010
|
+
def draw(self, _context):
|
|
4466
4011
|
"""
|
|
4467
4012
|
|
|
4468
|
-
:param
|
|
4013
|
+
:param _context:
|
|
4469
4014
|
"""
|
|
4470
4015
|
|
|
4471
4016
|
class VIEW3D_MT_select_edit_grease_pencil(bpy.types.Menu):
|
|
@@ -5387,31 +4932,6 @@ class VIEW3D_MT_volume_add(bpy.types.Menu):
|
|
|
5387
4932
|
:param _context:
|
|
5388
4933
|
"""
|
|
5389
4934
|
|
|
5390
|
-
class VIEW3D_MT_weight_gpencil(bpy.types.Menu):
|
|
5391
|
-
bl_label: typing.Any
|
|
5392
|
-
bl_rna: typing.Any
|
|
5393
|
-
id_data: typing.Any
|
|
5394
|
-
|
|
5395
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
5396
|
-
"""
|
|
5397
|
-
|
|
5398
|
-
:return: The RNA type or default when not found.
|
|
5399
|
-
:rtype: bpy.types.Struct
|
|
5400
|
-
"""
|
|
5401
|
-
|
|
5402
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
5403
|
-
"""
|
|
5404
|
-
|
|
5405
|
-
:return: The class or default when not found.
|
|
5406
|
-
:rtype: typing.Any
|
|
5407
|
-
"""
|
|
5408
|
-
|
|
5409
|
-
def draw(self, _context):
|
|
5410
|
-
"""
|
|
5411
|
-
|
|
5412
|
-
:param _context:
|
|
5413
|
-
"""
|
|
5414
|
-
|
|
5415
4935
|
class VIEW3D_MT_weight_grease_pencil(bpy.types.Menu):
|
|
5416
4936
|
bl_label: typing.Any
|
|
5417
4937
|
bl_rna: typing.Any
|
|
@@ -5726,117 +5246,12 @@ class VIEW3D_PT_gizmo_display(bpy.types.Panel):
|
|
|
5726
5246
|
:param context:
|
|
5727
5247
|
"""
|
|
5728
5248
|
|
|
5729
|
-
class
|
|
5730
|
-
|
|
5731
|
-
|
|
5732
|
-
|
|
5733
|
-
bl_space_type: typing.Any
|
|
5734
|
-
id_data: typing.Any
|
|
5735
|
-
|
|
5736
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
5737
|
-
"""
|
|
5738
|
-
|
|
5739
|
-
:return: The RNA type or default when not found.
|
|
5740
|
-
:rtype: bpy.types.Struct
|
|
5741
|
-
"""
|
|
5742
|
-
|
|
5743
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
5744
|
-
"""
|
|
5745
|
-
|
|
5746
|
-
:return: The class or default when not found.
|
|
5747
|
-
:rtype: typing.Any
|
|
5748
|
-
"""
|
|
5749
|
-
|
|
5750
|
-
def draw(self, context):
|
|
5751
|
-
"""
|
|
5752
|
-
|
|
5753
|
-
:param context:
|
|
5754
|
-
"""
|
|
5755
|
-
|
|
5756
|
-
class VIEW3D_PT_gpencil_draw_context_menu(bpy.types.Panel):
|
|
5757
|
-
bl_label: typing.Any
|
|
5758
|
-
bl_region_type: typing.Any
|
|
5759
|
-
bl_rna: typing.Any
|
|
5760
|
-
bl_space_type: typing.Any
|
|
5761
|
-
bl_ui_units_x: typing.Any
|
|
5762
|
-
id_data: typing.Any
|
|
5763
|
-
|
|
5764
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
5765
|
-
"""
|
|
5766
|
-
|
|
5767
|
-
:return: The RNA type or default when not found.
|
|
5768
|
-
:rtype: bpy.types.Struct
|
|
5769
|
-
"""
|
|
5770
|
-
|
|
5771
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
5772
|
-
"""
|
|
5773
|
-
|
|
5774
|
-
:return: The class or default when not found.
|
|
5775
|
-
:rtype: typing.Any
|
|
5776
|
-
"""
|
|
5777
|
-
|
|
5778
|
-
def draw(self, context):
|
|
5779
|
-
"""
|
|
5780
|
-
|
|
5781
|
-
:param context:
|
|
5782
|
-
"""
|
|
5783
|
-
|
|
5784
|
-
class VIEW3D_PT_gpencil_guide(bpy.types.Panel):
|
|
5785
|
-
bl_label: typing.Any
|
|
5786
|
-
bl_region_type: typing.Any
|
|
5787
|
-
bl_rna: typing.Any
|
|
5788
|
-
bl_space_type: typing.Any
|
|
5789
|
-
id_data: typing.Any
|
|
5790
|
-
|
|
5791
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
5792
|
-
"""
|
|
5793
|
-
|
|
5794
|
-
:return: The RNA type or default when not found.
|
|
5795
|
-
:rtype: bpy.types.Struct
|
|
5796
|
-
"""
|
|
5797
|
-
|
|
5798
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
5799
|
-
"""
|
|
5800
|
-
|
|
5801
|
-
:return: The class or default when not found.
|
|
5802
|
-
:rtype: typing.Any
|
|
5803
|
-
"""
|
|
5804
|
-
|
|
5805
|
-
def draw(self, context):
|
|
5806
|
-
"""
|
|
5807
|
-
|
|
5808
|
-
:param context:
|
|
5809
|
-
"""
|
|
5810
|
-
|
|
5811
|
-
class VIEW3D_PT_gpencil_lock(bpy.types.Panel):
|
|
5812
|
-
bl_label: typing.Any
|
|
5813
|
-
bl_region_type: typing.Any
|
|
5814
|
-
bl_rna: typing.Any
|
|
5815
|
-
bl_space_type: typing.Any
|
|
5816
|
-
id_data: typing.Any
|
|
5817
|
-
|
|
5818
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
5819
|
-
"""
|
|
5820
|
-
|
|
5821
|
-
:return: The RNA type or default when not found.
|
|
5822
|
-
:rtype: bpy.types.Struct
|
|
5823
|
-
"""
|
|
5824
|
-
|
|
5825
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
5826
|
-
"""
|
|
5827
|
-
|
|
5828
|
-
:return: The class or default when not found.
|
|
5829
|
-
:rtype: typing.Any
|
|
5830
|
-
"""
|
|
5831
|
-
|
|
5832
|
-
def draw(self, context):
|
|
5833
|
-
"""
|
|
5834
|
-
|
|
5835
|
-
:param context:
|
|
5836
|
-
"""
|
|
5837
|
-
|
|
5838
|
-
class VIEW3D_PT_gpencil_multi_frame(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
|
|
5839
5253
|
bl_label: typing.Any
|
|
5254
|
+
bl_options: typing.Any
|
|
5840
5255
|
bl_region_type: typing.Any
|
|
5841
5256
|
bl_rna: typing.Any
|
|
5842
5257
|
bl_space_type: typing.Any
|
|
@@ -5856,13 +5271,7 @@ class VIEW3D_PT_gpencil_multi_frame(bpy.types.Panel):
|
|
|
5856
5271
|
:rtype: typing.Any
|
|
5857
5272
|
"""
|
|
5858
5273
|
|
|
5859
|
-
|
|
5860
|
-
"""
|
|
5861
|
-
|
|
5862
|
-
:param context:
|
|
5863
|
-
"""
|
|
5864
|
-
|
|
5865
|
-
class VIEW3D_PT_gpencil_origin(bpy.types.Panel):
|
|
5274
|
+
class VIEW3D_PT_grease_pencil_guide(bpy.types.Panel):
|
|
5866
5275
|
bl_label: typing.Any
|
|
5867
5276
|
bl_region_type: typing.Any
|
|
5868
5277
|
bl_rna: typing.Any
|
|
@@ -5889,12 +5298,11 @@ class VIEW3D_PT_gpencil_origin(bpy.types.Panel):
|
|
|
5889
5298
|
:param context:
|
|
5890
5299
|
"""
|
|
5891
5300
|
|
|
5892
|
-
class
|
|
5301
|
+
class VIEW3D_PT_grease_pencil_lock(bpy.types.Panel):
|
|
5893
5302
|
bl_label: typing.Any
|
|
5894
5303
|
bl_region_type: typing.Any
|
|
5895
5304
|
bl_rna: typing.Any
|
|
5896
5305
|
bl_space_type: typing.Any
|
|
5897
|
-
bl_ui_units_x: typing.Any
|
|
5898
5306
|
id_data: typing.Any
|
|
5899
5307
|
|
|
5900
5308
|
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
@@ -5917,12 +5325,11 @@ class VIEW3D_PT_gpencil_sculpt_automasking(bpy.types.Panel):
|
|
|
5917
5325
|
:param context:
|
|
5918
5326
|
"""
|
|
5919
5327
|
|
|
5920
|
-
class
|
|
5328
|
+
class VIEW3D_PT_grease_pencil_multi_frame(bpy.types.Panel):
|
|
5921
5329
|
bl_label: typing.Any
|
|
5922
5330
|
bl_region_type: typing.Any
|
|
5923
5331
|
bl_rna: typing.Any
|
|
5924
5332
|
bl_space_type: typing.Any
|
|
5925
|
-
bl_ui_units_x: typing.Any
|
|
5926
5333
|
id_data: typing.Any
|
|
5927
5334
|
|
|
5928
5335
|
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
@@ -5945,12 +5352,11 @@ class VIEW3D_PT_gpencil_sculpt_context_menu(bpy.types.Panel):
|
|
|
5945
5352
|
:param context:
|
|
5946
5353
|
"""
|
|
5947
5354
|
|
|
5948
|
-
class
|
|
5355
|
+
class VIEW3D_PT_grease_pencil_origin(bpy.types.Panel):
|
|
5949
5356
|
bl_label: typing.Any
|
|
5950
5357
|
bl_region_type: typing.Any
|
|
5951
5358
|
bl_rna: typing.Any
|
|
5952
5359
|
bl_space_type: typing.Any
|
|
5953
|
-
bl_ui_units_x: typing.Any
|
|
5954
5360
|
id_data: typing.Any
|
|
5955
5361
|
|
|
5956
5362
|
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
@@ -5973,7 +5379,7 @@ class VIEW3D_PT_gpencil_vertex_context_menu(bpy.types.Panel):
|
|
|
5973
5379
|
:param context:
|
|
5974
5380
|
"""
|
|
5975
5381
|
|
|
5976
|
-
class
|
|
5382
|
+
class VIEW3D_PT_grease_pencil_sculpt_automasking(bpy.types.Panel):
|
|
5977
5383
|
bl_label: typing.Any
|
|
5978
5384
|
bl_region_type: typing.Any
|
|
5979
5385
|
bl_rna: typing.Any
|
|
@@ -6001,58 +5407,6 @@ class VIEW3D_PT_gpencil_weight_context_menu(bpy.types.Panel):
|
|
|
6001
5407
|
:param context:
|
|
6002
5408
|
"""
|
|
6003
5409
|
|
|
6004
|
-
class VIEW3D_PT_grease_pencil(
|
|
6005
|
-
bl_ui.properties_grease_pencil_common.AnnotationDataPanel, bpy.types.Panel
|
|
6006
|
-
):
|
|
6007
|
-
bl_category: typing.Any
|
|
6008
|
-
bl_label: typing.Any
|
|
6009
|
-
bl_options: typing.Any
|
|
6010
|
-
bl_region_type: typing.Any
|
|
6011
|
-
bl_rna: typing.Any
|
|
6012
|
-
bl_space_type: typing.Any
|
|
6013
|
-
id_data: typing.Any
|
|
6014
|
-
|
|
6015
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
6016
|
-
"""
|
|
6017
|
-
|
|
6018
|
-
:return: The RNA type or default when not found.
|
|
6019
|
-
:rtype: bpy.types.Struct
|
|
6020
|
-
"""
|
|
6021
|
-
|
|
6022
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
6023
|
-
"""
|
|
6024
|
-
|
|
6025
|
-
:return: The class or default when not found.
|
|
6026
|
-
:rtype: typing.Any
|
|
6027
|
-
"""
|
|
6028
|
-
|
|
6029
|
-
class VIEW3D_PT_grease_pencil_multi_frame(bpy.types.Panel):
|
|
6030
|
-
bl_label: typing.Any
|
|
6031
|
-
bl_region_type: typing.Any
|
|
6032
|
-
bl_rna: typing.Any
|
|
6033
|
-
bl_space_type: typing.Any
|
|
6034
|
-
id_data: typing.Any
|
|
6035
|
-
|
|
6036
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
6037
|
-
"""
|
|
6038
|
-
|
|
6039
|
-
:return: The RNA type or default when not found.
|
|
6040
|
-
:rtype: bpy.types.Struct
|
|
6041
|
-
"""
|
|
6042
|
-
|
|
6043
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
6044
|
-
"""
|
|
6045
|
-
|
|
6046
|
-
:return: The class or default when not found.
|
|
6047
|
-
:rtype: typing.Any
|
|
6048
|
-
"""
|
|
6049
|
-
|
|
6050
|
-
def draw(self, context):
|
|
6051
|
-
"""
|
|
6052
|
-
|
|
6053
|
-
:param context:
|
|
6054
|
-
"""
|
|
6055
|
-
|
|
6056
5410
|
class VIEW3D_PT_greasepencil_draw_context_menu(bpy.types.Panel):
|
|
6057
5411
|
bl_label: typing.Any
|
|
6058
5412
|
bl_region_type: typing.Any
|
|
@@ -6304,12 +5658,11 @@ class VIEW3D_PT_overlay_edit_curve(bpy.types.Panel):
|
|
|
6304
5658
|
:param context:
|
|
6305
5659
|
"""
|
|
6306
5660
|
|
|
6307
|
-
class
|
|
5661
|
+
class VIEW3D_PT_overlay_edit_curves(bpy.types.Panel):
|
|
6308
5662
|
bl_label: typing.Any
|
|
6309
5663
|
bl_region_type: typing.Any
|
|
6310
5664
|
bl_rna: typing.Any
|
|
6311
5665
|
bl_space_type: typing.Any
|
|
6312
|
-
bl_ui_units_x: typing.Any
|
|
6313
5666
|
id_data: typing.Any
|
|
6314
5667
|
|
|
6315
5668
|
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
@@ -6339,12 +5692,12 @@ class VIEW3D_PT_overlay_edit_mesh(bpy.types.Panel):
|
|
|
6339
5692
|
:param context:
|
|
6340
5693
|
"""
|
|
6341
5694
|
|
|
6342
|
-
class
|
|
5695
|
+
class VIEW3D_PT_overlay_edit_mesh(bpy.types.Panel):
|
|
6343
5696
|
bl_label: typing.Any
|
|
6344
|
-
bl_parent_id: typing.Any
|
|
6345
5697
|
bl_region_type: typing.Any
|
|
6346
5698
|
bl_rna: typing.Any
|
|
6347
5699
|
bl_space_type: typing.Any
|
|
5700
|
+
bl_ui_units_x: typing.Any
|
|
6348
5701
|
id_data: typing.Any
|
|
6349
5702
|
|
|
6350
5703
|
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
@@ -6374,7 +5727,7 @@ class VIEW3D_PT_overlay_edit_mesh_freestyle(bpy.types.Panel):
|
|
|
6374
5727
|
:param context:
|
|
6375
5728
|
"""
|
|
6376
5729
|
|
|
6377
|
-
class
|
|
5730
|
+
class VIEW3D_PT_overlay_edit_mesh_freestyle(bpy.types.Panel):
|
|
6378
5731
|
bl_label: typing.Any
|
|
6379
5732
|
bl_parent_id: typing.Any
|
|
6380
5733
|
bl_region_type: typing.Any
|
|
@@ -6409,7 +5762,7 @@ class VIEW3D_PT_overlay_edit_mesh_measurement(bpy.types.Panel):
|
|
|
6409
5762
|
:param context:
|
|
6410
5763
|
"""
|
|
6411
5764
|
|
|
6412
|
-
class
|
|
5765
|
+
class VIEW3D_PT_overlay_edit_mesh_measurement(bpy.types.Panel):
|
|
6413
5766
|
bl_label: typing.Any
|
|
6414
5767
|
bl_parent_id: typing.Any
|
|
6415
5768
|
bl_region_type: typing.Any
|
|
@@ -6444,7 +5797,7 @@ class VIEW3D_PT_overlay_edit_mesh_normals(bpy.types.Panel):
|
|
|
6444
5797
|
:param context:
|
|
6445
5798
|
"""
|
|
6446
5799
|
|
|
6447
|
-
class
|
|
5800
|
+
class VIEW3D_PT_overlay_edit_mesh_normals(bpy.types.Panel):
|
|
6448
5801
|
bl_label: typing.Any
|
|
6449
5802
|
bl_parent_id: typing.Any
|
|
6450
5803
|
bl_region_type: typing.Any
|
|
@@ -6479,7 +5832,7 @@ class VIEW3D_PT_overlay_edit_mesh_shading(bpy.types.Panel):
|
|
|
6479
5832
|
:param context:
|
|
6480
5833
|
"""
|
|
6481
5834
|
|
|
6482
|
-
class
|
|
5835
|
+
class VIEW3D_PT_overlay_edit_mesh_shading(bpy.types.Panel):
|
|
6483
5836
|
bl_label: typing.Any
|
|
6484
5837
|
bl_parent_id: typing.Any
|
|
6485
5838
|
bl_region_type: typing.Any
|
|
@@ -6507,12 +5860,19 @@ class VIEW3D_PT_overlay_geometry(bpy.types.Panel):
|
|
|
6507
5860
|
:param context:
|
|
6508
5861
|
"""
|
|
6509
5862
|
|
|
6510
|
-
|
|
5863
|
+
@classmethod
|
|
5864
|
+
def poll(cls, context):
|
|
5865
|
+
"""
|
|
5866
|
+
|
|
5867
|
+
:param context:
|
|
5868
|
+
"""
|
|
5869
|
+
|
|
5870
|
+
class VIEW3D_PT_overlay_geometry(bpy.types.Panel):
|
|
6511
5871
|
bl_label: typing.Any
|
|
5872
|
+
bl_parent_id: typing.Any
|
|
6512
5873
|
bl_region_type: typing.Any
|
|
6513
5874
|
bl_rna: typing.Any
|
|
6514
5875
|
bl_space_type: typing.Any
|
|
6515
|
-
bl_ui_units_x: typing.Any
|
|
6516
5876
|
id_data: typing.Any
|
|
6517
5877
|
|
|
6518
5878
|
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
@@ -6535,13 +5895,6 @@ class VIEW3D_PT_overlay_gpencil_options(bpy.types.Panel):
|
|
|
6535
5895
|
:param context:
|
|
6536
5896
|
"""
|
|
6537
5897
|
|
|
6538
|
-
@classmethod
|
|
6539
|
-
def poll(cls, context):
|
|
6540
|
-
"""
|
|
6541
|
-
|
|
6542
|
-
:param context:
|
|
6543
|
-
"""
|
|
6544
|
-
|
|
6545
5898
|
class VIEW3D_PT_overlay_grease_pencil_canvas_options(bpy.types.Panel):
|
|
6546
5899
|
bl_label: typing.Any
|
|
6547
5900
|
bl_parent_id: typing.Any
|
|
@@ -7611,15 +6964,6 @@ class View3DAssetShelf(bl_ui.properties_paint_common.BrushAssetShelf):
|
|
|
7611
6964
|
tool_prop: typing.Any
|
|
7612
6965
|
|
|
7613
6966
|
class _draw_tool_settings_context_mode:
|
|
7614
|
-
@staticmethod
|
|
7615
|
-
def PAINT_GPENCIL(context, layout, tool):
|
|
7616
|
-
"""
|
|
7617
|
-
|
|
7618
|
-
:param context:
|
|
7619
|
-
:param layout:
|
|
7620
|
-
:param tool:
|
|
7621
|
-
"""
|
|
7622
|
-
|
|
7623
6967
|
@staticmethod
|
|
7624
6968
|
def PAINT_GREASE_PENCIL(context, layout, tool):
|
|
7625
6969
|
"""
|
|
@@ -7683,15 +7027,6 @@ class _draw_tool_settings_context_mode:
|
|
|
7683
7027
|
:param tool:
|
|
7684
7028
|
"""
|
|
7685
7029
|
|
|
7686
|
-
@staticmethod
|
|
7687
|
-
def SCULPT_GPENCIL(context, layout, tool):
|
|
7688
|
-
"""
|
|
7689
|
-
|
|
7690
|
-
:param context:
|
|
7691
|
-
:param layout:
|
|
7692
|
-
:param tool:
|
|
7693
|
-
"""
|
|
7694
|
-
|
|
7695
7030
|
@staticmethod
|
|
7696
7031
|
def SCULPT_GREASE_PENCIL(context, layout, tool):
|
|
7697
7032
|
"""
|
|
@@ -7701,15 +7036,6 @@ class _draw_tool_settings_context_mode:
|
|
|
7701
7036
|
:param tool:
|
|
7702
7037
|
"""
|
|
7703
7038
|
|
|
7704
|
-
@staticmethod
|
|
7705
|
-
def VERTEX_GPENCIL(context, layout, tool):
|
|
7706
|
-
"""
|
|
7707
|
-
|
|
7708
|
-
:param context:
|
|
7709
|
-
:param layout:
|
|
7710
|
-
:param tool:
|
|
7711
|
-
"""
|
|
7712
|
-
|
|
7713
7039
|
@staticmethod
|
|
7714
7040
|
def VERTEX_GREASE_PENCIL(context, layout, tool):
|
|
7715
7041
|
"""
|
|
@@ -7798,5 +7124,4 @@ class VIEW3D_MT_bone_options_toggle(bpy.types.Menu, BoneOptions):
|
|
|
7798
7124
|
"""
|
|
7799
7125
|
|
|
7800
7126
|
def draw_curve(self_, _context): ...
|
|
7801
|
-
def
|
|
7802
|
-
def draw_gpencil_material_active(context, layout): ...
|
|
7127
|
+
def draw_topbar_grease_pencil_layer_panel(context, layout): ...
|