fake-bpy-module 20240411__py3-none-any.whl → 20240417__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of fake-bpy-module might be problematic. Click here for more details.
- bl_operators/presets/__init__.pyi +7 -0
- bl_ui/node_add_menu/__init__.pyi +1 -1
- bl_ui/properties_data_lightprobe/__init__.pyi +1134 -0
- bl_ui/properties_physics_dynamicpaint/__init__.pyi +3 -0
- bl_ui/properties_physics_fluid/__init__.pyi +3 -0
- bl_ui/space_toolsystem_toolbar/__init__.pyi +17 -0
- bl_ui/space_userpref/__init__.pyi +13 -4
- bl_ui/space_view3d/__init__.pyi +190 -0
- bpy/app/translations/__init__.pyi +1 -1
- bpy/ops/curves/__init__.pyi +82 -0
- bpy/ops/export_scene/__init__.pyi +6 -3
- bpy/ops/grease_pencil/__init__.pyi +29 -0
- bpy/ops/mesh/__init__.pyi +1 -1
- bpy/ops/nla/__init__.pyi +3 -3
- bpy/ops/node/__init__.pyi +1 -1
- bpy/ops/object/__init__.pyi +8 -8
- bpy/ops/outliner/__init__.pyi +1 -1
- bpy/ops/preferences/__init__.pyi +1 -1
- bpy/ops/sculpt/__init__.pyi +8 -2
- bpy/ops/wm/__init__.pyi +1 -1
- bpy/types/__init__.pyi +146 -67
- {fake_bpy_module-20240411.dist-info → fake_bpy_module-20240417.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240411.dist-info → fake_bpy_module-20240417.dist-info}/RECORD +25 -25
- {fake_bpy_module-20240411.dist-info → fake_bpy_module-20240417.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240411.dist-info → fake_bpy_module-20240417.dist-info}/top_level.txt +0 -0
bpy/types/__init__.pyi
CHANGED
|
@@ -422,8 +422,14 @@ class bpy_struct(typing.Generic[GenericType]):
|
|
|
422
422
|
...
|
|
423
423
|
|
|
424
424
|
def keyframe_insert(
|
|
425
|
-
self,
|
|
426
|
-
|
|
425
|
+
self,
|
|
426
|
+
data_path: str,
|
|
427
|
+
index=-1,
|
|
428
|
+
frame=None,
|
|
429
|
+
group: str = "",
|
|
430
|
+
options=None(),
|
|
431
|
+
keytype: str = "KEYFRAME",
|
|
432
|
+
) -> str:
|
|
427
433
|
"""Insert a keyframe on the property given, adding fcurves and animation data when necessary.This is the most simple example of inserting a keyframe from python.Note that when keying data paths which contain nested properties this must be
|
|
428
434
|
done from the `ID` subclass, in this case the `Armature` rather
|
|
429
435
|
than the bone.
|
|
@@ -448,6 +454,8 @@ class bpy_struct(typing.Generic[GenericType]):
|
|
|
448
454
|
INSERTKEY_AVAILABLE Only insert into already existing F-Curves.
|
|
449
455
|
|
|
450
456
|
INSERTKEY_CYCLE_AWARE Take cyclic extrapolation into account (Cycle-Aware Keying option).
|
|
457
|
+
:param keytype: Type of the key: 'KEYFRAME', 'BREAKDOWN', 'MOVING_HOLD', 'EXTREME', 'JITTER', or 'GENERATED'
|
|
458
|
+
:type keytype: str
|
|
451
459
|
:return: Success of keyframe insertion.
|
|
452
460
|
:rtype: bool
|
|
453
461
|
"""
|
|
@@ -2382,7 +2390,7 @@ Warning: Assigning to it or its members multiple consecutive times will not work
|
|
|
2382
2390
|
"""
|
|
2383
2391
|
|
|
2384
2392
|
lineart: typing.Union[ObjectLineArt, typing.Any]
|
|
2385
|
-
""" Line
|
|
2393
|
+
""" Line Art settings for the object
|
|
2386
2394
|
|
|
2387
2395
|
:type: typing.Union[ObjectLineArt, typing.Any]
|
|
2388
2396
|
"""
|
|
@@ -5695,25 +5703,25 @@ class AnimVizMotionPaths(bpy_struct):
|
|
|
5695
5703
|
"""
|
|
5696
5704
|
|
|
5697
5705
|
frame_after: int
|
|
5698
|
-
""" Number of frames to show after the current frame (only for 'Around
|
|
5706
|
+
""" Number of frames to show after the current frame (only for 'Around Frame' Onion-skinning method)
|
|
5699
5707
|
|
|
5700
5708
|
:type: int
|
|
5701
5709
|
"""
|
|
5702
5710
|
|
|
5703
5711
|
frame_before: int
|
|
5704
|
-
""" Number of frames to show before the current frame (only for 'Around
|
|
5712
|
+
""" Number of frames to show before the current frame (only for 'Around Frame' Onion-skinning method)
|
|
5705
5713
|
|
|
5706
5714
|
:type: int
|
|
5707
5715
|
"""
|
|
5708
5716
|
|
|
5709
5717
|
frame_end: int
|
|
5710
|
-
""" End frame of range of paths to display/calculate (not for 'Around
|
|
5718
|
+
""" End frame of range of paths to display/calculate (not for 'Around Frame' Onion-skinning method)
|
|
5711
5719
|
|
|
5712
5720
|
:type: int
|
|
5713
5721
|
"""
|
|
5714
5722
|
|
|
5715
5723
|
frame_start: int
|
|
5716
|
-
""" Starting frame of range of paths to display/calculate (not for 'Around
|
|
5724
|
+
""" Starting frame of range of paths to display/calculate (not for 'Around Frame' Onion-skinning method)
|
|
5717
5725
|
|
|
5718
5726
|
:type: int
|
|
5719
5727
|
"""
|
|
@@ -7043,13 +7051,13 @@ class ArrayGpencilModifier(bpy_struct):
|
|
|
7043
7051
|
"""
|
|
7044
7052
|
|
|
7045
7053
|
use_object_offset: bool
|
|
7046
|
-
"""
|
|
7054
|
+
""" Add another object's transformation to the total offset
|
|
7047
7055
|
|
|
7048
7056
|
:type: bool
|
|
7049
7057
|
"""
|
|
7050
7058
|
|
|
7051
7059
|
use_relative_offset: bool
|
|
7052
|
-
"""
|
|
7060
|
+
""" Add an offset relative to the object's bounding box
|
|
7053
7061
|
|
|
7054
7062
|
:type: bool
|
|
7055
7063
|
"""
|
|
@@ -13321,7 +13329,7 @@ class Brush(bpy_struct):
|
|
|
13321
13329
|
"""
|
|
13322
13330
|
|
|
13323
13331
|
height: float
|
|
13324
|
-
""" Affectable height of brush (layer height for layer tool
|
|
13332
|
+
""" Affectable height of brush (i.e. the layer height for the layer tool)
|
|
13325
13333
|
|
|
13326
13334
|
:type: float
|
|
13327
13335
|
"""
|
|
@@ -17730,7 +17738,7 @@ class Collection(bpy_struct):
|
|
|
17730
17738
|
"""
|
|
17731
17739
|
|
|
17732
17740
|
collection_children: bpy_prop_collection[CollectionChild]
|
|
17733
|
-
""" Children collections their parent-collection-specific settings
|
|
17741
|
+
""" Children collections with their parent-collection-specific settings
|
|
17734
17742
|
|
|
17735
17743
|
:type: bpy_prop_collection[CollectionChild]
|
|
17736
17744
|
"""
|
|
@@ -17792,7 +17800,7 @@ class Collection(bpy_struct):
|
|
|
17792
17800
|
"""
|
|
17793
17801
|
|
|
17794
17802
|
lineart_usage: typing.Union[str, int]
|
|
17795
|
-
""" How to use this collection in
|
|
17803
|
+
""" How to use this collection in Line Art calculation
|
|
17796
17804
|
|
|
17797
17805
|
:type: typing.Union[str, int]
|
|
17798
17806
|
"""
|
|
@@ -21970,7 +21978,7 @@ class CompositorNodeDilateErode(bpy_struct):
|
|
|
21970
21978
|
"""
|
|
21971
21979
|
|
|
21972
21980
|
falloff: typing.Union[str, int]
|
|
21973
|
-
""" Falloff type the feather
|
|
21981
|
+
""" Falloff type of the feather
|
|
21974
21982
|
|
|
21975
21983
|
:type: typing.Union[str, int]
|
|
21976
21984
|
"""
|
|
@@ -23348,7 +23356,7 @@ class CompositorNodeKeying(bpy_struct):
|
|
|
23348
23356
|
"""
|
|
23349
23357
|
|
|
23350
23358
|
feather_falloff: typing.Union[str, int]
|
|
23351
|
-
""" Falloff type the feather
|
|
23359
|
+
""" Falloff type of the feather
|
|
23352
23360
|
|
|
23353
23361
|
:type: typing.Union[str, int]
|
|
23354
23362
|
"""
|
|
@@ -37196,7 +37204,7 @@ class FluidDomainSettings(bpy_struct):
|
|
|
37196
37204
|
"""
|
|
37197
37205
|
|
|
37198
37206
|
use_adaptive_timesteps: bool
|
|
37199
|
-
"""
|
|
37207
|
+
""" Lets the solver automatically decide when to perform multiple simulation steps per frame
|
|
37200
37208
|
|
|
37201
37209
|
:type: bool
|
|
37202
37210
|
"""
|
|
@@ -55386,13 +55394,13 @@ class GreasePencilArrayModifier(bpy_struct):
|
|
|
55386
55394
|
"""
|
|
55387
55395
|
|
|
55388
55396
|
use_object_offset: bool
|
|
55389
|
-
"""
|
|
55397
|
+
""" Add another object's transformation to the total offset
|
|
55390
55398
|
|
|
55391
55399
|
:type: bool
|
|
55392
55400
|
"""
|
|
55393
55401
|
|
|
55394
55402
|
use_relative_offset: bool
|
|
55395
|
-
"""
|
|
55403
|
+
""" Add an offset relative to the object's bounding box
|
|
55396
55404
|
|
|
55397
55405
|
:type: bool
|
|
55398
55406
|
"""
|
|
@@ -55956,7 +55964,7 @@ class GreasePencilDashModifierSegment(bpy_struct):
|
|
|
55956
55964
|
...
|
|
55957
55965
|
|
|
55958
55966
|
class GreasePencilEnvelopeModifier(bpy_struct):
|
|
55959
|
-
"""
|
|
55967
|
+
"""Envelope stroke effect modifier"""
|
|
55960
55968
|
|
|
55961
55969
|
invert_layer_filter: bool
|
|
55962
55970
|
""" Invert layer filter
|
|
@@ -56531,6 +56539,12 @@ class GreasePencilLayer(bpy_struct):
|
|
|
56531
56539
|
:type: typing.Union[typing.List[float], typing.Tuple[float, float, float], mathutils.Vector]
|
|
56532
56540
|
"""
|
|
56533
56541
|
|
|
56542
|
+
use_lights: bool
|
|
56543
|
+
""" Enable the use of lights on stroke and fill materials
|
|
56544
|
+
|
|
56545
|
+
:type: bool
|
|
56546
|
+
"""
|
|
56547
|
+
|
|
56534
56548
|
use_masks: bool
|
|
56535
56549
|
""" The visibility of drawings on this layer is affected by the layers in its masks list
|
|
56536
56550
|
|
|
@@ -56543,6 +56557,12 @@ class GreasePencilLayer(bpy_struct):
|
|
|
56543
56557
|
:type: bool
|
|
56544
56558
|
"""
|
|
56545
56559
|
|
|
56560
|
+
use_viewlayer_masks: bool
|
|
56561
|
+
""" Include the mask layers when rendering the view-layer
|
|
56562
|
+
|
|
56563
|
+
:type: bool
|
|
56564
|
+
"""
|
|
56565
|
+
|
|
56546
56566
|
viewlayer_render: typing.Union[str, typing.Any]
|
|
56547
56567
|
""" Only include Layer in this View Layer render output (leave blank to include always)
|
|
56548
56568
|
|
|
@@ -56999,7 +57019,7 @@ class GreasePencilLengthModifier(bpy_struct):
|
|
|
56999
57019
|
...
|
|
57000
57020
|
|
|
57001
57021
|
class GreasePencilLineartModifier(bpy_struct):
|
|
57002
|
-
"""Generate
|
|
57022
|
+
"""Generate Line Art strokes from selected source"""
|
|
57003
57023
|
|
|
57004
57024
|
chaining_image_threshold: float
|
|
57005
57025
|
""" Segments with an image distance smaller than this will be chained together
|
|
@@ -57008,7 +57028,7 @@ class GreasePencilLineartModifier(bpy_struct):
|
|
|
57008
57028
|
"""
|
|
57009
57029
|
|
|
57010
57030
|
crease_threshold: float
|
|
57011
|
-
""" Angles smaller than this will be treated as creases. Crease angle priority: object
|
|
57031
|
+
""" Angles smaller than this will be treated as creases. Crease angle priority: object Line Art crease override > mesh auto smooth angle > Line Art default crease
|
|
57012
57032
|
|
|
57013
57033
|
:type: float
|
|
57014
57034
|
"""
|
|
@@ -57092,7 +57112,7 @@ class GreasePencilLineartModifier(bpy_struct):
|
|
|
57092
57112
|
"""
|
|
57093
57113
|
|
|
57094
57114
|
source_camera: Object
|
|
57095
|
-
""" Use specified camera object for generating
|
|
57115
|
+
""" Use specified camera object for generating Line Art strokes
|
|
57096
57116
|
|
|
57097
57117
|
:type: Object
|
|
57098
57118
|
"""
|
|
@@ -57110,7 +57130,7 @@ class GreasePencilLineartModifier(bpy_struct):
|
|
|
57110
57130
|
"""
|
|
57111
57131
|
|
|
57112
57132
|
source_type: typing.Union[str, int]
|
|
57113
|
-
""" Line
|
|
57133
|
+
""" Line Art stroke source type
|
|
57114
57134
|
|
|
57115
57135
|
:type: typing.Union[str, int]
|
|
57116
57136
|
"""
|
|
@@ -57158,7 +57178,7 @@ class GreasePencilLineartModifier(bpy_struct):
|
|
|
57158
57178
|
"""
|
|
57159
57179
|
|
|
57160
57180
|
use_cache: bool
|
|
57161
|
-
""" Use cached scene data from the first
|
|
57181
|
+
""" Use cached scene data from the first Line Art modifier in the stack. Certain settings will be unavailable
|
|
57162
57182
|
|
|
57163
57183
|
:type: bool
|
|
57164
57184
|
"""
|
|
@@ -57350,7 +57370,7 @@ class GreasePencilLineartModifier(bpy_struct):
|
|
|
57350
57370
|
"""
|
|
57351
57371
|
|
|
57352
57372
|
use_object_instances: bool
|
|
57353
|
-
""" Allow particle objects and face/vertex instances to show in
|
|
57373
|
+
""" Allow particle objects and face/vertex instances to show in Line Art
|
|
57354
57374
|
|
|
57355
57375
|
:type: bool
|
|
57356
57376
|
"""
|
|
@@ -62911,7 +62931,7 @@ class KeyConfigurations(bpy_struct):
|
|
|
62911
62931
|
idname: typing.Union[str, typing.Any],
|
|
62912
62932
|
context: typing.Union[str, int] = "INVOKE_DEFAULT",
|
|
62913
62933
|
properties: typing.Union[OperatorProperties, typing.Any] = None,
|
|
62914
|
-
include: typing.Any = {'"
|
|
62934
|
+
include: typing.Any = {'"KEYBOARD"', '"MOUSE"', '"NDOF"', '"ACTIONZONE"'},
|
|
62915
62935
|
exclude: typing.Any = {},
|
|
62916
62936
|
) -> typing.Any:
|
|
62917
62937
|
"""find_item_from_operator
|
|
@@ -63394,7 +63414,7 @@ class KeyMapItems(bpy_struct):
|
|
|
63394
63414
|
self,
|
|
63395
63415
|
idname: typing.Union[str, typing.Any],
|
|
63396
63416
|
properties: typing.Union[OperatorProperties, typing.Any] = None,
|
|
63397
|
-
include: typing.Any = {'"
|
|
63417
|
+
include: typing.Any = {'"KEYBOARD"', '"MOUSE"', '"NDOF"', '"ACTIONZONE"'},
|
|
63398
63418
|
exclude: typing.Any = {},
|
|
63399
63419
|
) -> typing.Any:
|
|
63400
63420
|
"""find_from_operator
|
|
@@ -64596,7 +64616,7 @@ class Lattice(bpy_struct):
|
|
|
64596
64616
|
...
|
|
64597
64617
|
|
|
64598
64618
|
class LatticeGpencilModifier(bpy_struct):
|
|
64599
|
-
"""
|
|
64619
|
+
"""Deform strokes using a lattice object"""
|
|
64600
64620
|
|
|
64601
64621
|
invert_layer_pass: bool
|
|
64602
64622
|
""" Inverse filter
|
|
@@ -65441,7 +65461,7 @@ class LightProbe(bpy_struct):
|
|
|
65441
65461
|
:type: float
|
|
65442
65462
|
"""
|
|
65443
65463
|
|
|
65444
|
-
|
|
65464
|
+
grid_facing_bias: float
|
|
65445
65465
|
""" Smoother irradiance interpolation but introduce light bleeding
|
|
65446
65466
|
|
|
65447
65467
|
:type: float
|
|
@@ -69531,7 +69551,7 @@ class LineStyleThicknessModifiers(bpy_struct):
|
|
|
69531
69551
|
...
|
|
69532
69552
|
|
|
69533
69553
|
class LineartGpencilModifier(bpy_struct):
|
|
69534
|
-
"""Generate
|
|
69554
|
+
"""Generate Line Art strokes from selected source"""
|
|
69535
69555
|
|
|
69536
69556
|
chaining_image_threshold: float
|
|
69537
69557
|
""" Segments with an image distance smaller than this will be chained together
|
|
@@ -69540,7 +69560,7 @@ class LineartGpencilModifier(bpy_struct):
|
|
|
69540
69560
|
"""
|
|
69541
69561
|
|
|
69542
69562
|
crease_threshold: float
|
|
69543
|
-
""" Angles smaller than this will be treated as creases. Crease angle priority: object
|
|
69563
|
+
""" Angles smaller than this will be treated as creases. Crease angle priority: object Line Art crease override > mesh auto smooth angle > Line Art default crease
|
|
69544
69564
|
|
|
69545
69565
|
:type: float
|
|
69546
69566
|
"""
|
|
@@ -69624,7 +69644,7 @@ class LineartGpencilModifier(bpy_struct):
|
|
|
69624
69644
|
"""
|
|
69625
69645
|
|
|
69626
69646
|
source_camera: Object
|
|
69627
|
-
""" Use specified camera object for generating
|
|
69647
|
+
""" Use specified camera object for generating Line Art strokes
|
|
69628
69648
|
|
|
69629
69649
|
:type: Object
|
|
69630
69650
|
"""
|
|
@@ -69642,7 +69662,7 @@ class LineartGpencilModifier(bpy_struct):
|
|
|
69642
69662
|
"""
|
|
69643
69663
|
|
|
69644
69664
|
source_type: typing.Union[str, int]
|
|
69645
|
-
""" Line
|
|
69665
|
+
""" Line Art stroke source type
|
|
69646
69666
|
|
|
69647
69667
|
:type: typing.Union[str, int]
|
|
69648
69668
|
"""
|
|
@@ -69690,7 +69710,7 @@ class LineartGpencilModifier(bpy_struct):
|
|
|
69690
69710
|
"""
|
|
69691
69711
|
|
|
69692
69712
|
use_cache: bool
|
|
69693
|
-
""" Use cached scene data from the first
|
|
69713
|
+
""" Use cached scene data from the first Line Art modifier in the stack. Certain settings will be unavailable
|
|
69694
69714
|
|
|
69695
69715
|
:type: bool
|
|
69696
69716
|
"""
|
|
@@ -69882,7 +69902,7 @@ class LineartGpencilModifier(bpy_struct):
|
|
|
69882
69902
|
"""
|
|
69883
69903
|
|
|
69884
69904
|
use_object_instances: bool
|
|
69885
|
-
""" Allow particle objects and face/vertex instances to show in
|
|
69905
|
+
""" Allow particle objects and face/vertex instances to show in Line Art
|
|
69886
69906
|
|
|
69887
69907
|
:type: bool
|
|
69888
69908
|
"""
|
|
@@ -70909,7 +70929,7 @@ class MaskLayer(bpy_struct):
|
|
|
70909
70929
|
"""
|
|
70910
70930
|
|
|
70911
70931
|
falloff: typing.Union[str, int]
|
|
70912
|
-
""" Falloff type the feather
|
|
70932
|
+
""" Falloff type of the feather
|
|
70913
70933
|
|
|
70914
70934
|
:type: typing.Union[str, int]
|
|
70915
70935
|
"""
|
|
@@ -71653,7 +71673,7 @@ class Material(bpy_struct):
|
|
|
71653
71673
|
"""
|
|
71654
71674
|
|
|
71655
71675
|
lineart: typing.Union[MaterialLineArt, typing.Any]
|
|
71656
|
-
""" Line
|
|
71676
|
+
""" Line Art settings for material
|
|
71657
71677
|
|
|
71658
71678
|
:type: typing.Union[MaterialLineArt, typing.Any]
|
|
71659
71679
|
"""
|
|
@@ -73996,7 +74016,7 @@ class MirrorGpencilModifier(bpy_struct):
|
|
|
73996
74016
|
"""
|
|
73997
74017
|
|
|
73998
74018
|
use_clip: bool
|
|
73999
|
-
"""
|
|
74019
|
+
""" Prevent points from going through the mirror during transform
|
|
74000
74020
|
|
|
74001
74021
|
:type: bool
|
|
74002
74022
|
"""
|
|
@@ -74286,7 +74306,15 @@ class MotionPath(bpy_struct):
|
|
|
74286
74306
|
color: typing.Union[
|
|
74287
74307
|
typing.List[float], typing.Tuple[float, float, float], mathutils.Color
|
|
74288
74308
|
]
|
|
74289
|
-
""" Custom color for motion path
|
|
74309
|
+
""" Custom color for motion path before the current frame
|
|
74310
|
+
|
|
74311
|
+
:type: typing.Union[typing.List[float], typing.Tuple[float, float, float], mathutils.Color]
|
|
74312
|
+
"""
|
|
74313
|
+
|
|
74314
|
+
color_post: typing.Union[
|
|
74315
|
+
typing.List[float], typing.Tuple[float, float, float], mathutils.Color
|
|
74316
|
+
]
|
|
74317
|
+
""" Custom color for motion path after the current frame
|
|
74290
74318
|
|
|
74291
74319
|
:type: typing.Union[typing.List[float], typing.Tuple[float, float, float], mathutils.Color]
|
|
74292
74320
|
"""
|
|
@@ -84932,7 +84960,7 @@ class ObjectLightLinking(bpy_struct):
|
|
|
84932
84960
|
...
|
|
84933
84961
|
|
|
84934
84962
|
class ObjectLineArt(bpy_struct):
|
|
84935
|
-
"""Object
|
|
84963
|
+
"""Object Line Art settings"""
|
|
84936
84964
|
|
|
84937
84965
|
crease_threshold: float
|
|
84938
84966
|
""" Angles smaller than this will be treated as creases
|
|
@@ -84947,7 +84975,7 @@ class ObjectLineArt(bpy_struct):
|
|
|
84947
84975
|
"""
|
|
84948
84976
|
|
|
84949
84977
|
usage: typing.Union[str, int]
|
|
84950
|
-
""" How to use this object in
|
|
84978
|
+
""" How to use this object in Line Art calculation
|
|
84951
84979
|
|
|
84952
84980
|
:type: typing.Union[str, int]
|
|
84953
84981
|
"""
|
|
@@ -91847,12 +91875,6 @@ class PreferencesInput(bpy_struct):
|
|
|
91847
91875
|
:type: bool
|
|
91848
91876
|
"""
|
|
91849
91877
|
|
|
91850
|
-
use_ndof: typing.Union[bool, typing.Any]
|
|
91851
|
-
"""
|
|
91852
|
-
|
|
91853
|
-
:type: typing.Union[bool, typing.Any]
|
|
91854
|
-
"""
|
|
91855
|
-
|
|
91856
91878
|
use_numeric_input_advanced: bool
|
|
91857
91879
|
""" When entering numbers while transforming, default to advanced mode for full math expression evaluation
|
|
91858
91880
|
|
|
@@ -98158,7 +98180,7 @@ class Sequence(bpy_struct):
|
|
|
98158
98180
|
"""
|
|
98159
98181
|
|
|
98160
98182
|
use_default_fade: bool
|
|
98161
|
-
""" Fade effect using the built-in default (usually
|
|
98183
|
+
""" Fade effect using the built-in default (usually makes the transition as long as the effect strip)
|
|
98162
98184
|
|
|
98163
98185
|
:type: bool
|
|
98164
98186
|
"""
|
|
@@ -106675,13 +106697,13 @@ class ShaderNodeVectorRotate(bpy_struct):
|
|
|
106675
106697
|
"""Rotate a vector around a pivot point (center)"""
|
|
106676
106698
|
|
|
106677
106699
|
invert: bool
|
|
106678
|
-
""" Invert angle
|
|
106700
|
+
""" Invert the rotation angle
|
|
106679
106701
|
|
|
106680
106702
|
:type: bool
|
|
106681
106703
|
"""
|
|
106682
106704
|
|
|
106683
106705
|
rotation_type: typing.Union[str, int]
|
|
106684
|
-
""" Type of
|
|
106706
|
+
""" Type of angle input
|
|
106685
106707
|
|
|
106686
106708
|
:type: typing.Union[str, int]
|
|
106687
106709
|
"""
|
|
@@ -118452,6 +118474,12 @@ class Theme(bpy_struct):
|
|
|
118452
118474
|
:type: typing.Union[ThemeFileBrowser, typing.Any]
|
|
118453
118475
|
"""
|
|
118454
118476
|
|
|
118477
|
+
filepath: typing.Union[str, typing.Any]
|
|
118478
|
+
""" The path to the preset loaded into this theme (if any)
|
|
118479
|
+
|
|
118480
|
+
:type: typing.Union[str, typing.Any]
|
|
118481
|
+
"""
|
|
118482
|
+
|
|
118455
118483
|
graph_editor: typing.Union[ThemeGraphEditor, typing.Any]
|
|
118456
118484
|
"""
|
|
118457
118485
|
|
|
@@ -119176,6 +119204,22 @@ class ThemeDopeSheet(bpy_struct):
|
|
|
119176
119204
|
:type: typing.Union[typing.List[float], typing.Tuple[float, float, float], mathutils.Color]
|
|
119177
119205
|
"""
|
|
119178
119206
|
|
|
119207
|
+
keyframe_generated: typing.Union[
|
|
119208
|
+
typing.List[float], typing.Tuple[float, float, float], mathutils.Color
|
|
119209
|
+
]
|
|
119210
|
+
""" Color of generated keyframe
|
|
119211
|
+
|
|
119212
|
+
:type: typing.Union[typing.List[float], typing.Tuple[float, float, float], mathutils.Color]
|
|
119213
|
+
"""
|
|
119214
|
+
|
|
119215
|
+
keyframe_generated_selected: typing.Union[
|
|
119216
|
+
typing.List[float], typing.Tuple[float, float, float], mathutils.Color
|
|
119217
|
+
]
|
|
119218
|
+
""" Color of selected generated keyframe
|
|
119219
|
+
|
|
119220
|
+
:type: typing.Union[typing.List[float], typing.Tuple[float, float, float], mathutils.Color]
|
|
119221
|
+
"""
|
|
119222
|
+
|
|
119179
119223
|
keyframe_jitter: typing.Union[
|
|
119180
119224
|
typing.List[float], typing.Tuple[float, float, float], mathutils.Color
|
|
119181
119225
|
]
|
|
@@ -120039,14 +120083,6 @@ class ThemeImageEditor(bpy_struct):
|
|
|
120039
120083
|
:type: typing.Union[typing.List[float], typing.Tuple[float, float, float], mathutils.Color]
|
|
120040
120084
|
"""
|
|
120041
120085
|
|
|
120042
|
-
vertex_active: typing.Union[
|
|
120043
|
-
typing.List[float], typing.Tuple[float, float, float], mathutils.Color
|
|
120044
|
-
]
|
|
120045
|
-
"""
|
|
120046
|
-
|
|
120047
|
-
:type: typing.Union[typing.List[float], typing.Tuple[float, float, float], mathutils.Color]
|
|
120048
|
-
"""
|
|
120049
|
-
|
|
120050
120086
|
vertex_bevel: typing.Union[
|
|
120051
120087
|
typing.List[float], typing.Tuple[float, float, float], mathutils.Color
|
|
120052
120088
|
]
|
|
@@ -121039,6 +121075,22 @@ class ThemeSequenceEditor(bpy_struct):
|
|
|
121039
121075
|
:type: typing.Union[typing.List[float], typing.Tuple[float, float, float], mathutils.Color]
|
|
121040
121076
|
"""
|
|
121041
121077
|
|
|
121078
|
+
keyframe_generated: typing.Union[
|
|
121079
|
+
typing.List[float], typing.Tuple[float, float, float], mathutils.Color
|
|
121080
|
+
]
|
|
121081
|
+
""" Color of generated keyframe
|
|
121082
|
+
|
|
121083
|
+
:type: typing.Union[typing.List[float], typing.Tuple[float, float, float], mathutils.Color]
|
|
121084
|
+
"""
|
|
121085
|
+
|
|
121086
|
+
keyframe_generated_selected: typing.Union[
|
|
121087
|
+
typing.List[float], typing.Tuple[float, float, float], mathutils.Color
|
|
121088
|
+
]
|
|
121089
|
+
""" Color of selected generated keyframe
|
|
121090
|
+
|
|
121091
|
+
:type: typing.Union[typing.List[float], typing.Tuple[float, float, float], mathutils.Color]
|
|
121092
|
+
"""
|
|
121093
|
+
|
|
121042
121094
|
keyframe_movehold: typing.Union[
|
|
121043
121095
|
typing.List[float], typing.Tuple[float, float, float], mathutils.Color
|
|
121044
121096
|
]
|
|
@@ -122776,14 +122828,6 @@ class ThemeView3D(bpy_struct):
|
|
|
122776
122828
|
:type: typing.Union[typing.List[float], typing.Tuple[float, float, float], mathutils.Color]
|
|
122777
122829
|
"""
|
|
122778
122830
|
|
|
122779
|
-
vertex_active: typing.Union[
|
|
122780
|
-
typing.List[float], typing.Tuple[float, float, float], mathutils.Color
|
|
122781
|
-
]
|
|
122782
|
-
"""
|
|
122783
|
-
|
|
122784
|
-
:type: typing.Union[typing.List[float], typing.Tuple[float, float, float], mathutils.Color]
|
|
122785
|
-
"""
|
|
122786
|
-
|
|
122787
122831
|
vertex_bevel: typing.Union[
|
|
122788
122832
|
typing.List[float], typing.Tuple[float, float, float], mathutils.Color
|
|
122789
122833
|
]
|
|
@@ -125779,6 +125823,7 @@ class UILayout(bpy_struct):
|
|
|
125779
125823
|
emboss: typing.Union[bool, typing.Any] = True,
|
|
125780
125824
|
depress: typing.Union[bool, typing.Any] = False,
|
|
125781
125825
|
icon_value: typing.Any = 0,
|
|
125826
|
+
search_weight: typing.Any = 0.0,
|
|
125782
125827
|
) -> typing.Any:
|
|
125783
125828
|
"""Item. Places a button into the layout to call an Operator
|
|
125784
125829
|
|
|
@@ -125798,6 +125843,8 @@ class UILayout(bpy_struct):
|
|
|
125798
125843
|
:type depress: typing.Union[bool, typing.Any]
|
|
125799
125844
|
:param icon_value: Icon Value, Override automatic icon of the item
|
|
125800
125845
|
:type icon_value: typing.Any
|
|
125846
|
+
:param search_weight: Search Weight, Influences the sorting when using menu-seach
|
|
125847
|
+
:type search_weight: typing.Any
|
|
125801
125848
|
:return: Operator properties to fill in
|
|
125802
125849
|
:rtype: OperatorProperties
|
|
125803
125850
|
"""
|
|
@@ -127932,13 +127979,13 @@ class UserExtensionRepo(bpy_struct):
|
|
|
127932
127979
|
"""
|
|
127933
127980
|
|
|
127934
127981
|
use_cache: bool
|
|
127935
|
-
"""
|
|
127982
|
+
""" Downloaded package files are deleted after installation
|
|
127936
127983
|
|
|
127937
127984
|
:type: bool
|
|
127938
127985
|
"""
|
|
127939
127986
|
|
|
127940
127987
|
use_custom_directory: bool
|
|
127941
|
-
""" Manually set the path for extensions to be stored. When disabled a
|
|
127988
|
+
""" Manually set the path for extensions to be stored. When disabled a user's extensions directory is created
|
|
127942
127989
|
|
|
127943
127990
|
:type: bool
|
|
127944
127991
|
"""
|
|
@@ -136081,10 +136128,38 @@ DATA_PT_lightprobe: bl_ui.properties_data_lightprobe.DATA_PT_lightprobe
|
|
|
136081
136128
|
"""
|
|
136082
136129
|
"""
|
|
136083
136130
|
|
|
136131
|
+
DATA_PT_lightprobe_bake: bl_ui.properties_data_lightprobe.DATA_PT_lightprobe_bake
|
|
136132
|
+
"""
|
|
136133
|
+
"""
|
|
136134
|
+
|
|
136135
|
+
DATA_PT_lightprobe_bake_capture: bl_ui.properties_data_lightprobe.DATA_PT_lightprobe_bake_capture
|
|
136136
|
+
"""
|
|
136137
|
+
"""
|
|
136138
|
+
|
|
136139
|
+
DATA_PT_lightprobe_bake_clamping: bl_ui.properties_data_lightprobe.DATA_PT_lightprobe_bake_clamping
|
|
136140
|
+
"""
|
|
136141
|
+
"""
|
|
136142
|
+
|
|
136143
|
+
DATA_PT_lightprobe_bake_offset: bl_ui.properties_data_lightprobe.DATA_PT_lightprobe_bake_offset
|
|
136144
|
+
"""
|
|
136145
|
+
"""
|
|
136146
|
+
|
|
136147
|
+
DATA_PT_lightprobe_bake_resolution: bl_ui.properties_data_lightprobe.DATA_PT_lightprobe_bake_resolution
|
|
136148
|
+
"""
|
|
136149
|
+
"""
|
|
136150
|
+
|
|
136151
|
+
DATA_PT_lightprobe_capture: bl_ui.properties_data_lightprobe.DATA_PT_lightprobe_capture
|
|
136152
|
+
"""
|
|
136153
|
+
"""
|
|
136154
|
+
|
|
136084
136155
|
DATA_PT_lightprobe_display: bl_ui.properties_data_lightprobe.DATA_PT_lightprobe_display
|
|
136085
136156
|
"""
|
|
136086
136157
|
"""
|
|
136087
136158
|
|
|
136159
|
+
DATA_PT_lightprobe_display_eevee_next: bl_ui.properties_data_lightprobe.DATA_PT_lightprobe_display_eevee_next
|
|
136160
|
+
"""
|
|
136161
|
+
"""
|
|
136162
|
+
|
|
136088
136163
|
DATA_PT_lightprobe_eevee_next: bl_ui.properties_data_lightprobe.DATA_PT_lightprobe_eevee_next
|
|
136089
136164
|
"""
|
|
136090
136165
|
"""
|
|
@@ -140201,6 +140276,10 @@ VIEW3D_MT_edit_curves: bl_ui.space_view3d.VIEW3D_MT_edit_curves
|
|
|
140201
140276
|
"""
|
|
140202
140277
|
"""
|
|
140203
140278
|
|
|
140279
|
+
VIEW3D_MT_edit_curves_add: bl_ui.space_view3d.VIEW3D_MT_edit_curves_add
|
|
140280
|
+
"""
|
|
140281
|
+
"""
|
|
140282
|
+
|
|
140204
140283
|
VIEW3D_MT_edit_curves_control_points: bl_ui.space_view3d.VIEW3D_MT_edit_curves_control_points
|
|
140205
140284
|
"""
|
|
140206
140285
|
"""
|