fake-bpy-module 20240604__py3-none-any.whl → 20240606__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_i18n_utils/utils/__init__.pyi +7 -7
- bl_operators/image_as_planes/__init__.pyi +295 -49
- bl_operators/wm/__init__.pyi +1 -1
- bl_ui/space_node/__init__.pyi +0 -1
- bl_ui/space_view3d_toolbar/__init__.pyi +949 -3
- bmesh/ops/__init__.pyi +2 -2
- bmesh/types/__init__.pyi +3 -3
- bpy/app/handlers/__init__.pyi +36 -36
- bpy/msgbus/__init__.pyi +1 -1
- bpy/ops/image/__init__.pyi +237 -105
- bpy/ops/scene/__init__.pyi +0 -44
- bpy/ops/sculpt/__init__.pyi +8 -8
- bpy/ops/wm/__init__.pyi +11 -1
- bpy/props/__init__.pyi +20 -20
- bpy/types/__init__.pyi +680 -197
- bpy_extras/asset_utils/__init__.pyi +0 -7
- bpy_extras/io_utils/__init__.pyi +1 -1
- {fake_bpy_module-20240604.dist-info → fake_bpy_module-20240606.dist-info}/METADATA +5 -1
- {fake_bpy_module-20240604.dist-info → fake_bpy_module-20240606.dist-info}/RECORD +25 -25
- freestyle/utils/__init__.pyi +1 -1
- gpu/types/__init__.pyi +2 -2
- mathutils/__init__.pyi +3 -2
- rna_xml/__init__.pyi +1 -1
- {fake_bpy_module-20240604.dist-info → fake_bpy_module-20240606.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240604.dist-info → fake_bpy_module-20240606.dist-info}/top_level.txt +0 -0
|
@@ -9292,6 +9292,482 @@ class VIEW3D_PT_tools_grease_pencil_v3_brush_mixcolor(
|
|
|
9292
9292
|
"""
|
|
9293
9293
|
...
|
|
9294
9294
|
|
|
9295
|
+
class VIEW3D_PT_tools_grease_pencil_v3_brush_post_processing(
|
|
9296
|
+
bpy_types.Panel, View3DPanel, bpy_types._GenericUI
|
|
9297
|
+
):
|
|
9298
|
+
bl_category: typing.Any
|
|
9299
|
+
bl_context: typing.Any
|
|
9300
|
+
bl_label: typing.Any
|
|
9301
|
+
bl_options: typing.Any
|
|
9302
|
+
bl_parent_id: typing.Any
|
|
9303
|
+
bl_region_type: typing.Any
|
|
9304
|
+
bl_rna: typing.Any
|
|
9305
|
+
bl_space_type: typing.Any
|
|
9306
|
+
id_data: typing.Any
|
|
9307
|
+
|
|
9308
|
+
def append(self, draw_func):
|
|
9309
|
+
"""Append a draw function to this menu,
|
|
9310
|
+
takes the same arguments as the menus draw function
|
|
9311
|
+
|
|
9312
|
+
:param draw_func:
|
|
9313
|
+
"""
|
|
9314
|
+
...
|
|
9315
|
+
|
|
9316
|
+
def as_pointer(self) -> int:
|
|
9317
|
+
"""Returns the memory address which holds a pointer to Blender's internal data
|
|
9318
|
+
|
|
9319
|
+
:return: int (memory address).
|
|
9320
|
+
:rtype: int
|
|
9321
|
+
"""
|
|
9322
|
+
...
|
|
9323
|
+
|
|
9324
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
9325
|
+
"""
|
|
9326
|
+
|
|
9327
|
+
:return: The RNA type or default when not found.
|
|
9328
|
+
:rtype: bpy.types.Struct
|
|
9329
|
+
"""
|
|
9330
|
+
...
|
|
9331
|
+
|
|
9332
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
9333
|
+
"""
|
|
9334
|
+
|
|
9335
|
+
:return: The class or default when not found.
|
|
9336
|
+
:rtype: typing.Any
|
|
9337
|
+
"""
|
|
9338
|
+
...
|
|
9339
|
+
|
|
9340
|
+
def draw(self, context):
|
|
9341
|
+
"""
|
|
9342
|
+
|
|
9343
|
+
:param context:
|
|
9344
|
+
"""
|
|
9345
|
+
...
|
|
9346
|
+
|
|
9347
|
+
def draw_header(self, context):
|
|
9348
|
+
"""
|
|
9349
|
+
|
|
9350
|
+
:param context:
|
|
9351
|
+
"""
|
|
9352
|
+
...
|
|
9353
|
+
|
|
9354
|
+
def driver_add(self) -> bpy.types.FCurve:
|
|
9355
|
+
"""Adds driver(s) to the given property
|
|
9356
|
+
|
|
9357
|
+
:return: The driver(s) added.
|
|
9358
|
+
:rtype: bpy.types.FCurve
|
|
9359
|
+
"""
|
|
9360
|
+
...
|
|
9361
|
+
|
|
9362
|
+
def driver_remove(self) -> bool:
|
|
9363
|
+
"""Remove driver(s) from the given property
|
|
9364
|
+
|
|
9365
|
+
:return: Success of driver removal.
|
|
9366
|
+
:rtype: bool
|
|
9367
|
+
"""
|
|
9368
|
+
...
|
|
9369
|
+
|
|
9370
|
+
def get(self):
|
|
9371
|
+
"""Returns the value of the custom property assigned to key or default
|
|
9372
|
+
when not found (matches Python's dictionary function of the same name).
|
|
9373
|
+
|
|
9374
|
+
"""
|
|
9375
|
+
...
|
|
9376
|
+
|
|
9377
|
+
def id_properties_clear(self):
|
|
9378
|
+
"""
|
|
9379
|
+
|
|
9380
|
+
:return: Remove the parent group for an RNA struct's custom IDProperties.
|
|
9381
|
+
"""
|
|
9382
|
+
...
|
|
9383
|
+
|
|
9384
|
+
def id_properties_ensure(self):
|
|
9385
|
+
"""
|
|
9386
|
+
|
|
9387
|
+
:return: the parent group for an RNA struct's custom IDProperties.
|
|
9388
|
+
"""
|
|
9389
|
+
...
|
|
9390
|
+
|
|
9391
|
+
def id_properties_ui(self):
|
|
9392
|
+
"""
|
|
9393
|
+
|
|
9394
|
+
:return: Return an object used to manage an IDProperty's UI data.
|
|
9395
|
+
"""
|
|
9396
|
+
...
|
|
9397
|
+
|
|
9398
|
+
def is_extended(self): ...
|
|
9399
|
+
def is_property_hidden(self) -> bool:
|
|
9400
|
+
"""Check if a property is hidden.
|
|
9401
|
+
|
|
9402
|
+
:return: True when the property is hidden.
|
|
9403
|
+
:rtype: bool
|
|
9404
|
+
"""
|
|
9405
|
+
...
|
|
9406
|
+
|
|
9407
|
+
def is_property_overridable_library(self) -> bool:
|
|
9408
|
+
"""Check if a property is overridable.
|
|
9409
|
+
|
|
9410
|
+
:return: True when the property is overridable.
|
|
9411
|
+
:rtype: bool
|
|
9412
|
+
"""
|
|
9413
|
+
...
|
|
9414
|
+
|
|
9415
|
+
def is_property_readonly(self) -> bool:
|
|
9416
|
+
"""Check if a property is readonly.
|
|
9417
|
+
|
|
9418
|
+
:return: True when the property is readonly (not writable).
|
|
9419
|
+
:rtype: bool
|
|
9420
|
+
"""
|
|
9421
|
+
...
|
|
9422
|
+
|
|
9423
|
+
def is_property_set(self) -> bool:
|
|
9424
|
+
"""Check if a property is set, use for testing operator properties.
|
|
9425
|
+
|
|
9426
|
+
:return: True when the property has been set.
|
|
9427
|
+
:rtype: bool
|
|
9428
|
+
"""
|
|
9429
|
+
...
|
|
9430
|
+
|
|
9431
|
+
def items(self):
|
|
9432
|
+
"""Returns the items of this objects custom properties (matches Python's
|
|
9433
|
+
dictionary function of the same name).
|
|
9434
|
+
|
|
9435
|
+
:return: custom property key, value pairs.
|
|
9436
|
+
"""
|
|
9437
|
+
...
|
|
9438
|
+
|
|
9439
|
+
def keyframe_delete(self) -> bool:
|
|
9440
|
+
"""Remove a keyframe from this properties fcurve.
|
|
9441
|
+
|
|
9442
|
+
:return: Success of keyframe deletion.
|
|
9443
|
+
:rtype: bool
|
|
9444
|
+
"""
|
|
9445
|
+
...
|
|
9446
|
+
|
|
9447
|
+
def keyframe_insert(self) -> bool:
|
|
9448
|
+
"""Insert a keyframe on the property given, adding fcurves and animation data when necessary.
|
|
9449
|
+
|
|
9450
|
+
:return: Success of keyframe insertion.
|
|
9451
|
+
:rtype: bool
|
|
9452
|
+
"""
|
|
9453
|
+
...
|
|
9454
|
+
|
|
9455
|
+
def keys(self):
|
|
9456
|
+
"""Returns the keys of this objects custom properties (matches Python's
|
|
9457
|
+
dictionary function of the same name).
|
|
9458
|
+
|
|
9459
|
+
:return: custom property keys.
|
|
9460
|
+
"""
|
|
9461
|
+
...
|
|
9462
|
+
|
|
9463
|
+
def path_from_id(self) -> str:
|
|
9464
|
+
"""Returns the data path from the ID to this object (string).
|
|
9465
|
+
|
|
9466
|
+
:return: The path from `bpy.types.bpy_struct.id_data`
|
|
9467
|
+
to this struct and property (when given).
|
|
9468
|
+
:rtype: str
|
|
9469
|
+
"""
|
|
9470
|
+
...
|
|
9471
|
+
|
|
9472
|
+
def path_resolve(self):
|
|
9473
|
+
"""Returns the property from the path, raise an exception when not found."""
|
|
9474
|
+
...
|
|
9475
|
+
|
|
9476
|
+
def poll(self, context):
|
|
9477
|
+
"""
|
|
9478
|
+
|
|
9479
|
+
:param context:
|
|
9480
|
+
"""
|
|
9481
|
+
...
|
|
9482
|
+
|
|
9483
|
+
def pop(self):
|
|
9484
|
+
"""Remove and return the value of the custom property assigned to key or default
|
|
9485
|
+
when not found (matches Python's dictionary function of the same name).
|
|
9486
|
+
|
|
9487
|
+
"""
|
|
9488
|
+
...
|
|
9489
|
+
|
|
9490
|
+
def prepend(self, draw_func):
|
|
9491
|
+
"""Prepend a draw function to this menu, takes the same arguments as
|
|
9492
|
+
the menus draw function
|
|
9493
|
+
|
|
9494
|
+
:param draw_func:
|
|
9495
|
+
"""
|
|
9496
|
+
...
|
|
9497
|
+
|
|
9498
|
+
def property_overridable_library_set(self) -> bool:
|
|
9499
|
+
"""Define a property as overridable or not (only for custom properties!).
|
|
9500
|
+
|
|
9501
|
+
:return: True when the overridable status of the property was successfully set.
|
|
9502
|
+
:rtype: bool
|
|
9503
|
+
"""
|
|
9504
|
+
...
|
|
9505
|
+
|
|
9506
|
+
def property_unset(self):
|
|
9507
|
+
"""Unset a property, will use default value afterward."""
|
|
9508
|
+
...
|
|
9509
|
+
|
|
9510
|
+
def remove(self, draw_func):
|
|
9511
|
+
"""Remove a draw function that has been added to this menu
|
|
9512
|
+
|
|
9513
|
+
:param draw_func:
|
|
9514
|
+
"""
|
|
9515
|
+
...
|
|
9516
|
+
|
|
9517
|
+
def type_recast(self):
|
|
9518
|
+
"""Return a new instance, this is needed because types
|
|
9519
|
+
such as textures can be changed at runtime.
|
|
9520
|
+
|
|
9521
|
+
:return: a new instance of this object with the type initialized again.
|
|
9522
|
+
"""
|
|
9523
|
+
...
|
|
9524
|
+
|
|
9525
|
+
def values(self):
|
|
9526
|
+
"""Returns the values of this objects custom properties (matches Python's
|
|
9527
|
+
dictionary function of the same name).
|
|
9528
|
+
|
|
9529
|
+
:return: custom property values.
|
|
9530
|
+
"""
|
|
9531
|
+
...
|
|
9532
|
+
|
|
9533
|
+
class VIEW3D_PT_tools_grease_pencil_v3_brush_random(
|
|
9534
|
+
bpy_types.Panel, View3DPanel, bpy_types._GenericUI
|
|
9535
|
+
):
|
|
9536
|
+
bl_category: typing.Any
|
|
9537
|
+
bl_context: typing.Any
|
|
9538
|
+
bl_label: typing.Any
|
|
9539
|
+
bl_options: typing.Any
|
|
9540
|
+
bl_parent_id: typing.Any
|
|
9541
|
+
bl_region_type: typing.Any
|
|
9542
|
+
bl_rna: typing.Any
|
|
9543
|
+
bl_space_type: typing.Any
|
|
9544
|
+
id_data: typing.Any
|
|
9545
|
+
|
|
9546
|
+
def append(self, draw_func):
|
|
9547
|
+
"""Append a draw function to this menu,
|
|
9548
|
+
takes the same arguments as the menus draw function
|
|
9549
|
+
|
|
9550
|
+
:param draw_func:
|
|
9551
|
+
"""
|
|
9552
|
+
...
|
|
9553
|
+
|
|
9554
|
+
def as_pointer(self) -> int:
|
|
9555
|
+
"""Returns the memory address which holds a pointer to Blender's internal data
|
|
9556
|
+
|
|
9557
|
+
:return: int (memory address).
|
|
9558
|
+
:rtype: int
|
|
9559
|
+
"""
|
|
9560
|
+
...
|
|
9561
|
+
|
|
9562
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
9563
|
+
"""
|
|
9564
|
+
|
|
9565
|
+
:return: The RNA type or default when not found.
|
|
9566
|
+
:rtype: bpy.types.Struct
|
|
9567
|
+
"""
|
|
9568
|
+
...
|
|
9569
|
+
|
|
9570
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
9571
|
+
"""
|
|
9572
|
+
|
|
9573
|
+
:return: The class or default when not found.
|
|
9574
|
+
:rtype: typing.Any
|
|
9575
|
+
"""
|
|
9576
|
+
...
|
|
9577
|
+
|
|
9578
|
+
def draw(self, context):
|
|
9579
|
+
"""
|
|
9580
|
+
|
|
9581
|
+
:param context:
|
|
9582
|
+
"""
|
|
9583
|
+
...
|
|
9584
|
+
|
|
9585
|
+
def draw_header(self, context):
|
|
9586
|
+
"""
|
|
9587
|
+
|
|
9588
|
+
:param context:
|
|
9589
|
+
"""
|
|
9590
|
+
...
|
|
9591
|
+
|
|
9592
|
+
def driver_add(self) -> bpy.types.FCurve:
|
|
9593
|
+
"""Adds driver(s) to the given property
|
|
9594
|
+
|
|
9595
|
+
:return: The driver(s) added.
|
|
9596
|
+
:rtype: bpy.types.FCurve
|
|
9597
|
+
"""
|
|
9598
|
+
...
|
|
9599
|
+
|
|
9600
|
+
def driver_remove(self) -> bool:
|
|
9601
|
+
"""Remove driver(s) from the given property
|
|
9602
|
+
|
|
9603
|
+
:return: Success of driver removal.
|
|
9604
|
+
:rtype: bool
|
|
9605
|
+
"""
|
|
9606
|
+
...
|
|
9607
|
+
|
|
9608
|
+
def get(self):
|
|
9609
|
+
"""Returns the value of the custom property assigned to key or default
|
|
9610
|
+
when not found (matches Python's dictionary function of the same name).
|
|
9611
|
+
|
|
9612
|
+
"""
|
|
9613
|
+
...
|
|
9614
|
+
|
|
9615
|
+
def id_properties_clear(self):
|
|
9616
|
+
"""
|
|
9617
|
+
|
|
9618
|
+
:return: Remove the parent group for an RNA struct's custom IDProperties.
|
|
9619
|
+
"""
|
|
9620
|
+
...
|
|
9621
|
+
|
|
9622
|
+
def id_properties_ensure(self):
|
|
9623
|
+
"""
|
|
9624
|
+
|
|
9625
|
+
:return: the parent group for an RNA struct's custom IDProperties.
|
|
9626
|
+
"""
|
|
9627
|
+
...
|
|
9628
|
+
|
|
9629
|
+
def id_properties_ui(self):
|
|
9630
|
+
"""
|
|
9631
|
+
|
|
9632
|
+
:return: Return an object used to manage an IDProperty's UI data.
|
|
9633
|
+
"""
|
|
9634
|
+
...
|
|
9635
|
+
|
|
9636
|
+
def is_extended(self): ...
|
|
9637
|
+
def is_property_hidden(self) -> bool:
|
|
9638
|
+
"""Check if a property is hidden.
|
|
9639
|
+
|
|
9640
|
+
:return: True when the property is hidden.
|
|
9641
|
+
:rtype: bool
|
|
9642
|
+
"""
|
|
9643
|
+
...
|
|
9644
|
+
|
|
9645
|
+
def is_property_overridable_library(self) -> bool:
|
|
9646
|
+
"""Check if a property is overridable.
|
|
9647
|
+
|
|
9648
|
+
:return: True when the property is overridable.
|
|
9649
|
+
:rtype: bool
|
|
9650
|
+
"""
|
|
9651
|
+
...
|
|
9652
|
+
|
|
9653
|
+
def is_property_readonly(self) -> bool:
|
|
9654
|
+
"""Check if a property is readonly.
|
|
9655
|
+
|
|
9656
|
+
:return: True when the property is readonly (not writable).
|
|
9657
|
+
:rtype: bool
|
|
9658
|
+
"""
|
|
9659
|
+
...
|
|
9660
|
+
|
|
9661
|
+
def is_property_set(self) -> bool:
|
|
9662
|
+
"""Check if a property is set, use for testing operator properties.
|
|
9663
|
+
|
|
9664
|
+
:return: True when the property has been set.
|
|
9665
|
+
:rtype: bool
|
|
9666
|
+
"""
|
|
9667
|
+
...
|
|
9668
|
+
|
|
9669
|
+
def items(self):
|
|
9670
|
+
"""Returns the items of this objects custom properties (matches Python's
|
|
9671
|
+
dictionary function of the same name).
|
|
9672
|
+
|
|
9673
|
+
:return: custom property key, value pairs.
|
|
9674
|
+
"""
|
|
9675
|
+
...
|
|
9676
|
+
|
|
9677
|
+
def keyframe_delete(self) -> bool:
|
|
9678
|
+
"""Remove a keyframe from this properties fcurve.
|
|
9679
|
+
|
|
9680
|
+
:return: Success of keyframe deletion.
|
|
9681
|
+
:rtype: bool
|
|
9682
|
+
"""
|
|
9683
|
+
...
|
|
9684
|
+
|
|
9685
|
+
def keyframe_insert(self) -> bool:
|
|
9686
|
+
"""Insert a keyframe on the property given, adding fcurves and animation data when necessary.
|
|
9687
|
+
|
|
9688
|
+
:return: Success of keyframe insertion.
|
|
9689
|
+
:rtype: bool
|
|
9690
|
+
"""
|
|
9691
|
+
...
|
|
9692
|
+
|
|
9693
|
+
def keys(self):
|
|
9694
|
+
"""Returns the keys of this objects custom properties (matches Python's
|
|
9695
|
+
dictionary function of the same name).
|
|
9696
|
+
|
|
9697
|
+
:return: custom property keys.
|
|
9698
|
+
"""
|
|
9699
|
+
...
|
|
9700
|
+
|
|
9701
|
+
def path_from_id(self) -> str:
|
|
9702
|
+
"""Returns the data path from the ID to this object (string).
|
|
9703
|
+
|
|
9704
|
+
:return: The path from `bpy.types.bpy_struct.id_data`
|
|
9705
|
+
to this struct and property (when given).
|
|
9706
|
+
:rtype: str
|
|
9707
|
+
"""
|
|
9708
|
+
...
|
|
9709
|
+
|
|
9710
|
+
def path_resolve(self):
|
|
9711
|
+
"""Returns the property from the path, raise an exception when not found."""
|
|
9712
|
+
...
|
|
9713
|
+
|
|
9714
|
+
def poll(self, context):
|
|
9715
|
+
"""
|
|
9716
|
+
|
|
9717
|
+
:param context:
|
|
9718
|
+
"""
|
|
9719
|
+
...
|
|
9720
|
+
|
|
9721
|
+
def pop(self):
|
|
9722
|
+
"""Remove and return the value of the custom property assigned to key or default
|
|
9723
|
+
when not found (matches Python's dictionary function of the same name).
|
|
9724
|
+
|
|
9725
|
+
"""
|
|
9726
|
+
...
|
|
9727
|
+
|
|
9728
|
+
def prepend(self, draw_func):
|
|
9729
|
+
"""Prepend a draw function to this menu, takes the same arguments as
|
|
9730
|
+
the menus draw function
|
|
9731
|
+
|
|
9732
|
+
:param draw_func:
|
|
9733
|
+
"""
|
|
9734
|
+
...
|
|
9735
|
+
|
|
9736
|
+
def property_overridable_library_set(self) -> bool:
|
|
9737
|
+
"""Define a property as overridable or not (only for custom properties!).
|
|
9738
|
+
|
|
9739
|
+
:return: True when the overridable status of the property was successfully set.
|
|
9740
|
+
:rtype: bool
|
|
9741
|
+
"""
|
|
9742
|
+
...
|
|
9743
|
+
|
|
9744
|
+
def property_unset(self):
|
|
9745
|
+
"""Unset a property, will use default value afterward."""
|
|
9746
|
+
...
|
|
9747
|
+
|
|
9748
|
+
def remove(self, draw_func):
|
|
9749
|
+
"""Remove a draw function that has been added to this menu
|
|
9750
|
+
|
|
9751
|
+
:param draw_func:
|
|
9752
|
+
"""
|
|
9753
|
+
...
|
|
9754
|
+
|
|
9755
|
+
def type_recast(self):
|
|
9756
|
+
"""Return a new instance, this is needed because types
|
|
9757
|
+
such as textures can be changed at runtime.
|
|
9758
|
+
|
|
9759
|
+
:return: a new instance of this object with the type initialized again.
|
|
9760
|
+
"""
|
|
9761
|
+
...
|
|
9762
|
+
|
|
9763
|
+
def values(self):
|
|
9764
|
+
"""Returns the values of this objects custom properties (matches Python's
|
|
9765
|
+
dictionary function of the same name).
|
|
9766
|
+
|
|
9767
|
+
:return: custom property values.
|
|
9768
|
+
"""
|
|
9769
|
+
...
|
|
9770
|
+
|
|
9295
9771
|
class VIEW3D_PT_tools_grease_pencil_v3_brush_select(
|
|
9296
9772
|
View3DPanel, bpy_types.Panel, bpy_types._GenericUI, GreasePencilV3PaintPanel
|
|
9297
9773
|
):
|
|
@@ -9521,13 +9997,251 @@ class VIEW3D_PT_tools_grease_pencil_v3_brush_select(
|
|
|
9521
9997
|
"""
|
|
9522
9998
|
...
|
|
9523
9999
|
|
|
9524
|
-
class VIEW3D_PT_tools_grease_pencil_v3_brush_settings(
|
|
9525
|
-
View3DPanel, bpy_types.Panel, bpy_types._GenericUI, GreasePencilV3PaintPanel
|
|
10000
|
+
class VIEW3D_PT_tools_grease_pencil_v3_brush_settings(
|
|
10001
|
+
View3DPanel, bpy_types.Panel, bpy_types._GenericUI, GreasePencilV3PaintPanel
|
|
10002
|
+
):
|
|
10003
|
+
bl_category: typing.Any
|
|
10004
|
+
bl_context: typing.Any
|
|
10005
|
+
bl_label: typing.Any
|
|
10006
|
+
bl_options: typing.Any
|
|
10007
|
+
bl_region_type: typing.Any
|
|
10008
|
+
bl_rna: typing.Any
|
|
10009
|
+
bl_space_type: typing.Any
|
|
10010
|
+
id_data: typing.Any
|
|
10011
|
+
|
|
10012
|
+
def append(self, draw_func):
|
|
10013
|
+
"""Append a draw function to this menu,
|
|
10014
|
+
takes the same arguments as the menus draw function
|
|
10015
|
+
|
|
10016
|
+
:param draw_func:
|
|
10017
|
+
"""
|
|
10018
|
+
...
|
|
10019
|
+
|
|
10020
|
+
def as_pointer(self) -> int:
|
|
10021
|
+
"""Returns the memory address which holds a pointer to Blender's internal data
|
|
10022
|
+
|
|
10023
|
+
:return: int (memory address).
|
|
10024
|
+
:rtype: int
|
|
10025
|
+
"""
|
|
10026
|
+
...
|
|
10027
|
+
|
|
10028
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
10029
|
+
"""
|
|
10030
|
+
|
|
10031
|
+
:return: The RNA type or default when not found.
|
|
10032
|
+
:rtype: bpy.types.Struct
|
|
10033
|
+
"""
|
|
10034
|
+
...
|
|
10035
|
+
|
|
10036
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
10037
|
+
"""
|
|
10038
|
+
|
|
10039
|
+
:return: The class or default when not found.
|
|
10040
|
+
:rtype: typing.Any
|
|
10041
|
+
"""
|
|
10042
|
+
...
|
|
10043
|
+
|
|
10044
|
+
def draw(self, context):
|
|
10045
|
+
"""
|
|
10046
|
+
|
|
10047
|
+
:param context:
|
|
10048
|
+
"""
|
|
10049
|
+
...
|
|
10050
|
+
|
|
10051
|
+
def draw_header_preset(self, _context):
|
|
10052
|
+
"""
|
|
10053
|
+
|
|
10054
|
+
:param _context:
|
|
10055
|
+
"""
|
|
10056
|
+
...
|
|
10057
|
+
|
|
10058
|
+
def driver_add(self) -> bpy.types.FCurve:
|
|
10059
|
+
"""Adds driver(s) to the given property
|
|
10060
|
+
|
|
10061
|
+
:return: The driver(s) added.
|
|
10062
|
+
:rtype: bpy.types.FCurve
|
|
10063
|
+
"""
|
|
10064
|
+
...
|
|
10065
|
+
|
|
10066
|
+
def driver_remove(self) -> bool:
|
|
10067
|
+
"""Remove driver(s) from the given property
|
|
10068
|
+
|
|
10069
|
+
:return: Success of driver removal.
|
|
10070
|
+
:rtype: bool
|
|
10071
|
+
"""
|
|
10072
|
+
...
|
|
10073
|
+
|
|
10074
|
+
def get(self):
|
|
10075
|
+
"""Returns the value of the custom property assigned to key or default
|
|
10076
|
+
when not found (matches Python's dictionary function of the same name).
|
|
10077
|
+
|
|
10078
|
+
"""
|
|
10079
|
+
...
|
|
10080
|
+
|
|
10081
|
+
def id_properties_clear(self):
|
|
10082
|
+
"""
|
|
10083
|
+
|
|
10084
|
+
:return: Remove the parent group for an RNA struct's custom IDProperties.
|
|
10085
|
+
"""
|
|
10086
|
+
...
|
|
10087
|
+
|
|
10088
|
+
def id_properties_ensure(self):
|
|
10089
|
+
"""
|
|
10090
|
+
|
|
10091
|
+
:return: the parent group for an RNA struct's custom IDProperties.
|
|
10092
|
+
"""
|
|
10093
|
+
...
|
|
10094
|
+
|
|
10095
|
+
def id_properties_ui(self):
|
|
10096
|
+
"""
|
|
10097
|
+
|
|
10098
|
+
:return: Return an object used to manage an IDProperty's UI data.
|
|
10099
|
+
"""
|
|
10100
|
+
...
|
|
10101
|
+
|
|
10102
|
+
def is_extended(self): ...
|
|
10103
|
+
def is_property_hidden(self) -> bool:
|
|
10104
|
+
"""Check if a property is hidden.
|
|
10105
|
+
|
|
10106
|
+
:return: True when the property is hidden.
|
|
10107
|
+
:rtype: bool
|
|
10108
|
+
"""
|
|
10109
|
+
...
|
|
10110
|
+
|
|
10111
|
+
def is_property_overridable_library(self) -> bool:
|
|
10112
|
+
"""Check if a property is overridable.
|
|
10113
|
+
|
|
10114
|
+
:return: True when the property is overridable.
|
|
10115
|
+
:rtype: bool
|
|
10116
|
+
"""
|
|
10117
|
+
...
|
|
10118
|
+
|
|
10119
|
+
def is_property_readonly(self) -> bool:
|
|
10120
|
+
"""Check if a property is readonly.
|
|
10121
|
+
|
|
10122
|
+
:return: True when the property is readonly (not writable).
|
|
10123
|
+
:rtype: bool
|
|
10124
|
+
"""
|
|
10125
|
+
...
|
|
10126
|
+
|
|
10127
|
+
def is_property_set(self) -> bool:
|
|
10128
|
+
"""Check if a property is set, use for testing operator properties.
|
|
10129
|
+
|
|
10130
|
+
:return: True when the property has been set.
|
|
10131
|
+
:rtype: bool
|
|
10132
|
+
"""
|
|
10133
|
+
...
|
|
10134
|
+
|
|
10135
|
+
def items(self):
|
|
10136
|
+
"""Returns the items of this objects custom properties (matches Python's
|
|
10137
|
+
dictionary function of the same name).
|
|
10138
|
+
|
|
10139
|
+
:return: custom property key, value pairs.
|
|
10140
|
+
"""
|
|
10141
|
+
...
|
|
10142
|
+
|
|
10143
|
+
def keyframe_delete(self) -> bool:
|
|
10144
|
+
"""Remove a keyframe from this properties fcurve.
|
|
10145
|
+
|
|
10146
|
+
:return: Success of keyframe deletion.
|
|
10147
|
+
:rtype: bool
|
|
10148
|
+
"""
|
|
10149
|
+
...
|
|
10150
|
+
|
|
10151
|
+
def keyframe_insert(self) -> bool:
|
|
10152
|
+
"""Insert a keyframe on the property given, adding fcurves and animation data when necessary.
|
|
10153
|
+
|
|
10154
|
+
:return: Success of keyframe insertion.
|
|
10155
|
+
:rtype: bool
|
|
10156
|
+
"""
|
|
10157
|
+
...
|
|
10158
|
+
|
|
10159
|
+
def keys(self):
|
|
10160
|
+
"""Returns the keys of this objects custom properties (matches Python's
|
|
10161
|
+
dictionary function of the same name).
|
|
10162
|
+
|
|
10163
|
+
:return: custom property keys.
|
|
10164
|
+
"""
|
|
10165
|
+
...
|
|
10166
|
+
|
|
10167
|
+
def path_from_id(self) -> str:
|
|
10168
|
+
"""Returns the data path from the ID to this object (string).
|
|
10169
|
+
|
|
10170
|
+
:return: The path from `bpy.types.bpy_struct.id_data`
|
|
10171
|
+
to this struct and property (when given).
|
|
10172
|
+
:rtype: str
|
|
10173
|
+
"""
|
|
10174
|
+
...
|
|
10175
|
+
|
|
10176
|
+
def path_resolve(self):
|
|
10177
|
+
"""Returns the property from the path, raise an exception when not found."""
|
|
10178
|
+
...
|
|
10179
|
+
|
|
10180
|
+
def poll(self, context):
|
|
10181
|
+
"""
|
|
10182
|
+
|
|
10183
|
+
:param context:
|
|
10184
|
+
"""
|
|
10185
|
+
...
|
|
10186
|
+
|
|
10187
|
+
def pop(self):
|
|
10188
|
+
"""Remove and return the value of the custom property assigned to key or default
|
|
10189
|
+
when not found (matches Python's dictionary function of the same name).
|
|
10190
|
+
|
|
10191
|
+
"""
|
|
10192
|
+
...
|
|
10193
|
+
|
|
10194
|
+
def prepend(self, draw_func):
|
|
10195
|
+
"""Prepend a draw function to this menu, takes the same arguments as
|
|
10196
|
+
the menus draw function
|
|
10197
|
+
|
|
10198
|
+
:param draw_func:
|
|
10199
|
+
"""
|
|
10200
|
+
...
|
|
10201
|
+
|
|
10202
|
+
def property_overridable_library_set(self) -> bool:
|
|
10203
|
+
"""Define a property as overridable or not (only for custom properties!).
|
|
10204
|
+
|
|
10205
|
+
:return: True when the overridable status of the property was successfully set.
|
|
10206
|
+
:rtype: bool
|
|
10207
|
+
"""
|
|
10208
|
+
...
|
|
10209
|
+
|
|
10210
|
+
def property_unset(self):
|
|
10211
|
+
"""Unset a property, will use default value afterward."""
|
|
10212
|
+
...
|
|
10213
|
+
|
|
10214
|
+
def remove(self, draw_func):
|
|
10215
|
+
"""Remove a draw function that has been added to this menu
|
|
10216
|
+
|
|
10217
|
+
:param draw_func:
|
|
10218
|
+
"""
|
|
10219
|
+
...
|
|
10220
|
+
|
|
10221
|
+
def type_recast(self):
|
|
10222
|
+
"""Return a new instance, this is needed because types
|
|
10223
|
+
such as textures can be changed at runtime.
|
|
10224
|
+
|
|
10225
|
+
:return: a new instance of this object with the type initialized again.
|
|
10226
|
+
"""
|
|
10227
|
+
...
|
|
10228
|
+
|
|
10229
|
+
def values(self):
|
|
10230
|
+
"""Returns the values of this objects custom properties (matches Python's
|
|
10231
|
+
dictionary function of the same name).
|
|
10232
|
+
|
|
10233
|
+
:return: custom property values.
|
|
10234
|
+
"""
|
|
10235
|
+
...
|
|
10236
|
+
|
|
10237
|
+
class VIEW3D_PT_tools_grease_pencil_v3_brush_stabilizer(
|
|
10238
|
+
bpy_types._GenericUI, bpy_types.Panel, View3DPanel
|
|
9526
10239
|
):
|
|
9527
10240
|
bl_category: typing.Any
|
|
9528
10241
|
bl_context: typing.Any
|
|
9529
10242
|
bl_label: typing.Any
|
|
9530
10243
|
bl_options: typing.Any
|
|
10244
|
+
bl_parent_id: typing.Any
|
|
9531
10245
|
bl_region_type: typing.Any
|
|
9532
10246
|
bl_rna: typing.Any
|
|
9533
10247
|
bl_space_type: typing.Any
|
|
@@ -9572,7 +10286,239 @@ class VIEW3D_PT_tools_grease_pencil_v3_brush_settings(
|
|
|
9572
10286
|
"""
|
|
9573
10287
|
...
|
|
9574
10288
|
|
|
9575
|
-
def
|
|
10289
|
+
def draw_header(self, context):
|
|
10290
|
+
"""
|
|
10291
|
+
|
|
10292
|
+
:param context:
|
|
10293
|
+
"""
|
|
10294
|
+
...
|
|
10295
|
+
|
|
10296
|
+
def driver_add(self) -> bpy.types.FCurve:
|
|
10297
|
+
"""Adds driver(s) to the given property
|
|
10298
|
+
|
|
10299
|
+
:return: The driver(s) added.
|
|
10300
|
+
:rtype: bpy.types.FCurve
|
|
10301
|
+
"""
|
|
10302
|
+
...
|
|
10303
|
+
|
|
10304
|
+
def driver_remove(self) -> bool:
|
|
10305
|
+
"""Remove driver(s) from the given property
|
|
10306
|
+
|
|
10307
|
+
:return: Success of driver removal.
|
|
10308
|
+
:rtype: bool
|
|
10309
|
+
"""
|
|
10310
|
+
...
|
|
10311
|
+
|
|
10312
|
+
def get(self):
|
|
10313
|
+
"""Returns the value of the custom property assigned to key or default
|
|
10314
|
+
when not found (matches Python's dictionary function of the same name).
|
|
10315
|
+
|
|
10316
|
+
"""
|
|
10317
|
+
...
|
|
10318
|
+
|
|
10319
|
+
def id_properties_clear(self):
|
|
10320
|
+
"""
|
|
10321
|
+
|
|
10322
|
+
:return: Remove the parent group for an RNA struct's custom IDProperties.
|
|
10323
|
+
"""
|
|
10324
|
+
...
|
|
10325
|
+
|
|
10326
|
+
def id_properties_ensure(self):
|
|
10327
|
+
"""
|
|
10328
|
+
|
|
10329
|
+
:return: the parent group for an RNA struct's custom IDProperties.
|
|
10330
|
+
"""
|
|
10331
|
+
...
|
|
10332
|
+
|
|
10333
|
+
def id_properties_ui(self):
|
|
10334
|
+
"""
|
|
10335
|
+
|
|
10336
|
+
:return: Return an object used to manage an IDProperty's UI data.
|
|
10337
|
+
"""
|
|
10338
|
+
...
|
|
10339
|
+
|
|
10340
|
+
def is_extended(self): ...
|
|
10341
|
+
def is_property_hidden(self) -> bool:
|
|
10342
|
+
"""Check if a property is hidden.
|
|
10343
|
+
|
|
10344
|
+
:return: True when the property is hidden.
|
|
10345
|
+
:rtype: bool
|
|
10346
|
+
"""
|
|
10347
|
+
...
|
|
10348
|
+
|
|
10349
|
+
def is_property_overridable_library(self) -> bool:
|
|
10350
|
+
"""Check if a property is overridable.
|
|
10351
|
+
|
|
10352
|
+
:return: True when the property is overridable.
|
|
10353
|
+
:rtype: bool
|
|
10354
|
+
"""
|
|
10355
|
+
...
|
|
10356
|
+
|
|
10357
|
+
def is_property_readonly(self) -> bool:
|
|
10358
|
+
"""Check if a property is readonly.
|
|
10359
|
+
|
|
10360
|
+
:return: True when the property is readonly (not writable).
|
|
10361
|
+
:rtype: bool
|
|
10362
|
+
"""
|
|
10363
|
+
...
|
|
10364
|
+
|
|
10365
|
+
def is_property_set(self) -> bool:
|
|
10366
|
+
"""Check if a property is set, use for testing operator properties.
|
|
10367
|
+
|
|
10368
|
+
:return: True when the property has been set.
|
|
10369
|
+
:rtype: bool
|
|
10370
|
+
"""
|
|
10371
|
+
...
|
|
10372
|
+
|
|
10373
|
+
def items(self):
|
|
10374
|
+
"""Returns the items of this objects custom properties (matches Python's
|
|
10375
|
+
dictionary function of the same name).
|
|
10376
|
+
|
|
10377
|
+
:return: custom property key, value pairs.
|
|
10378
|
+
"""
|
|
10379
|
+
...
|
|
10380
|
+
|
|
10381
|
+
def keyframe_delete(self) -> bool:
|
|
10382
|
+
"""Remove a keyframe from this properties fcurve.
|
|
10383
|
+
|
|
10384
|
+
:return: Success of keyframe deletion.
|
|
10385
|
+
:rtype: bool
|
|
10386
|
+
"""
|
|
10387
|
+
...
|
|
10388
|
+
|
|
10389
|
+
def keyframe_insert(self) -> bool:
|
|
10390
|
+
"""Insert a keyframe on the property given, adding fcurves and animation data when necessary.
|
|
10391
|
+
|
|
10392
|
+
:return: Success of keyframe insertion.
|
|
10393
|
+
:rtype: bool
|
|
10394
|
+
"""
|
|
10395
|
+
...
|
|
10396
|
+
|
|
10397
|
+
def keys(self):
|
|
10398
|
+
"""Returns the keys of this objects custom properties (matches Python's
|
|
10399
|
+
dictionary function of the same name).
|
|
10400
|
+
|
|
10401
|
+
:return: custom property keys.
|
|
10402
|
+
"""
|
|
10403
|
+
...
|
|
10404
|
+
|
|
10405
|
+
def path_from_id(self) -> str:
|
|
10406
|
+
"""Returns the data path from the ID to this object (string).
|
|
10407
|
+
|
|
10408
|
+
:return: The path from `bpy.types.bpy_struct.id_data`
|
|
10409
|
+
to this struct and property (when given).
|
|
10410
|
+
:rtype: str
|
|
10411
|
+
"""
|
|
10412
|
+
...
|
|
10413
|
+
|
|
10414
|
+
def path_resolve(self):
|
|
10415
|
+
"""Returns the property from the path, raise an exception when not found."""
|
|
10416
|
+
...
|
|
10417
|
+
|
|
10418
|
+
def poll(self, context):
|
|
10419
|
+
"""
|
|
10420
|
+
|
|
10421
|
+
:param context:
|
|
10422
|
+
"""
|
|
10423
|
+
...
|
|
10424
|
+
|
|
10425
|
+
def pop(self):
|
|
10426
|
+
"""Remove and return the value of the custom property assigned to key or default
|
|
10427
|
+
when not found (matches Python's dictionary function of the same name).
|
|
10428
|
+
|
|
10429
|
+
"""
|
|
10430
|
+
...
|
|
10431
|
+
|
|
10432
|
+
def prepend(self, draw_func):
|
|
10433
|
+
"""Prepend a draw function to this menu, takes the same arguments as
|
|
10434
|
+
the menus draw function
|
|
10435
|
+
|
|
10436
|
+
:param draw_func:
|
|
10437
|
+
"""
|
|
10438
|
+
...
|
|
10439
|
+
|
|
10440
|
+
def property_overridable_library_set(self) -> bool:
|
|
10441
|
+
"""Define a property as overridable or not (only for custom properties!).
|
|
10442
|
+
|
|
10443
|
+
:return: True when the overridable status of the property was successfully set.
|
|
10444
|
+
:rtype: bool
|
|
10445
|
+
"""
|
|
10446
|
+
...
|
|
10447
|
+
|
|
10448
|
+
def property_unset(self):
|
|
10449
|
+
"""Unset a property, will use default value afterward."""
|
|
10450
|
+
...
|
|
10451
|
+
|
|
10452
|
+
def remove(self, draw_func):
|
|
10453
|
+
"""Remove a draw function that has been added to this menu
|
|
10454
|
+
|
|
10455
|
+
:param draw_func:
|
|
10456
|
+
"""
|
|
10457
|
+
...
|
|
10458
|
+
|
|
10459
|
+
def type_recast(self):
|
|
10460
|
+
"""Return a new instance, this is needed because types
|
|
10461
|
+
such as textures can be changed at runtime.
|
|
10462
|
+
|
|
10463
|
+
:return: a new instance of this object with the type initialized again.
|
|
10464
|
+
"""
|
|
10465
|
+
...
|
|
10466
|
+
|
|
10467
|
+
def values(self):
|
|
10468
|
+
"""Returns the values of this objects custom properties (matches Python's
|
|
10469
|
+
dictionary function of the same name).
|
|
10470
|
+
|
|
10471
|
+
:return: custom property values.
|
|
10472
|
+
"""
|
|
10473
|
+
...
|
|
10474
|
+
|
|
10475
|
+
class VIEW3D_PT_tools_grease_pencil_v3_brush_stroke(
|
|
10476
|
+
bpy_types._GenericUI, bpy_types.Panel, View3DPanel
|
|
10477
|
+
):
|
|
10478
|
+
bl_category: typing.Any
|
|
10479
|
+
bl_context: typing.Any
|
|
10480
|
+
bl_label: typing.Any
|
|
10481
|
+
bl_options: typing.Any
|
|
10482
|
+
bl_parent_id: typing.Any
|
|
10483
|
+
bl_region_type: typing.Any
|
|
10484
|
+
bl_rna: typing.Any
|
|
10485
|
+
bl_space_type: typing.Any
|
|
10486
|
+
bl_ui_units_x: typing.Any
|
|
10487
|
+
id_data: typing.Any
|
|
10488
|
+
|
|
10489
|
+
def append(self, draw_func):
|
|
10490
|
+
"""Append a draw function to this menu,
|
|
10491
|
+
takes the same arguments as the menus draw function
|
|
10492
|
+
|
|
10493
|
+
:param draw_func:
|
|
10494
|
+
"""
|
|
10495
|
+
...
|
|
10496
|
+
|
|
10497
|
+
def as_pointer(self) -> int:
|
|
10498
|
+
"""Returns the memory address which holds a pointer to Blender's internal data
|
|
10499
|
+
|
|
10500
|
+
:return: int (memory address).
|
|
10501
|
+
:rtype: int
|
|
10502
|
+
"""
|
|
10503
|
+
...
|
|
10504
|
+
|
|
10505
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
10506
|
+
"""
|
|
10507
|
+
|
|
10508
|
+
:return: The RNA type or default when not found.
|
|
10509
|
+
:rtype: bpy.types.Struct
|
|
10510
|
+
"""
|
|
10511
|
+
...
|
|
10512
|
+
|
|
10513
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
10514
|
+
"""
|
|
10515
|
+
|
|
10516
|
+
:return: The class or default when not found.
|
|
10517
|
+
:rtype: typing.Any
|
|
10518
|
+
"""
|
|
10519
|
+
...
|
|
10520
|
+
|
|
10521
|
+
def draw(self, _context):
|
|
9576
10522
|
"""
|
|
9577
10523
|
|
|
9578
10524
|
:param _context:
|