fake-bpy-module 20240511__py3-none-any.whl → 20240515__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_grease_pencil/__init__.pyi +66 -66
- bl_ui/properties_grease_pencil_common/__init__.pyi +362 -0
- bl_ui/properties_render/__init__.pyi +183 -0
- bl_ui/properties_world/__init__.pyi +499 -2
- bl_ui/space_clip/__init__.pyi +181 -0
- bl_ui/space_sequencer/__init__.pyi +228 -111
- bl_ui/space_toolsystem_toolbar/__init__.pyi +43 -43
- bl_ui/space_view3d/__init__.pyi +327 -0
- bl_ui/space_view3d_toolbar/__init__.pyi +170 -0
- bpy/app/__init__.pyi +2 -2
- bpy/ops/anim/__init__.pyi +1 -1
- bpy/ops/export_scene/__init__.pyi +2 -2
- bpy/ops/grease_pencil/__init__.pyi +51 -0
- bpy/ops/nla/__init__.pyi +3 -3
- bpy/ops/preferences/__init__.pyi +6 -3
- bpy/ops/sculpt/__init__.pyi +2 -2
- bpy/ops/ui/__init__.pyi +3 -0
- bpy/types/__init__.pyi +39759 -39783
- {fake_bpy_module-20240511.dist-info → fake_bpy_module-20240515.dist-info}/METADATA +2 -1
- {fake_bpy_module-20240511.dist-info → fake_bpy_module-20240515.dist-info}/RECORD +23 -23
- mathutils/__init__.pyi +72 -71
- {fake_bpy_module-20240511.dist-info → fake_bpy_module-20240515.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240511.dist-info → fake_bpy_module-20240515.dist-info}/top_level.txt +0 -0
|
@@ -262,7 +262,7 @@ class GREASE_PENCIL_MT_grease_pencil_add_layer_extra(
|
|
|
262
262
|
""" """
|
|
263
263
|
...
|
|
264
264
|
|
|
265
|
-
class
|
|
265
|
+
class GREASE_PENCIL_MT_group_context_menu(bpy_types.Menu, bpy_types._GenericUI):
|
|
266
266
|
""" """
|
|
267
267
|
|
|
268
268
|
bl_label: typing.Any
|
|
@@ -443,7 +443,10 @@ class GREASE_PENCIL_MT_layer_mask_add(bpy_types.Menu, bpy_types._GenericUI):
|
|
|
443
443
|
""" """
|
|
444
444
|
...
|
|
445
445
|
|
|
446
|
-
class
|
|
446
|
+
class GREASE_PENCIL_MT_layer_mask_add(bpy_types.Menu, bpy_types._GenericUI):
|
|
447
|
+
""" """
|
|
448
|
+
|
|
449
|
+
bl_label: typing.Any
|
|
447
450
|
""" """
|
|
448
451
|
|
|
449
452
|
bl_rna: typing.Any
|
|
@@ -471,27 +474,25 @@ class GREASE_PENCIL_UL_masks(bpy_types.UIList, bpy_types._GenericUI):
|
|
|
471
474
|
""" """
|
|
472
475
|
...
|
|
473
476
|
|
|
474
|
-
def
|
|
475
|
-
self,
|
|
476
|
-
_context,
|
|
477
|
-
layout,
|
|
478
|
-
_data,
|
|
479
|
-
item,
|
|
480
|
-
icon,
|
|
481
|
-
_active_data,
|
|
482
|
-
_active_propname,
|
|
483
|
-
_index,
|
|
484
|
-
):
|
|
477
|
+
def draw(self, context):
|
|
485
478
|
"""
|
|
486
479
|
|
|
487
|
-
:param
|
|
480
|
+
:param context:
|
|
481
|
+
"""
|
|
482
|
+
...
|
|
483
|
+
|
|
484
|
+
def draw_collapsible(self, context, layout):
|
|
485
|
+
"""
|
|
486
|
+
|
|
487
|
+
:param context:
|
|
488
488
|
:param layout:
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
489
|
+
"""
|
|
490
|
+
...
|
|
491
|
+
|
|
492
|
+
def draw_preset(self, _context):
|
|
493
|
+
"""
|
|
494
|
+
|
|
495
|
+
:param _context:
|
|
495
496
|
"""
|
|
496
497
|
...
|
|
497
498
|
|
|
@@ -559,6 +560,32 @@ class GREASE_PENCIL_UL_masks(bpy_types.UIList, bpy_types._GenericUI):
|
|
|
559
560
|
""" """
|
|
560
561
|
...
|
|
561
562
|
|
|
563
|
+
def path_menu(
|
|
564
|
+
self,
|
|
565
|
+
searchpaths,
|
|
566
|
+
operator,
|
|
567
|
+
props_default,
|
|
568
|
+
prop_filepath,
|
|
569
|
+
filter_ext,
|
|
570
|
+
filter_path,
|
|
571
|
+
display_name,
|
|
572
|
+
add_operator,
|
|
573
|
+
add_operator_props,
|
|
574
|
+
):
|
|
575
|
+
"""
|
|
576
|
+
|
|
577
|
+
:param searchpaths:
|
|
578
|
+
:param operator:
|
|
579
|
+
:param props_default:
|
|
580
|
+
:param prop_filepath:
|
|
581
|
+
:param filter_ext:
|
|
582
|
+
:param filter_path:
|
|
583
|
+
:param display_name:
|
|
584
|
+
:param add_operator:
|
|
585
|
+
:param add_operator_props:
|
|
586
|
+
"""
|
|
587
|
+
...
|
|
588
|
+
|
|
562
589
|
def path_resolve(self):
|
|
563
590
|
""" """
|
|
564
591
|
...
|
|
@@ -597,10 +624,7 @@ class GREASE_PENCIL_UL_masks(bpy_types.UIList, bpy_types._GenericUI):
|
|
|
597
624
|
""" """
|
|
598
625
|
...
|
|
599
626
|
|
|
600
|
-
class
|
|
601
|
-
""" """
|
|
602
|
-
|
|
603
|
-
bl_label: typing.Any
|
|
627
|
+
class GREASE_PENCIL_UL_masks(bpy_types.UIList, bpy_types._GenericUI):
|
|
604
628
|
""" """
|
|
605
629
|
|
|
606
630
|
bl_rna: typing.Any
|
|
@@ -628,25 +652,27 @@ class GreasePencil_MT_group_context_menu(bpy_types.Menu, bpy_types._GenericUI):
|
|
|
628
652
|
""" """
|
|
629
653
|
...
|
|
630
654
|
|
|
631
|
-
def
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
:param layout:
|
|
643
|
-
"""
|
|
644
|
-
...
|
|
645
|
-
|
|
646
|
-
def draw_preset(self, _context):
|
|
655
|
+
def draw_item(
|
|
656
|
+
self,
|
|
657
|
+
_context,
|
|
658
|
+
layout,
|
|
659
|
+
_data,
|
|
660
|
+
item,
|
|
661
|
+
icon,
|
|
662
|
+
_active_data,
|
|
663
|
+
_active_propname,
|
|
664
|
+
_index,
|
|
665
|
+
):
|
|
647
666
|
"""
|
|
648
667
|
|
|
649
668
|
:param _context:
|
|
669
|
+
:param layout:
|
|
670
|
+
:param _data:
|
|
671
|
+
:param item:
|
|
672
|
+
:param icon:
|
|
673
|
+
:param _active_data:
|
|
674
|
+
:param _active_propname:
|
|
675
|
+
:param _index:
|
|
650
676
|
"""
|
|
651
677
|
...
|
|
652
678
|
|
|
@@ -714,32 +740,6 @@ class GreasePencil_MT_group_context_menu(bpy_types.Menu, bpy_types._GenericUI):
|
|
|
714
740
|
""" """
|
|
715
741
|
...
|
|
716
742
|
|
|
717
|
-
def path_menu(
|
|
718
|
-
self,
|
|
719
|
-
searchpaths,
|
|
720
|
-
operator,
|
|
721
|
-
props_default,
|
|
722
|
-
prop_filepath,
|
|
723
|
-
filter_ext,
|
|
724
|
-
filter_path,
|
|
725
|
-
display_name,
|
|
726
|
-
add_operator,
|
|
727
|
-
add_operator_props,
|
|
728
|
-
):
|
|
729
|
-
"""
|
|
730
|
-
|
|
731
|
-
:param searchpaths:
|
|
732
|
-
:param operator:
|
|
733
|
-
:param props_default:
|
|
734
|
-
:param prop_filepath:
|
|
735
|
-
:param filter_ext:
|
|
736
|
-
:param filter_path:
|
|
737
|
-
:param display_name:
|
|
738
|
-
:param add_operator:
|
|
739
|
-
:param add_operator_props:
|
|
740
|
-
"""
|
|
741
|
-
...
|
|
742
|
-
|
|
743
743
|
def path_resolve(self):
|
|
744
744
|
""" """
|
|
745
745
|
...
|
|
@@ -2369,6 +2369,368 @@ class GREASE_PENCIL_MT_move_to_layer(bpy_types.Menu, bpy_types._GenericUI):
|
|
|
2369
2369
|
""" """
|
|
2370
2370
|
...
|
|
2371
2371
|
|
|
2372
|
+
class GREASE_PENCIL_MT_snap(bpy_types.Menu, bpy_types._GenericUI):
|
|
2373
|
+
""" """
|
|
2374
|
+
|
|
2375
|
+
bl_label: typing.Any
|
|
2376
|
+
""" """
|
|
2377
|
+
|
|
2378
|
+
bl_rna: typing.Any
|
|
2379
|
+
""" """
|
|
2380
|
+
|
|
2381
|
+
id_data: typing.Any
|
|
2382
|
+
""" """
|
|
2383
|
+
|
|
2384
|
+
def append(self, draw_func):
|
|
2385
|
+
"""
|
|
2386
|
+
|
|
2387
|
+
:param draw_func:
|
|
2388
|
+
"""
|
|
2389
|
+
...
|
|
2390
|
+
|
|
2391
|
+
def as_pointer(self):
|
|
2392
|
+
""" """
|
|
2393
|
+
...
|
|
2394
|
+
|
|
2395
|
+
def bl_rna_get_subclass(self):
|
|
2396
|
+
""" """
|
|
2397
|
+
...
|
|
2398
|
+
|
|
2399
|
+
def bl_rna_get_subclass_py(self):
|
|
2400
|
+
""" """
|
|
2401
|
+
...
|
|
2402
|
+
|
|
2403
|
+
def draw(self, _context):
|
|
2404
|
+
"""
|
|
2405
|
+
|
|
2406
|
+
:param _context:
|
|
2407
|
+
"""
|
|
2408
|
+
...
|
|
2409
|
+
|
|
2410
|
+
def draw_collapsible(self, context, layout):
|
|
2411
|
+
"""
|
|
2412
|
+
|
|
2413
|
+
:param context:
|
|
2414
|
+
:param layout:
|
|
2415
|
+
"""
|
|
2416
|
+
...
|
|
2417
|
+
|
|
2418
|
+
def draw_preset(self, _context):
|
|
2419
|
+
"""
|
|
2420
|
+
|
|
2421
|
+
:param _context:
|
|
2422
|
+
"""
|
|
2423
|
+
...
|
|
2424
|
+
|
|
2425
|
+
def driver_add(self):
|
|
2426
|
+
""" """
|
|
2427
|
+
...
|
|
2428
|
+
|
|
2429
|
+
def driver_remove(self):
|
|
2430
|
+
""" """
|
|
2431
|
+
...
|
|
2432
|
+
|
|
2433
|
+
def get(self):
|
|
2434
|
+
""" """
|
|
2435
|
+
...
|
|
2436
|
+
|
|
2437
|
+
def id_properties_clear(self):
|
|
2438
|
+
""" """
|
|
2439
|
+
...
|
|
2440
|
+
|
|
2441
|
+
def id_properties_ensure(self):
|
|
2442
|
+
""" """
|
|
2443
|
+
...
|
|
2444
|
+
|
|
2445
|
+
def id_properties_ui(self):
|
|
2446
|
+
""" """
|
|
2447
|
+
...
|
|
2448
|
+
|
|
2449
|
+
def is_extended(self):
|
|
2450
|
+
""" """
|
|
2451
|
+
...
|
|
2452
|
+
|
|
2453
|
+
def is_property_hidden(self):
|
|
2454
|
+
""" """
|
|
2455
|
+
...
|
|
2456
|
+
|
|
2457
|
+
def is_property_overridable_library(self):
|
|
2458
|
+
""" """
|
|
2459
|
+
...
|
|
2460
|
+
|
|
2461
|
+
def is_property_readonly(self):
|
|
2462
|
+
""" """
|
|
2463
|
+
...
|
|
2464
|
+
|
|
2465
|
+
def is_property_set(self):
|
|
2466
|
+
""" """
|
|
2467
|
+
...
|
|
2468
|
+
|
|
2469
|
+
def items(self):
|
|
2470
|
+
""" """
|
|
2471
|
+
...
|
|
2472
|
+
|
|
2473
|
+
def keyframe_delete(self):
|
|
2474
|
+
""" """
|
|
2475
|
+
...
|
|
2476
|
+
|
|
2477
|
+
def keyframe_insert(self):
|
|
2478
|
+
""" """
|
|
2479
|
+
...
|
|
2480
|
+
|
|
2481
|
+
def keys(self):
|
|
2482
|
+
""" """
|
|
2483
|
+
...
|
|
2484
|
+
|
|
2485
|
+
def path_from_id(self):
|
|
2486
|
+
""" """
|
|
2487
|
+
...
|
|
2488
|
+
|
|
2489
|
+
def path_menu(
|
|
2490
|
+
self,
|
|
2491
|
+
searchpaths,
|
|
2492
|
+
operator,
|
|
2493
|
+
props_default,
|
|
2494
|
+
prop_filepath,
|
|
2495
|
+
filter_ext,
|
|
2496
|
+
filter_path,
|
|
2497
|
+
display_name,
|
|
2498
|
+
add_operator,
|
|
2499
|
+
add_operator_props,
|
|
2500
|
+
):
|
|
2501
|
+
"""
|
|
2502
|
+
|
|
2503
|
+
:param searchpaths:
|
|
2504
|
+
:param operator:
|
|
2505
|
+
:param props_default:
|
|
2506
|
+
:param prop_filepath:
|
|
2507
|
+
:param filter_ext:
|
|
2508
|
+
:param filter_path:
|
|
2509
|
+
:param display_name:
|
|
2510
|
+
:param add_operator:
|
|
2511
|
+
:param add_operator_props:
|
|
2512
|
+
"""
|
|
2513
|
+
...
|
|
2514
|
+
|
|
2515
|
+
def path_resolve(self):
|
|
2516
|
+
""" """
|
|
2517
|
+
...
|
|
2518
|
+
|
|
2519
|
+
def pop(self):
|
|
2520
|
+
""" """
|
|
2521
|
+
...
|
|
2522
|
+
|
|
2523
|
+
def prepend(self, draw_func):
|
|
2524
|
+
"""
|
|
2525
|
+
|
|
2526
|
+
:param draw_func:
|
|
2527
|
+
"""
|
|
2528
|
+
...
|
|
2529
|
+
|
|
2530
|
+
def property_overridable_library_set(self):
|
|
2531
|
+
""" """
|
|
2532
|
+
...
|
|
2533
|
+
|
|
2534
|
+
def property_unset(self):
|
|
2535
|
+
""" """
|
|
2536
|
+
...
|
|
2537
|
+
|
|
2538
|
+
def remove(self, draw_func):
|
|
2539
|
+
"""
|
|
2540
|
+
|
|
2541
|
+
:param draw_func:
|
|
2542
|
+
"""
|
|
2543
|
+
...
|
|
2544
|
+
|
|
2545
|
+
def type_recast(self):
|
|
2546
|
+
""" """
|
|
2547
|
+
...
|
|
2548
|
+
|
|
2549
|
+
def values(self):
|
|
2550
|
+
""" """
|
|
2551
|
+
...
|
|
2552
|
+
|
|
2553
|
+
class GREASE_PENCIL_MT_snap_pie(bpy_types.Menu, bpy_types._GenericUI):
|
|
2554
|
+
""" """
|
|
2555
|
+
|
|
2556
|
+
bl_label: typing.Any
|
|
2557
|
+
""" """
|
|
2558
|
+
|
|
2559
|
+
bl_rna: typing.Any
|
|
2560
|
+
""" """
|
|
2561
|
+
|
|
2562
|
+
id_data: typing.Any
|
|
2563
|
+
""" """
|
|
2564
|
+
|
|
2565
|
+
def append(self, draw_func):
|
|
2566
|
+
"""
|
|
2567
|
+
|
|
2568
|
+
:param draw_func:
|
|
2569
|
+
"""
|
|
2570
|
+
...
|
|
2571
|
+
|
|
2572
|
+
def as_pointer(self):
|
|
2573
|
+
""" """
|
|
2574
|
+
...
|
|
2575
|
+
|
|
2576
|
+
def bl_rna_get_subclass(self):
|
|
2577
|
+
""" """
|
|
2578
|
+
...
|
|
2579
|
+
|
|
2580
|
+
def bl_rna_get_subclass_py(self):
|
|
2581
|
+
""" """
|
|
2582
|
+
...
|
|
2583
|
+
|
|
2584
|
+
def draw(self, _context):
|
|
2585
|
+
"""
|
|
2586
|
+
|
|
2587
|
+
:param _context:
|
|
2588
|
+
"""
|
|
2589
|
+
...
|
|
2590
|
+
|
|
2591
|
+
def draw_collapsible(self, context, layout):
|
|
2592
|
+
"""
|
|
2593
|
+
|
|
2594
|
+
:param context:
|
|
2595
|
+
:param layout:
|
|
2596
|
+
"""
|
|
2597
|
+
...
|
|
2598
|
+
|
|
2599
|
+
def draw_preset(self, _context):
|
|
2600
|
+
"""
|
|
2601
|
+
|
|
2602
|
+
:param _context:
|
|
2603
|
+
"""
|
|
2604
|
+
...
|
|
2605
|
+
|
|
2606
|
+
def driver_add(self):
|
|
2607
|
+
""" """
|
|
2608
|
+
...
|
|
2609
|
+
|
|
2610
|
+
def driver_remove(self):
|
|
2611
|
+
""" """
|
|
2612
|
+
...
|
|
2613
|
+
|
|
2614
|
+
def get(self):
|
|
2615
|
+
""" """
|
|
2616
|
+
...
|
|
2617
|
+
|
|
2618
|
+
def id_properties_clear(self):
|
|
2619
|
+
""" """
|
|
2620
|
+
...
|
|
2621
|
+
|
|
2622
|
+
def id_properties_ensure(self):
|
|
2623
|
+
""" """
|
|
2624
|
+
...
|
|
2625
|
+
|
|
2626
|
+
def id_properties_ui(self):
|
|
2627
|
+
""" """
|
|
2628
|
+
...
|
|
2629
|
+
|
|
2630
|
+
def is_extended(self):
|
|
2631
|
+
""" """
|
|
2632
|
+
...
|
|
2633
|
+
|
|
2634
|
+
def is_property_hidden(self):
|
|
2635
|
+
""" """
|
|
2636
|
+
...
|
|
2637
|
+
|
|
2638
|
+
def is_property_overridable_library(self):
|
|
2639
|
+
""" """
|
|
2640
|
+
...
|
|
2641
|
+
|
|
2642
|
+
def is_property_readonly(self):
|
|
2643
|
+
""" """
|
|
2644
|
+
...
|
|
2645
|
+
|
|
2646
|
+
def is_property_set(self):
|
|
2647
|
+
""" """
|
|
2648
|
+
...
|
|
2649
|
+
|
|
2650
|
+
def items(self):
|
|
2651
|
+
""" """
|
|
2652
|
+
...
|
|
2653
|
+
|
|
2654
|
+
def keyframe_delete(self):
|
|
2655
|
+
""" """
|
|
2656
|
+
...
|
|
2657
|
+
|
|
2658
|
+
def keyframe_insert(self):
|
|
2659
|
+
""" """
|
|
2660
|
+
...
|
|
2661
|
+
|
|
2662
|
+
def keys(self):
|
|
2663
|
+
""" """
|
|
2664
|
+
...
|
|
2665
|
+
|
|
2666
|
+
def path_from_id(self):
|
|
2667
|
+
""" """
|
|
2668
|
+
...
|
|
2669
|
+
|
|
2670
|
+
def path_menu(
|
|
2671
|
+
self,
|
|
2672
|
+
searchpaths,
|
|
2673
|
+
operator,
|
|
2674
|
+
props_default,
|
|
2675
|
+
prop_filepath,
|
|
2676
|
+
filter_ext,
|
|
2677
|
+
filter_path,
|
|
2678
|
+
display_name,
|
|
2679
|
+
add_operator,
|
|
2680
|
+
add_operator_props,
|
|
2681
|
+
):
|
|
2682
|
+
"""
|
|
2683
|
+
|
|
2684
|
+
:param searchpaths:
|
|
2685
|
+
:param operator:
|
|
2686
|
+
:param props_default:
|
|
2687
|
+
:param prop_filepath:
|
|
2688
|
+
:param filter_ext:
|
|
2689
|
+
:param filter_path:
|
|
2690
|
+
:param display_name:
|
|
2691
|
+
:param add_operator:
|
|
2692
|
+
:param add_operator_props:
|
|
2693
|
+
"""
|
|
2694
|
+
...
|
|
2695
|
+
|
|
2696
|
+
def path_resolve(self):
|
|
2697
|
+
""" """
|
|
2698
|
+
...
|
|
2699
|
+
|
|
2700
|
+
def pop(self):
|
|
2701
|
+
""" """
|
|
2702
|
+
...
|
|
2703
|
+
|
|
2704
|
+
def prepend(self, draw_func):
|
|
2705
|
+
"""
|
|
2706
|
+
|
|
2707
|
+
:param draw_func:
|
|
2708
|
+
"""
|
|
2709
|
+
...
|
|
2710
|
+
|
|
2711
|
+
def property_overridable_library_set(self):
|
|
2712
|
+
""" """
|
|
2713
|
+
...
|
|
2714
|
+
|
|
2715
|
+
def property_unset(self):
|
|
2716
|
+
""" """
|
|
2717
|
+
...
|
|
2718
|
+
|
|
2719
|
+
def remove(self, draw_func):
|
|
2720
|
+
"""
|
|
2721
|
+
|
|
2722
|
+
:param draw_func:
|
|
2723
|
+
"""
|
|
2724
|
+
...
|
|
2725
|
+
|
|
2726
|
+
def type_recast(self):
|
|
2727
|
+
""" """
|
|
2728
|
+
...
|
|
2729
|
+
|
|
2730
|
+
def values(self):
|
|
2731
|
+
""" """
|
|
2732
|
+
...
|
|
2733
|
+
|
|
2372
2734
|
class GreasePencilBrushFalloff:
|
|
2373
2735
|
""" """
|
|
2374
2736
|
|