fake-bpy-module 20250609__py3-none-any.whl → 20250611__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.
- bl_ui/properties_texture/__init__.pyi +0 -1
- bl_ui/space_spreadsheet/__init__.pyi +0 -6
- bpy/ops/node/__init__.pyi +15 -0
- bpy/ops/object/__init__.pyi +3 -0
- bpy/stub_internal/rna_enums/__init__.pyi +7 -0
- bpy/types/__init__.pyi +75 -61
- {fake_bpy_module-20250609.dist-info → fake_bpy_module-20250611.dist-info}/METADATA +1 -1
- {fake_bpy_module-20250609.dist-info → fake_bpy_module-20250611.dist-info}/RECORD +11 -11
- gpu/types/__init__.pyi +1 -1
- {fake_bpy_module-20250609.dist-info → fake_bpy_module-20250611.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20250609.dist-info → fake_bpy_module-20250611.dist-info}/top_level.txt +0 -0
|
@@ -29,12 +29,6 @@ class SPREADSHEET_HT_header(bpy.types.Header):
|
|
|
29
29
|
:param context:
|
|
30
30
|
"""
|
|
31
31
|
|
|
32
|
-
def selection_filter_available(self, space) -> None:
|
|
33
|
-
"""
|
|
34
|
-
|
|
35
|
-
:param space:
|
|
36
|
-
"""
|
|
37
|
-
|
|
38
32
|
class SPREADSHEET_MT_editor_menus(bpy.types.Menu):
|
|
39
33
|
bl_idname: typing.Any
|
|
40
34
|
bl_label: typing.Any
|
bpy/ops/node/__init__.pyi
CHANGED
|
@@ -1499,6 +1499,21 @@ def mute_toggle(
|
|
|
1499
1499
|
:type undo: bool | None
|
|
1500
1500
|
"""
|
|
1501
1501
|
|
|
1502
|
+
def new_compositing_node_group(
|
|
1503
|
+
execution_context: int | str | None = None,
|
|
1504
|
+
undo: bool | None = None,
|
|
1505
|
+
/,
|
|
1506
|
+
*,
|
|
1507
|
+
name: str = "Compositing Node Tree",
|
|
1508
|
+
) -> None:
|
|
1509
|
+
"""Create a new compositing node tree and initialize it with default nodes
|
|
1510
|
+
|
|
1511
|
+
:type execution_context: int | str | None
|
|
1512
|
+
:type undo: bool | None
|
|
1513
|
+
:param name: Name
|
|
1514
|
+
:type name: str
|
|
1515
|
+
"""
|
|
1516
|
+
|
|
1502
1517
|
def new_geometry_node_group_assign(
|
|
1503
1518
|
execution_context: int | str | None = None, undo: bool | None = None
|
|
1504
1519
|
) -> None:
|
bpy/ops/object/__init__.pyi
CHANGED
|
@@ -4289,6 +4289,7 @@ def subdivision_set(
|
|
|
4289
4289
|
*,
|
|
4290
4290
|
level: int | None = 1,
|
|
4291
4291
|
relative: bool | None = False,
|
|
4292
|
+
ensure_modifier: bool | None = True,
|
|
4292
4293
|
) -> None:
|
|
4293
4294
|
"""Sets a Subdivision Surface level (1 to 5)
|
|
4294
4295
|
|
|
@@ -4298,6 +4299,8 @@ def subdivision_set(
|
|
|
4298
4299
|
:type level: int | None
|
|
4299
4300
|
:param relative: Relative, Apply the subdivision surface level as an offset relative to the current level
|
|
4300
4301
|
:type relative: bool | None
|
|
4302
|
+
:param ensure_modifier: Ensure Modifier, Create the corresponding modifier if it does not exist
|
|
4303
|
+
:type ensure_modifier: bool | None
|
|
4301
4304
|
"""
|
|
4302
4305
|
|
|
4303
4306
|
def surfacedeform_bind(
|
|
@@ -2197,6 +2197,13 @@ type NodeSocketInOutItems = typing.Literal[
|
|
|
2197
2197
|
"IN", # Input.
|
|
2198
2198
|
"OUT", # Output.
|
|
2199
2199
|
]
|
|
2200
|
+
type NodeSocketStructureTypeItems = typing.Literal[
|
|
2201
|
+
"AUTO", # Auto.Automatically detect a good structure type based on how the socket is used.
|
|
2202
|
+
"SINGLE", # Single.Socket expects a single value.
|
|
2203
|
+
"DYNAMIC", # Dynamic.Socket can work with different kinds of structures.
|
|
2204
|
+
"FIELD", # Field.Socket expects a field.
|
|
2205
|
+
"GRID", # Grid.Socket expects a grid.
|
|
2206
|
+
]
|
|
2200
2207
|
type NodeSocketTypeItems = typing.Literal[
|
|
2201
2208
|
"CUSTOM", # Custom.
|
|
2202
2209
|
"VALUE", # Value.
|
bpy/types/__init__.pyi
CHANGED
|
@@ -9530,6 +9530,7 @@ example of how to create/use filtering/reordering callbacks.
|
|
|
9530
9530
|
* bpy_struct.id_data
|
|
9531
9531
|
* Attribute.name
|
|
9532
9532
|
* Attribute.data_type
|
|
9533
|
+
* Attribute.storage_type
|
|
9533
9534
|
* Attribute.domain
|
|
9534
9535
|
* Attribute.is_internal
|
|
9535
9536
|
* Attribute.is_required
|
|
@@ -11580,6 +11581,7 @@ from a search field, this can be done using bpy.types.Operator.invoke_search_pop
|
|
|
11580
11581
|
* bpy_struct.id_data
|
|
11581
11582
|
* Attribute.name
|
|
11582
11583
|
* Attribute.data_type
|
|
11584
|
+
* Attribute.storage_type
|
|
11583
11585
|
* Attribute.domain
|
|
11584
11586
|
* Attribute.is_internal
|
|
11585
11587
|
* Attribute.is_required
|
|
@@ -18875,6 +18877,7 @@ from a search field, this can be done using bpy.types.Operator.invoke_search_pop
|
|
|
18875
18877
|
* bpy_struct.id_data
|
|
18876
18878
|
* Attribute.name
|
|
18877
18879
|
* Attribute.data_type
|
|
18880
|
+
* Attribute.storage_type
|
|
18878
18881
|
* Attribute.domain
|
|
18879
18882
|
* Attribute.is_internal
|
|
18880
18883
|
* Attribute.is_required
|
|
@@ -27419,6 +27422,7 @@ Shared Enum Types <bpy_types_enum_items/index>
|
|
|
27419
27422
|
* bpy_struct.id_data
|
|
27420
27423
|
* Attribute.name
|
|
27421
27424
|
* Attribute.data_type
|
|
27425
|
+
* Attribute.storage_type
|
|
27422
27426
|
* Attribute.domain
|
|
27423
27427
|
* Attribute.is_internal
|
|
27424
27428
|
* Attribute.is_required
|
|
@@ -41681,6 +41685,7 @@ Shared Enum Types <bpy_types_enum_items/index>
|
|
|
41681
41685
|
* bpy_struct.id_data
|
|
41682
41686
|
* Attribute.name
|
|
41683
41687
|
* Attribute.data_type
|
|
41688
|
+
* Attribute.storage_type
|
|
41684
41689
|
* Attribute.domain
|
|
41685
41690
|
* Attribute.is_internal
|
|
41686
41691
|
* Attribute.is_required
|
|
@@ -48747,6 +48752,7 @@ Shared Enum Types <bpy_types_enum_items/index>
|
|
|
48747
48752
|
* bpy_struct.id_data
|
|
48748
48753
|
* Attribute.name
|
|
48749
48754
|
* Attribute.data_type
|
|
48755
|
+
* Attribute.storage_type
|
|
48750
48756
|
* Attribute.domain
|
|
48751
48757
|
* Attribute.is_internal
|
|
48752
48758
|
* Attribute.is_required
|
|
@@ -72031,6 +72037,7 @@ of the scene and only show nodes of the renderer they are designed for.
|
|
|
72031
72037
|
* NodeTree.get_from_context
|
|
72032
72038
|
* NodeTreePath.node_tree
|
|
72033
72039
|
* NodesModifier.node_group
|
|
72040
|
+
* Scene.compositing_node_group
|
|
72034
72041
|
* Scene.node_tree
|
|
72035
72042
|
* ShaderNodeCustomGroup.node_tree
|
|
72036
72043
|
* ShaderNodeGroup.node_tree
|
|
@@ -73306,6 +73313,7 @@ of the scene and only show nodes of the renderer they are designed for.
|
|
|
73306
73313
|
* bpy_struct.id_data
|
|
73307
73314
|
* Attribute.name
|
|
73308
73315
|
* Attribute.data_type
|
|
73316
|
+
* Attribute.storage_type
|
|
73309
73317
|
* Attribute.domain
|
|
73310
73318
|
* Attribute.is_internal
|
|
73311
73319
|
* Attribute.is_required
|
|
@@ -77528,6 +77536,7 @@ of the scene and only show nodes of the renderer they are designed for.
|
|
|
77528
77536
|
* bpy_struct.id_data
|
|
77529
77537
|
* Attribute.name
|
|
77530
77538
|
* Attribute.data_type
|
|
77539
|
+
* Attribute.storage_type
|
|
77531
77540
|
* Attribute.domain
|
|
77532
77541
|
* Attribute.is_internal
|
|
77533
77542
|
* Attribute.is_required
|
|
@@ -80179,6 +80188,7 @@ of the scene and only show nodes of the renderer they are designed for.
|
|
|
80179
80188
|
* bpy_struct.id_data
|
|
80180
80189
|
* Attribute.name
|
|
80181
80190
|
* Attribute.data_type
|
|
80191
|
+
* Attribute.storage_type
|
|
80182
80192
|
* Attribute.domain
|
|
80183
80193
|
* Attribute.is_internal
|
|
80184
80194
|
* Attribute.is_required
|
|
@@ -80733,6 +80743,7 @@ of the scene and only show nodes of the renderer they are designed for.
|
|
|
80733
80743
|
* bpy_struct.id_data
|
|
80734
80744
|
* Attribute.name
|
|
80735
80745
|
* Attribute.data_type
|
|
80746
|
+
* Attribute.storage_type
|
|
80736
80747
|
* Attribute.domain
|
|
80737
80748
|
* Attribute.is_internal
|
|
80738
80749
|
* Attribute.is_required
|
|
@@ -99257,6 +99268,7 @@ Property types used in class declarations are all in bpy.props
|
|
|
99257
99268
|
* bpy_struct.id_data
|
|
99258
99269
|
* Attribute.name
|
|
99259
99270
|
* Attribute.data_type
|
|
99271
|
+
* Attribute.storage_type
|
|
99260
99272
|
* Attribute.domain
|
|
99261
99273
|
* Attribute.is_internal
|
|
99262
99274
|
* Attribute.is_required
|
|
@@ -101264,6 +101276,7 @@ Menu.poll function.
|
|
|
101264
101276
|
* bpy_struct.id_data
|
|
101265
101277
|
* Attribute.name
|
|
101266
101278
|
* Attribute.data_type
|
|
101279
|
+
* Attribute.storage_type
|
|
101267
101280
|
* Attribute.domain
|
|
101268
101281
|
* Attribute.is_internal
|
|
101269
101282
|
* Attribute.is_required
|
|
@@ -106230,6 +106243,7 @@ Menu.poll function.
|
|
|
106230
106243
|
* bpy_struct.id_data
|
|
106231
106244
|
* Attribute.name
|
|
106232
106245
|
* Attribute.data_type
|
|
106246
|
+
* Attribute.storage_type
|
|
106233
106247
|
* Attribute.domain
|
|
106234
106248
|
* Attribute.is_internal
|
|
106235
106249
|
* Attribute.is_required
|
|
@@ -125389,6 +125403,12 @@ class Attribute(bpy_struct):
|
|
|
125389
125403
|
:type: str
|
|
125390
125404
|
"""
|
|
125391
125405
|
|
|
125406
|
+
storage_type: typing.Literal["ARRAY", "SINGLE"]
|
|
125407
|
+
""" Method used to store the data
|
|
125408
|
+
|
|
125409
|
+
:type: typing.Literal['ARRAY','SINGLE']
|
|
125410
|
+
"""
|
|
125411
|
+
|
|
125392
125412
|
@classmethod
|
|
125393
125413
|
def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
|
|
125394
125414
|
"""
|
|
@@ -139370,10 +139390,10 @@ class CompositorNodeRelativeToPixel(CompositorNode, NodeInternal, Node, bpy_stru
|
|
|
139370
139390
|
class CompositorNodeRotate(CompositorNode, NodeInternal, Node, bpy_struct):
|
|
139371
139391
|
"""Rotate image by specified angle"""
|
|
139372
139392
|
|
|
139373
|
-
filter_type: typing.Literal["NEAREST", "BILINEAR", "BICUBIC"]
|
|
139393
|
+
filter_type: typing.Literal["NEAREST", "BILINEAR", "BICUBIC", "ANISOTROPIC"]
|
|
139374
139394
|
""" Method to use to filter rotation
|
|
139375
139395
|
|
|
139376
|
-
:type: typing.Literal['NEAREST','BILINEAR','BICUBIC']
|
|
139396
|
+
:type: typing.Literal['NEAREST','BILINEAR','BICUBIC','ANISOTROPIC']
|
|
139377
139397
|
"""
|
|
139378
139398
|
|
|
139379
139399
|
@classmethod
|
|
@@ -139436,10 +139456,10 @@ class CompositorNodeScale(CompositorNode, NodeInternal, Node, bpy_struct):
|
|
|
139436
139456
|
:type: typing.Literal['STRETCH','FIT','CROP']
|
|
139437
139457
|
"""
|
|
139438
139458
|
|
|
139439
|
-
interpolation: typing.Literal["NEAREST", "BILINEAR", "BICUBIC"]
|
|
139459
|
+
interpolation: typing.Literal["NEAREST", "BILINEAR", "BICUBIC", "ANISOTROPIC"]
|
|
139440
139460
|
""" Interpolation method
|
|
139441
139461
|
|
|
139442
|
-
:type: typing.Literal['NEAREST','BILINEAR','BICUBIC']
|
|
139462
|
+
:type: typing.Literal['NEAREST','BILINEAR','BICUBIC','ANISOTROPIC']
|
|
139443
139463
|
"""
|
|
139444
139464
|
|
|
139445
139465
|
offset_x: float
|
|
@@ -140042,10 +140062,10 @@ class CompositorNodeStabilize(CompositorNode, NodeInternal, Node, bpy_struct):
|
|
|
140042
140062
|
:type: MovieClip | None
|
|
140043
140063
|
"""
|
|
140044
140064
|
|
|
140045
|
-
filter_type: typing.Literal["NEAREST", "BILINEAR", "BICUBIC"]
|
|
140065
|
+
filter_type: typing.Literal["NEAREST", "BILINEAR", "BICUBIC", "ANISOTROPIC"]
|
|
140046
140066
|
""" Method to use to filter stabilization
|
|
140047
140067
|
|
|
140048
|
-
:type: typing.Literal['NEAREST','BILINEAR','BICUBIC']
|
|
140068
|
+
:type: typing.Literal['NEAREST','BILINEAR','BICUBIC','ANISOTROPIC']
|
|
140049
140069
|
"""
|
|
140050
140070
|
|
|
140051
140071
|
invert: bool
|
|
@@ -140614,10 +140634,10 @@ class CompositorNodeTrackPos(CompositorNode, NodeInternal, Node, bpy_struct):
|
|
|
140614
140634
|
class CompositorNodeTransform(CompositorNode, NodeInternal, Node, bpy_struct):
|
|
140615
140635
|
"""Scale, translate and rotate an image"""
|
|
140616
140636
|
|
|
140617
|
-
filter_type: typing.Literal["NEAREST", "BILINEAR", "BICUBIC"]
|
|
140637
|
+
filter_type: typing.Literal["NEAREST", "BILINEAR", "BICUBIC", "ANISOTROPIC"]
|
|
140618
140638
|
""" Method to use to filter transform
|
|
140619
140639
|
|
|
140620
|
-
:type: typing.Literal['NEAREST','BILINEAR','BICUBIC']
|
|
140640
|
+
:type: typing.Literal['NEAREST','BILINEAR','BICUBIC','ANISOTROPIC']
|
|
140621
140641
|
"""
|
|
140622
140642
|
|
|
140623
140643
|
@classmethod
|
|
@@ -140674,10 +140694,10 @@ class CompositorNodeTransform(CompositorNode, NodeInternal, Node, bpy_struct):
|
|
|
140674
140694
|
class CompositorNodeTranslate(CompositorNode, NodeInternal, Node, bpy_struct):
|
|
140675
140695
|
"""Offset an image"""
|
|
140676
140696
|
|
|
140677
|
-
interpolation: typing.Literal["NEAREST", "BILINEAR", "BICUBIC"]
|
|
140697
|
+
interpolation: typing.Literal["NEAREST", "BILINEAR", "BICUBIC", "ANISOTROPIC"]
|
|
140678
140698
|
"""
|
|
140679
140699
|
|
|
140680
|
-
:type: typing.Literal['NEAREST','BILINEAR','BICUBIC']
|
|
140700
|
+
:type: typing.Literal['NEAREST','BILINEAR','BICUBIC','ANISOTROPIC']
|
|
140681
140701
|
"""
|
|
140682
140702
|
|
|
140683
140703
|
use_relative: bool
|
|
@@ -176613,30 +176633,12 @@ class ImageTexture(Texture, ID, bpy_struct):
|
|
|
176613
176633
|
:type: typing.Literal['EXTEND','CLIP','CLIP_CUBE','REPEAT','CHECKER']
|
|
176614
176634
|
"""
|
|
176615
176635
|
|
|
176616
|
-
filter_eccentricity: int
|
|
176617
|
-
""" Maximum eccentricity (higher gives less blur at distant/oblique angles, but is also slower)
|
|
176618
|
-
|
|
176619
|
-
:type: int
|
|
176620
|
-
"""
|
|
176621
|
-
|
|
176622
|
-
filter_lightprobes: int
|
|
176623
|
-
""" Maximum number of samples (higher gives less blur at distant/oblique angles, but is also slower)
|
|
176624
|
-
|
|
176625
|
-
:type: int
|
|
176626
|
-
"""
|
|
176627
|
-
|
|
176628
176636
|
filter_size: float
|
|
176629
|
-
""" Multiply the filter size used by
|
|
176637
|
+
""" Multiply the filter size used by interpolation
|
|
176630
176638
|
|
|
176631
176639
|
:type: float
|
|
176632
176640
|
"""
|
|
176633
176641
|
|
|
176634
|
-
filter_type: typing.Literal["BOX", "EWA", "FELINE", "AREA"]
|
|
176635
|
-
""" Texture filter to use for sampling image
|
|
176636
|
-
|
|
176637
|
-
:type: typing.Literal['BOX','EWA','FELINE','AREA']
|
|
176638
|
-
"""
|
|
176639
|
-
|
|
176640
176642
|
image: Image | None
|
|
176641
176643
|
"""
|
|
176642
176644
|
|
|
@@ -176691,12 +176693,6 @@ class ImageTexture(Texture, ID, bpy_struct):
|
|
|
176691
176693
|
:type: bool
|
|
176692
176694
|
"""
|
|
176693
176695
|
|
|
176694
|
-
use_filter_size_min: bool
|
|
176695
|
-
""" Use Filter Size as a minimal filter value in pixels
|
|
176696
|
-
|
|
176697
|
-
:type: bool
|
|
176698
|
-
"""
|
|
176699
|
-
|
|
176700
176696
|
use_flip_axis: bool
|
|
176701
176697
|
""" Flip the texture's X and Y axis
|
|
176702
176698
|
|
|
@@ -176709,18 +176705,6 @@ class ImageTexture(Texture, ID, bpy_struct):
|
|
|
176709
176705
|
:type: bool
|
|
176710
176706
|
"""
|
|
176711
176707
|
|
|
176712
|
-
use_mipmap: bool
|
|
176713
|
-
""" Use auto-generated MIP maps for the image
|
|
176714
|
-
|
|
176715
|
-
:type: bool
|
|
176716
|
-
"""
|
|
176717
|
-
|
|
176718
|
-
use_mipmap_gauss: bool
|
|
176719
|
-
""" Use Gauss filter to sample down MIP maps
|
|
176720
|
-
|
|
176721
|
-
:type: bool
|
|
176722
|
-
"""
|
|
176723
|
-
|
|
176724
176708
|
use_mirror_x: bool
|
|
176725
176709
|
""" Mirror the image repetition on the X direction
|
|
176726
176710
|
|
|
@@ -190577,6 +190561,12 @@ class NodeGeometryClosureInputItem(bpy_struct):
|
|
|
190577
190561
|
:type: bpy.stub_internal.rna_enums.NodeSocketDataTypeItems
|
|
190578
190562
|
"""
|
|
190579
190563
|
|
|
190564
|
+
structure_type: bpy.stub_internal.rna_enums.NodeSocketStructureTypeItems
|
|
190565
|
+
""" What kind of higher order types are expected to flow through this socket
|
|
190566
|
+
|
|
190567
|
+
:type: bpy.stub_internal.rna_enums.NodeSocketStructureTypeItems
|
|
190568
|
+
"""
|
|
190569
|
+
|
|
190580
190570
|
@classmethod
|
|
190581
190571
|
def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
|
|
190582
190572
|
"""
|
|
@@ -190700,6 +190690,12 @@ class NodeGeometryEvaluateClosureInputItem(bpy_struct):
|
|
|
190700
190690
|
:type: bpy.stub_internal.rna_enums.NodeSocketDataTypeItems
|
|
190701
190691
|
"""
|
|
190702
190692
|
|
|
190693
|
+
structure_type: bpy.stub_internal.rna_enums.NodeSocketStructureTypeItems
|
|
190694
|
+
""" What kind of higher order types are expected to flow through this socket
|
|
190695
|
+
|
|
190696
|
+
:type: bpy.stub_internal.rna_enums.NodeSocketStructureTypeItems
|
|
190697
|
+
"""
|
|
190698
|
+
|
|
190703
190699
|
@classmethod
|
|
190704
190700
|
def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
|
|
190705
190701
|
"""
|
|
@@ -190741,6 +190737,12 @@ class NodeGeometryEvaluateClosureOutputItem(bpy_struct):
|
|
|
190741
190737
|
:type: bpy.stub_internal.rna_enums.NodeSocketDataTypeItems
|
|
190742
190738
|
"""
|
|
190743
190739
|
|
|
190740
|
+
structure_type: bpy.stub_internal.rna_enums.NodeSocketStructureTypeItems
|
|
190741
|
+
""" What kind of higher order types are expected to flow through this socket
|
|
190742
|
+
|
|
190743
|
+
:type: bpy.stub_internal.rna_enums.NodeSocketStructureTypeItems
|
|
190744
|
+
"""
|
|
190745
|
+
|
|
190744
190746
|
@classmethod
|
|
190745
190747
|
def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
|
|
190746
190748
|
"""
|
|
@@ -194279,10 +194281,10 @@ Deprecated. Will be remove in 5.0.
|
|
|
194279
194281
|
:type: str
|
|
194280
194282
|
"""
|
|
194281
194283
|
|
|
194282
|
-
structure_type:
|
|
194284
|
+
structure_type: bpy.stub_internal.rna_enums.NodeSocketStructureTypeItems
|
|
194283
194285
|
""" What kind of higher order types are expected to flow through this socket
|
|
194284
194286
|
|
|
194285
|
-
:type:
|
|
194287
|
+
:type: bpy.stub_internal.rna_enums.NodeSocketStructureTypeItems
|
|
194286
194288
|
"""
|
|
194287
194289
|
|
|
194288
194290
|
def draw(self, context: Context, layout: UILayout) -> None:
|
|
@@ -206208,12 +206210,6 @@ class PreferencesEdit(bpy_struct):
|
|
|
206208
206210
|
:type: bool
|
|
206209
206211
|
"""
|
|
206210
206212
|
|
|
206211
|
-
use_sequencer_simplified_tweaking: bool
|
|
206212
|
-
""" Allows dragging handles without selecting them first
|
|
206213
|
-
|
|
206214
|
-
:type: bool
|
|
206215
|
-
"""
|
|
206216
|
-
|
|
206217
206213
|
use_text_edit_auto_close: bool
|
|
206218
206214
|
""" Automatically close relevant character pairs when typing in the text editor
|
|
206219
206215
|
|
|
@@ -207080,6 +207076,12 @@ class PreferencesSystem(bpy_struct):
|
|
|
207080
207076
|
:type: typing.Literal['AUTO']
|
|
207081
207077
|
"""
|
|
207082
207078
|
|
|
207079
|
+
gpu_shader_workers: int
|
|
207080
|
+
""" Number of shader compilation threads or subprocesses, clamped at the max threads supported by the CPU (requires restarting Blender for changes to take effect). A higher number increases the RAM usage while reducing compilation time. A value of 0 will use automatic configuration. (OpenGL only)
|
|
207081
|
+
|
|
207082
|
+
:type: int
|
|
207083
|
+
"""
|
|
207084
|
+
|
|
207083
207085
|
image_draw_method: typing.Literal["AUTO", "2DTEXTURE", "GLSL"]
|
|
207084
207086
|
""" Method used for displaying images on the screen
|
|
207085
207087
|
|
|
@@ -207104,12 +207106,6 @@ class PreferencesSystem(bpy_struct):
|
|
|
207104
207106
|
:type: mathutils.Color
|
|
207105
207107
|
"""
|
|
207106
207108
|
|
|
207107
|
-
max_shader_compilation_subprocesses: int
|
|
207108
|
-
""" Max number of parallel shader compilation subprocesses, clamped at the max threads supported by the CPU (requires restarting Blender for changes to take effect). Setting it to 0 disables subprocess shader compilation.
|
|
207109
|
-
|
|
207110
|
-
:type: int
|
|
207111
|
-
"""
|
|
207112
|
-
|
|
207113
207109
|
memory_cache_limit: int
|
|
207114
207110
|
""" Memory cache limit (in megabytes)
|
|
207115
207111
|
|
|
@@ -207152,6 +207148,12 @@ class PreferencesSystem(bpy_struct):
|
|
|
207152
207148
|
:type: typing.Literal['MANUAL','AUTOMATIC']
|
|
207153
207149
|
"""
|
|
207154
207150
|
|
|
207151
|
+
shader_compilation_method: typing.Literal["THREAD", "SUBPROCESS"]
|
|
207152
|
+
""" Compilation method used for compiling shaders in parallel. Subprocess requires a lot more RAM for each worker but might compile shaders faster on some systems. Requires restarting Blender for changes to take effect. (OpenGL only)
|
|
207153
|
+
|
|
207154
|
+
:type: typing.Literal['THREAD','SUBPROCESS']
|
|
207155
|
+
"""
|
|
207156
|
+
|
|
207155
207157
|
solid_lights: bpy_prop_collection[UserSolidLight]
|
|
207156
207158
|
""" Lights used to display objects in solid shading mode
|
|
207157
207159
|
|
|
@@ -211335,6 +211337,12 @@ class Scene(ID, bpy_struct):
|
|
|
211335
211337
|
:type: Collection
|
|
211336
211338
|
"""
|
|
211337
211339
|
|
|
211340
|
+
compositing_node_group: NodeTree | None
|
|
211341
|
+
""" Compositing node tree
|
|
211342
|
+
|
|
211343
|
+
:type: NodeTree | None
|
|
211344
|
+
"""
|
|
211345
|
+
|
|
211338
211346
|
cursor: View3DCursor
|
|
211339
211347
|
"""
|
|
211340
211348
|
|
|
@@ -212260,6 +212268,12 @@ class SceneGpencil(bpy_struct):
|
|
|
212260
212268
|
:type: float
|
|
212261
212269
|
"""
|
|
212262
212270
|
|
|
212271
|
+
motion_blur_steps: int
|
|
212272
|
+
""" Controls accuracy of motion blur, more steps result in longer render time. Only used when Motion Blur is enabled. Set to 0 to disable motion blur for Grease Pencil
|
|
212273
|
+
|
|
212274
|
+
:type: int
|
|
212275
|
+
"""
|
|
212276
|
+
|
|
212263
212277
|
@classmethod
|
|
212264
212278
|
def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
|
|
212265
212279
|
"""
|
|
@@ -149,7 +149,7 @@ bl_ui/properties_physics_rigidbody_constraint/__init__.pyi,sha256=99ieEnpjjZUC3k
|
|
|
149
149
|
bl_ui/properties_physics_softbody/__init__.pyi,sha256=an4mH50E9w52Y-dGoa61eEFdjqOB-t-2jzuMrMSM3Dk,11785
|
|
150
150
|
bl_ui/properties_render/__init__.pyi,sha256=rx2g0zUIwAS-yd4cxEtvtsrhQ9eT5q_0Jz-PcJTiBNs,36114
|
|
151
151
|
bl_ui/properties_scene/__init__.pyi,sha256=Y4gg22or8aW5lgSwDb55eITNTyW4Rbw2IW97Bj9AiZM,12790
|
|
152
|
-
bl_ui/properties_texture/__init__.pyi,sha256=
|
|
152
|
+
bl_ui/properties_texture/__init__.pyi,sha256=11Vka3QEv1J0-b2iVtY4qR4bN3Uh6_bRrZzAiBPmcOI,21347
|
|
153
153
|
bl_ui/properties_view_layer/__init__.pyi,sha256=Eg2TKLQbdr2bgXX5vY4mRGAXBApOxtNAyUsImEMY-mo,9366
|
|
154
154
|
bl_ui/properties_workspace/__init__.pyi,sha256=bR6ctayOId2fcQkyXASYPN_o9I6z6QDffOFkuEDrWTA,3530
|
|
155
155
|
bl_ui/properties_world/__init__.pyi,sha256=A4jwr9ae3qEgSDM1d7t5149VslXs671_xBTzoa59n64,9316
|
|
@@ -165,7 +165,7 @@ bl_ui/space_node/__init__.pyi,sha256=ifxkh9zLLkcQaSJUrpOmOBKt8rODVQSJwcWr2G23TDk
|
|
|
165
165
|
bl_ui/space_outliner/__init__.pyi,sha256=jAmvcUR4suUyMgqKA5utgVW-8Y_YEiXgIWmS2gwafKs,8905
|
|
166
166
|
bl_ui/space_properties/__init__.pyi,sha256=hcjzXKyL6dCioVlVyOr39_HHoCnNmfwJe09RUa7kyUU,2783
|
|
167
167
|
bl_ui/space_sequencer/__init__.pyi,sha256=CtsyYZWB5gEjzSAtHKppECVUi3v5hu4lAyHEV6wz27E,57176
|
|
168
|
-
bl_ui/space_spreadsheet/__init__.pyi,sha256=
|
|
168
|
+
bl_ui/space_spreadsheet/__init__.pyi,sha256=CSQqmepKHsZh9u-KW3bQQlPEeyfpNxfs0sPmV-4OqoI,1748
|
|
169
169
|
bl_ui/space_statusbar/__init__.pyi,sha256=ZLHcv_gG9G4ThS5zTIdHQeXR-Q861FTtwkOzHCRX_tU,648
|
|
170
170
|
bl_ui/space_text/__init__.pyi,sha256=txnacT-bjKQBplDecXoKT03eXHeo6UnMghh3XMxnrQE,8962
|
|
171
171
|
bl_ui/space_time/__init__.pyi,sha256=iRBKmFMXO9UfsL7MpulaQgSzeWlN_jRXE1g-i3ryjrA,4846
|
|
@@ -240,8 +240,8 @@ bpy/ops/material/__init__.pyi,sha256=HOxwV36a5Fvquv6j8_sV0rM87QzuhHZxNEv-dkQN_0M
|
|
|
240
240
|
bpy/ops/mball/__init__.pyi,sha256=2Uy00doymjZPXpCpJV7l-eAbamoUZsnbNPzy2XjxM4U,4246
|
|
241
241
|
bpy/ops/mesh/__init__.pyi,sha256=0H37YuG2NVIgQOyBIO_Wcx5bePv_VIyUbvzk4ccM1dg,131865
|
|
242
242
|
bpy/ops/nla/__init__.pyi,sha256=7liq6OahpTd2-vdklwqzbUbBIwQRjwX0zn-cjRkdAFA,18580
|
|
243
|
-
bpy/ops/node/__init__.pyi,sha256=
|
|
244
|
-
bpy/ops/object/__init__.pyi,sha256=
|
|
243
|
+
bpy/ops/node/__init__.pyi,sha256=ANFRJ9pKLjbXvSxEb8mGlJ42Z4tivF-fNpn5SnbQ-_Y,65375
|
|
244
|
+
bpy/ops/object/__init__.pyi,sha256=gNWV7f4jVIa3fj--WkkLxSU5e0epVXiHklwcE97LvSw,171532
|
|
245
245
|
bpy/ops/outliner/__init__.pyi,sha256=k_VPujYUJ-6Xf8tfuBWNyaC71c1XC3JdA6s9djNbtVQ,28757
|
|
246
246
|
bpy/ops/paint/__init__.pyi,sha256=xUeYNnteMD0ZjXMW5Dk8zvdEkE4p6paimQNcJV9MHA8,38186
|
|
247
247
|
bpy/ops/paintcurve/__init__.pyi,sha256=jBRQid5k2YuDmTvgeVK9hs1QSN32pxD6OfewAaHp7Rs,3083
|
|
@@ -278,8 +278,8 @@ bpy/ops/world/__init__.pyi,sha256=K6POVPW0tvcb38MyPUBgy_ZWNZCZ5208Cb_1YNcqU5k,64
|
|
|
278
278
|
bpy/path/__init__.pyi,sha256=yGX45MUnn9fJYw32UWTsBQ646iN5DbbxfvnoDkREWvI,5537
|
|
279
279
|
bpy/props/__init__.pyi,sha256=-nYTsIHy-F58ADNh2IDPlVA0C0G7N4k7F4xWz6ap7wM,35841
|
|
280
280
|
bpy/stub_internal/__init__.pyi,sha256=h3K2LGZ8lcLY-Oo9ym-HEopjGScc4iTfpT1MU_6smTI,126
|
|
281
|
-
bpy/stub_internal/rna_enums/__init__.pyi,sha256=
|
|
282
|
-
bpy/types/__init__.pyi,sha256=
|
|
281
|
+
bpy/stub_internal/rna_enums/__init__.pyi,sha256=BUTDaIidK_e78x0jfwQcYTgFD8KfGghgBseKmw6EqNk,141460
|
|
282
|
+
bpy/types/__init__.pyi,sha256=zW1XJI0dfpUc0PZ2Kx_qv-ARAlXqtcYdg_pAxpnO1Bo,5815313
|
|
283
283
|
bpy/utils/__init__.pyi,sha256=eLZQI2EHAXaZQlYunovDoRa8QtR4CT8yPgygZhBYajk,15535
|
|
284
284
|
bpy/utils/previews/__init__.pyi,sha256=6tju9gKfoTYwJjnSZ54lys2MYRaKPnihHe5Vs6agoKA,2366
|
|
285
285
|
bpy/utils/units/__init__.pyi,sha256=zULS_4qRrtzpHLtSU-jfO2761J4WeYBZyK-BTlL4KG0,2671
|
|
@@ -325,7 +325,7 @@ gpu/select/__init__.pyi,sha256=u7L8-mg3F6PD60rvGcJ1CUehZTDaPSGtmXzs1LNKK7g,242
|
|
|
325
325
|
gpu/shader/__init__.pyi,sha256=Aoei9iUPACMDqBSqKG9cPAmZj_U3cwipQP08mxKCEKk,2347
|
|
326
326
|
gpu/state/__init__.pyi,sha256=STSK6tjpWGd_U8vWOLN1s9itbUQxh4gcPwrPIH2RxfY,4489
|
|
327
327
|
gpu/texture/__init__.pyi,sha256=eXL-ZQU-gsMFo_Yv6ShF_YjBQ-yPDLRZno-T3P59nhE,668
|
|
328
|
-
gpu/types/__init__.pyi,sha256=
|
|
328
|
+
gpu/types/__init__.pyi,sha256=yKJdUVNyzAlAX0nBDeWzv03kCgx0urzQGDnPtmCIbyw,29709
|
|
329
329
|
gpu_extras/__init__.pyi,sha256=XscwC-5DTPC0yc2HB_XMgvX61rT5Qs5RaImqNwR6c40,240
|
|
330
330
|
gpu_extras/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
331
331
|
gpu_extras/batch/__init__.pyi,sha256=0z8rIEm4SFuC-rUGyoOMU0L6i_TsaW5nJN9cGR6u40Y,1306
|
|
@@ -361,7 +361,7 @@ rna_prop_ui/__init__.pyi,sha256=E7Xr1GyLCWDiDnB_VSldrUVM6AzWKDvGGoWj3Hj7SZ8,1404
|
|
|
361
361
|
rna_prop_ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
362
362
|
rna_xml/__init__.pyi,sha256=E0_ajcifhpiiQJVaNKnAa2ju-w5Tg9-lk7IqhsPjrw4,652
|
|
363
363
|
rna_xml/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
364
|
-
fake_bpy_module-
|
|
365
|
-
fake_bpy_module-
|
|
366
|
-
fake_bpy_module-
|
|
367
|
-
fake_bpy_module-
|
|
364
|
+
fake_bpy_module-20250611.dist-info/METADATA,sha256=VmiBLSWSrwMuWVd4HsGVa4UuovGtTpA3VgoyfybJXwU,7429
|
|
365
|
+
fake_bpy_module-20250611.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
366
|
+
fake_bpy_module-20250611.dist-info/top_level.txt,sha256=SZm3DVRKif7dFSjYKiIIg3_7uqjIwRAwOnCIcT4hRNM,500
|
|
367
|
+
fake_bpy_module-20250611.dist-info/RECORD,,
|
gpu/types/__init__.pyi
CHANGED
|
@@ -1076,6 +1076,6 @@ class GPUVertFormat:
|
|
|
1076
1076
|
This is mainly useful for memory optimizations when you want to store values with
|
|
1077
1077
|
reduced precision. E.g. you can store a float in only 1 byte but it will be
|
|
1078
1078
|
converted to a normal 4 byte float when used.
|
|
1079
|
-
Possible values are FLOAT, INT
|
|
1079
|
+
Possible values are FLOAT, INT or INT_TO_FLOAT_UNIT.
|
|
1080
1080
|
:type fetch_mode: str
|
|
1081
1081
|
"""
|
|
File without changes
|
|
File without changes
|