fake-bpy-module 20250828__py3-none-any.whl → 20250829__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/node_add_menu/__init__.pyi +3 -0
- bpy/ops/poselib/__init__.pyi +21 -0
- bpy/stub_internal/rna_enums/__init__.pyi +10 -9
- bpy/types/__init__.pyi +191 -266
- {fake_bpy_module-20250828.dist-info → fake_bpy_module-20250829.dist-info}/METADATA +1 -1
- {fake_bpy_module-20250828.dist-info → fake_bpy_module-20250829.dist-info}/RECORD +9 -9
- freestyle/utils/__init__.pyi +1 -1
- {fake_bpy_module-20250828.dist-info → fake_bpy_module-20250829.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20250828.dist-info → fake_bpy_module-20250829.dist-info}/top_level.txt +0 -0
bl_ui/node_add_menu/__init__.pyi
CHANGED
|
@@ -46,6 +46,9 @@ def add_node_type_with_outputs(
|
|
|
46
46
|
def add_node_type_with_searchable_enum(
|
|
47
47
|
context, layout, node_idname, property_name, search_weight=0.0
|
|
48
48
|
) -> None: ...
|
|
49
|
+
def add_node_type_with_searchable_enum_socket(
|
|
50
|
+
context, layout, node_idname, socket_identifier, enum_names, search_weight=0.0
|
|
51
|
+
) -> None: ...
|
|
49
52
|
def add_repeat_zone(layout, label) -> None: ...
|
|
50
53
|
def add_simulation_zone(layout, label) -> None:
|
|
51
54
|
"""Add simulation zone to a menu."""
|
bpy/ops/poselib/__init__.pyi
CHANGED
|
@@ -2,12 +2,17 @@ import typing
|
|
|
2
2
|
import collections.abc
|
|
3
3
|
import typing_extensions
|
|
4
4
|
import numpy.typing as npt
|
|
5
|
+
import bpy.stub_internal.rna_enums
|
|
5
6
|
|
|
6
7
|
def apply_pose_asset(
|
|
7
8
|
execution_context: int | str | None = None,
|
|
8
9
|
undo: bool | None = None,
|
|
9
10
|
/,
|
|
10
11
|
*,
|
|
12
|
+
asset_library_type: bpy.stub_internal.rna_enums.AssetLibraryTypeItems
|
|
13
|
+
| None = "LOCAL",
|
|
14
|
+
asset_library_identifier: str = "",
|
|
15
|
+
relative_asset_identifier: str = "",
|
|
11
16
|
blend_factor: float | None = 1.0,
|
|
12
17
|
flipped: bool | None = False,
|
|
13
18
|
) -> None:
|
|
@@ -15,6 +20,12 @@ def apply_pose_asset(
|
|
|
15
20
|
|
|
16
21
|
:type execution_context: int | str | None
|
|
17
22
|
:type undo: bool | None
|
|
23
|
+
:param asset_library_type: Asset Library Type
|
|
24
|
+
:type asset_library_type: bpy.stub_internal.rna_enums.AssetLibraryTypeItems | None
|
|
25
|
+
:param asset_library_identifier: Asset Library Identifier
|
|
26
|
+
:type asset_library_identifier: str
|
|
27
|
+
:param relative_asset_identifier: Relative Asset Identifier
|
|
28
|
+
:type relative_asset_identifier: str
|
|
18
29
|
:param blend_factor: Blend Factor, Amount that the pose is applied on top of the existing poses. A negative value will subtract the pose instead of adding it
|
|
19
30
|
:type blend_factor: float | None
|
|
20
31
|
:param flipped: Apply Flipped, When enabled, applies the pose flipped over the X-axis
|
|
@@ -64,6 +75,10 @@ def blend_pose_asset(
|
|
|
64
75
|
undo: bool | None = None,
|
|
65
76
|
/,
|
|
66
77
|
*,
|
|
78
|
+
asset_library_type: bpy.stub_internal.rna_enums.AssetLibraryTypeItems
|
|
79
|
+
| None = "LOCAL",
|
|
80
|
+
asset_library_identifier: str = "",
|
|
81
|
+
relative_asset_identifier: str = "",
|
|
67
82
|
blend_factor: float | None = 0.0,
|
|
68
83
|
flipped: bool | None = False,
|
|
69
84
|
release_confirm: bool | None = False,
|
|
@@ -72,6 +87,12 @@ def blend_pose_asset(
|
|
|
72
87
|
|
|
73
88
|
:type execution_context: int | str | None
|
|
74
89
|
:type undo: bool | None
|
|
90
|
+
:param asset_library_type: Asset Library Type
|
|
91
|
+
:type asset_library_type: bpy.stub_internal.rna_enums.AssetLibraryTypeItems | None
|
|
92
|
+
:param asset_library_identifier: Asset Library Identifier
|
|
93
|
+
:type asset_library_identifier: str
|
|
94
|
+
:param relative_asset_identifier: Relative Asset Identifier
|
|
95
|
+
:type relative_asset_identifier: str
|
|
75
96
|
:param blend_factor: Blend Factor, Amount that the pose is applied on top of the existing poses. A negative value will subtract the pose instead of adding it
|
|
76
97
|
:type blend_factor: float | None
|
|
77
98
|
:param flipped: Apply Flipped, When enabled, applies the pose flipped over the X-axis
|
|
@@ -2078,15 +2078,16 @@ type NodeCompareOperationItems = typing.Literal[
|
|
|
2078
2078
|
"BRIGHTER", # Brighter.True when the first input is brighter.
|
|
2079
2079
|
"DARKER", # Darker.True when the first input is darker.
|
|
2080
2080
|
]
|
|
2081
|
-
type
|
|
2082
|
-
"
|
|
2083
|
-
"
|
|
2084
|
-
"
|
|
2085
|
-
|
|
2086
|
-
|
|
2087
|
-
"
|
|
2088
|
-
"
|
|
2089
|
-
"
|
|
2081
|
+
type NodeCompositorExtensionItems = typing.Literal[
|
|
2082
|
+
"CLIP", # Clip.Areas outside of the image are filled with zero.
|
|
2083
|
+
"EXTEND", # Extend.Areas outside of the image are filled with the closest boundary pixel in the image.
|
|
2084
|
+
"REPEAT", # Repeat.Areas outside of the image are filled with repetitions of the image.
|
|
2085
|
+
]
|
|
2086
|
+
type NodeCompositorInterpolationItems = typing.Literal[
|
|
2087
|
+
"NEAREST", # Nearest.Use Nearest interpolation.
|
|
2088
|
+
"BILINEAR", # Bilinear.Use Bilinear interpolation.
|
|
2089
|
+
"BICUBIC", # Bicubic.Use Cubic B-Spline interpolation.
|
|
2090
|
+
"ANISOTROPIC", # Anisotropic.Use Anisotropic interpolation.
|
|
2090
2091
|
]
|
|
2091
2092
|
type NodeFloatCompareItems = typing.Literal[
|
|
2092
2093
|
"LESS_THAN", # Less Than.True when the first input is smaller than second input.
|
bpy/types/__init__.pyi
CHANGED
|
@@ -3201,6 +3201,7 @@
|
|
|
3201
3201
|
* AssetShelf.bl_space_type
|
|
3202
3202
|
* AssetShelf.bl_options
|
|
3203
3203
|
* AssetShelf.bl_activate_operator
|
|
3204
|
+
* AssetShelf.bl_drag_operator
|
|
3204
3205
|
* AssetShelf.bl_default_preview_size
|
|
3205
3206
|
* AssetShelf.asset_library_reference
|
|
3206
3207
|
* AssetShelf.show_names
|
|
@@ -8314,6 +8315,7 @@ The USDHookExample
|
|
|
8314
8315
|
* AssetShelf.bl_space_type
|
|
8315
8316
|
* AssetShelf.bl_options
|
|
8316
8317
|
* AssetShelf.bl_activate_operator
|
|
8318
|
+
* AssetShelf.bl_drag_operator
|
|
8317
8319
|
* AssetShelf.bl_default_preview_size
|
|
8318
8320
|
* AssetShelf.asset_library_reference
|
|
8319
8321
|
* AssetShelf.show_names
|
|
@@ -9955,6 +9957,7 @@ The USDHookExample
|
|
|
9955
9957
|
* AssetShelf.bl_space_type
|
|
9956
9958
|
* AssetShelf.bl_options
|
|
9957
9959
|
* AssetShelf.bl_activate_operator
|
|
9960
|
+
* AssetShelf.bl_drag_operator
|
|
9958
9961
|
* AssetShelf.bl_default_preview_size
|
|
9959
9962
|
* AssetShelf.asset_library_reference
|
|
9960
9963
|
* AssetShelf.show_names
|
|
@@ -21152,6 +21155,7 @@ This example script prints the vertices and UVs for each polygon, assumes the ac
|
|
|
21152
21155
|
* AssetShelf.bl_space_type
|
|
21153
21156
|
* AssetShelf.bl_options
|
|
21154
21157
|
* AssetShelf.bl_activate_operator
|
|
21158
|
+
* AssetShelf.bl_drag_operator
|
|
21155
21159
|
* AssetShelf.bl_default_preview_size
|
|
21156
21160
|
* AssetShelf.asset_library_reference
|
|
21157
21161
|
* AssetShelf.show_names
|
|
@@ -24608,6 +24612,7 @@ from a search field, this can be done using bpy.types.Operator.invoke_search_pop
|
|
|
24608
24612
|
* AssetShelf.bl_space_type
|
|
24609
24613
|
* AssetShelf.bl_options
|
|
24610
24614
|
* AssetShelf.bl_activate_operator
|
|
24615
|
+
* AssetShelf.bl_drag_operator
|
|
24611
24616
|
* AssetShelf.bl_default_preview_size
|
|
24612
24617
|
* AssetShelf.asset_library_reference
|
|
24613
24618
|
* AssetShelf.show_names
|
|
@@ -58963,6 +58968,8 @@ at its creation, all editing in the original image's buffer is 'lost' in its cop
|
|
|
58963
58968
|
* CompositorNodeCombineColor.output_template
|
|
58964
58969
|
* CompositorNodeConvertColorSpace.input_template
|
|
58965
58970
|
* CompositorNodeConvertColorSpace.output_template
|
|
58971
|
+
* CompositorNodeConvolve.input_template
|
|
58972
|
+
* CompositorNodeConvolve.output_template
|
|
58966
58973
|
* CompositorNodeCornerPin.input_template
|
|
58967
58974
|
* CompositorNodeCornerPin.output_template
|
|
58968
58975
|
* CompositorNodeCrop.input_template
|
|
@@ -60819,6 +60826,105 @@ at its creation, all editing in the original image's buffer is 'lost' in its cop
|
|
|
60819
60826
|
:columns: 2
|
|
60820
60827
|
|
|
60821
60828
|
|
|
60829
|
+
--------------------
|
|
60830
|
+
|
|
60831
|
+
* bpy_struct.id_data
|
|
60832
|
+
* Node.type
|
|
60833
|
+
* Node.location
|
|
60834
|
+
* Node.location_absolute
|
|
60835
|
+
* Node.width
|
|
60836
|
+
* Node.height
|
|
60837
|
+
* Node.dimensions
|
|
60838
|
+
* Node.name
|
|
60839
|
+
* Node.label
|
|
60840
|
+
* Node.inputs
|
|
60841
|
+
* Node.outputs
|
|
60842
|
+
* Node.internal_links
|
|
60843
|
+
* Node.parent
|
|
60844
|
+
* Node.warning_propagation
|
|
60845
|
+
* Node.use_custom_color
|
|
60846
|
+
* Node.color
|
|
60847
|
+
* Node.color_tag
|
|
60848
|
+
* Node.select
|
|
60849
|
+
* Node.show_options
|
|
60850
|
+
* Node.show_preview
|
|
60851
|
+
* Node.hide
|
|
60852
|
+
* Node.mute
|
|
60853
|
+
* Node.show_texture
|
|
60854
|
+
* Node.bl_idname
|
|
60855
|
+
* Node.bl_label
|
|
60856
|
+
* Node.bl_description
|
|
60857
|
+
* Node.bl_icon
|
|
60858
|
+
* Node.bl_static_type
|
|
60859
|
+
* Node.bl_width_default
|
|
60860
|
+
* Node.bl_width_min
|
|
60861
|
+
* Node.bl_width_max
|
|
60862
|
+
* Node.bl_height_default
|
|
60863
|
+
* Node.bl_height_min
|
|
60864
|
+
* Node.bl_height_max
|
|
60865
|
+
|
|
60866
|
+
:columns: 2
|
|
60867
|
+
|
|
60868
|
+
|
|
60869
|
+
--------------------
|
|
60870
|
+
|
|
60871
|
+
* bpy_struct.as_pointer
|
|
60872
|
+
* bpy_struct.driver_add
|
|
60873
|
+
* bpy_struct.driver_remove
|
|
60874
|
+
* bpy_struct.get
|
|
60875
|
+
* bpy_struct.id_properties_clear
|
|
60876
|
+
* bpy_struct.id_properties_ensure
|
|
60877
|
+
* bpy_struct.id_properties_ui
|
|
60878
|
+
* bpy_struct.is_property_hidden
|
|
60879
|
+
* bpy_struct.is_property_overridable_library
|
|
60880
|
+
* bpy_struct.is_property_readonly
|
|
60881
|
+
* bpy_struct.is_property_set
|
|
60882
|
+
* bpy_struct.items
|
|
60883
|
+
* bpy_struct.keyframe_delete
|
|
60884
|
+
* bpy_struct.keyframe_insert
|
|
60885
|
+
* bpy_struct.keys
|
|
60886
|
+
* bpy_struct.path_from_id
|
|
60887
|
+
* bpy_struct.path_resolve
|
|
60888
|
+
* bpy_struct.pop
|
|
60889
|
+
* bpy_struct.property_overridable_library_set
|
|
60890
|
+
* bpy_struct.property_unset
|
|
60891
|
+
* bpy_struct.rna_ancestors
|
|
60892
|
+
* bpy_struct.type_recast
|
|
60893
|
+
* bpy_struct.values
|
|
60894
|
+
* Node.bl_system_properties_get
|
|
60895
|
+
* Node.socket_value_update
|
|
60896
|
+
* Node.is_registered_node_type
|
|
60897
|
+
* Node.poll
|
|
60898
|
+
* Node.poll_instance
|
|
60899
|
+
* Node.update
|
|
60900
|
+
* Node.insert_link
|
|
60901
|
+
* Node.init
|
|
60902
|
+
* Node.copy
|
|
60903
|
+
* Node.free
|
|
60904
|
+
* Node.draw_buttons
|
|
60905
|
+
* Node.draw_buttons_ext
|
|
60906
|
+
* Node.draw_label
|
|
60907
|
+
* Node.debug_zone_body_lazy_function_graph
|
|
60908
|
+
* Node.debug_zone_lazy_function_graph
|
|
60909
|
+
* Node.poll
|
|
60910
|
+
* Node.bl_rna_get_subclass
|
|
60911
|
+
* Node.bl_rna_get_subclass_py
|
|
60912
|
+
* NodeInternal.poll
|
|
60913
|
+
* NodeInternal.poll_instance
|
|
60914
|
+
* NodeInternal.update
|
|
60915
|
+
* NodeInternal.draw_buttons
|
|
60916
|
+
* NodeInternal.draw_buttons_ext
|
|
60917
|
+
* NodeInternal.bl_rna_get_subclass
|
|
60918
|
+
* NodeInternal.bl_rna_get_subclass_py
|
|
60919
|
+
* CompositorNode.tag_need_exec
|
|
60920
|
+
* CompositorNode.poll
|
|
60921
|
+
* CompositorNode.update
|
|
60922
|
+
* CompositorNode.bl_rna_get_subclass
|
|
60923
|
+
* CompositorNode.bl_rna_get_subclass_py
|
|
60924
|
+
|
|
60925
|
+
:columns: 2
|
|
60926
|
+
|
|
60927
|
+
|
|
60822
60928
|
--------------------
|
|
60823
60929
|
|
|
60824
60930
|
* bpy_struct.id_data
|
|
@@ -62646,6 +62752,7 @@ at its creation, all editing in the original image's buffer is 'lost' in its cop
|
|
|
62646
62752
|
* AssetShelf.bl_space_type
|
|
62647
62753
|
* AssetShelf.bl_options
|
|
62648
62754
|
* AssetShelf.bl_activate_operator
|
|
62755
|
+
* AssetShelf.bl_drag_operator
|
|
62649
62756
|
* AssetShelf.bl_default_preview_size
|
|
62650
62757
|
* AssetShelf.asset_library_reference
|
|
62651
62758
|
* AssetShelf.show_names
|
|
@@ -74121,6 +74228,7 @@ example of how to create/use filtering/reordering callbacks.
|
|
|
74121
74228
|
* AssetShelf.bl_space_type
|
|
74122
74229
|
* AssetShelf.bl_options
|
|
74123
74230
|
* AssetShelf.bl_activate_operator
|
|
74231
|
+
* AssetShelf.bl_drag_operator
|
|
74124
74232
|
* AssetShelf.bl_default_preview_size
|
|
74125
74233
|
* AssetShelf.asset_library_reference
|
|
74126
74234
|
* AssetShelf.show_names
|
|
@@ -75024,6 +75132,7 @@ example of how to create/use filtering/reordering callbacks.
|
|
|
75024
75132
|
* AssetShelf.bl_space_type
|
|
75025
75133
|
* AssetShelf.bl_options
|
|
75026
75134
|
* AssetShelf.bl_activate_operator
|
|
75135
|
+
* AssetShelf.bl_drag_operator
|
|
75027
75136
|
* AssetShelf.bl_default_preview_size
|
|
75028
75137
|
* AssetShelf.asset_library_reference
|
|
75029
75138
|
* AssetShelf.show_names
|
|
@@ -75443,6 +75552,7 @@ example of how to create/use filtering/reordering callbacks.
|
|
|
75443
75552
|
* AssetShelf.bl_space_type
|
|
75444
75553
|
* AssetShelf.bl_options
|
|
75445
75554
|
* AssetShelf.bl_activate_operator
|
|
75555
|
+
* AssetShelf.bl_drag_operator
|
|
75446
75556
|
* AssetShelf.bl_default_preview_size
|
|
75447
75557
|
* AssetShelf.asset_library_reference
|
|
75448
75558
|
* AssetShelf.show_names
|
|
@@ -84302,6 +84412,7 @@ Menu.poll function.
|
|
|
84302
84412
|
* AssetShelf.bl_space_type
|
|
84303
84413
|
* AssetShelf.bl_options
|
|
84304
84414
|
* AssetShelf.bl_activate_operator
|
|
84415
|
+
* AssetShelf.bl_drag_operator
|
|
84305
84416
|
* AssetShelf.bl_default_preview_size
|
|
84306
84417
|
* AssetShelf.asset_library_reference
|
|
84307
84418
|
* AssetShelf.show_names
|
|
@@ -91611,6 +91722,7 @@ Operator.draw method for layout and display.
|
|
|
91611
91722
|
* AssetShelf.bl_space_type
|
|
91612
91723
|
* AssetShelf.bl_options
|
|
91613
91724
|
* AssetShelf.bl_activate_operator
|
|
91725
|
+
* AssetShelf.bl_drag_operator
|
|
91614
91726
|
* AssetShelf.bl_default_preview_size
|
|
91615
91727
|
* AssetShelf.asset_library_reference
|
|
91616
91728
|
* AssetShelf.show_names
|
|
@@ -102220,6 +102332,7 @@ Operator.draw method for layout and display.
|
|
|
102220
102332
|
* AssetShelf.bl_space_type
|
|
102221
102333
|
* AssetShelf.bl_options
|
|
102222
102334
|
* AssetShelf.bl_activate_operator
|
|
102335
|
+
* AssetShelf.bl_drag_operator
|
|
102223
102336
|
* AssetShelf.bl_default_preview_size
|
|
102224
102337
|
* AssetShelf.asset_library_reference
|
|
102225
102338
|
* AssetShelf.show_names
|
|
@@ -127294,6 +127407,12 @@ class AssetShelf(bpy_struct):
|
|
|
127294
127407
|
:type: int
|
|
127295
127408
|
"""
|
|
127296
127409
|
|
|
127410
|
+
bl_drag_operator: str
|
|
127411
|
+
""" Operator to call when dragging an item with asset reference properties
|
|
127412
|
+
|
|
127413
|
+
:type: str
|
|
127414
|
+
"""
|
|
127415
|
+
|
|
127297
127416
|
bl_idname: str
|
|
127298
127417
|
""" If this is set, the asset gets a custom ID, otherwise it takes the name of the class used to define the asset (for example, if the class name is "OBJECT_AST_hello", and bl_idname is not set by the script, then bl_idname = "OBJECT_AST_hello")
|
|
127299
127418
|
|
|
@@ -136686,14 +136805,6 @@ class CompositorNodeBilateralblur(CompositorNode, NodeInternal, Node, bpy_struct
|
|
|
136686
136805
|
class CompositorNodeBlur(CompositorNode, NodeInternal, Node, bpy_struct):
|
|
136687
136806
|
"""Blur an image, using several blur modes"""
|
|
136688
136807
|
|
|
136689
|
-
filter_type: typing.Literal[
|
|
136690
|
-
"FLAT", "TENT", "QUAD", "CUBIC", "GAUSS", "FAST_GAUSS", "CATROM", "MITCH"
|
|
136691
|
-
]
|
|
136692
|
-
"""
|
|
136693
|
-
|
|
136694
|
-
:type: typing.Literal['FLAT','TENT','QUAD','CUBIC','GAUSS','FAST_GAUSS','CATROM','MITCH']
|
|
136695
|
-
"""
|
|
136696
|
-
|
|
136697
136808
|
@classmethod
|
|
136698
136809
|
def is_registered_node_type(cls) -> bool:
|
|
136699
136810
|
"""True if a registered node type
|
|
@@ -136886,12 +136997,6 @@ class CompositorNodeBokehImage(CompositorNode, NodeInternal, Node, bpy_struct):
|
|
|
136886
136997
|
class CompositorNodeBoxMask(CompositorNode, NodeInternal, Node, bpy_struct):
|
|
136887
136998
|
"""Create rectangular mask suitable for use as a simple matte"""
|
|
136888
136999
|
|
|
136889
|
-
mask_type: typing.Literal["ADD", "SUBTRACT", "MULTIPLY", "NOT"]
|
|
136890
|
-
"""
|
|
136891
|
-
|
|
136892
|
-
:type: typing.Literal['ADD','SUBTRACT','MULTIPLY','NOT']
|
|
136893
|
-
"""
|
|
136894
|
-
|
|
136895
137000
|
@classmethod
|
|
136896
137001
|
def is_registered_node_type(cls) -> bool:
|
|
136897
137002
|
"""True if a registered node type
|
|
@@ -137869,26 +137974,72 @@ class CompositorNodeConvertColorSpace(CompositorNode, NodeInternal, Node, bpy_st
|
|
|
137869
137974
|
:rtype: typing.Any
|
|
137870
137975
|
"""
|
|
137871
137976
|
|
|
137872
|
-
class
|
|
137873
|
-
"""
|
|
137977
|
+
class CompositorNodeConvolve(CompositorNode, NodeInternal, Node, bpy_struct):
|
|
137978
|
+
"""Convolves an image with a kernel"""
|
|
137874
137979
|
|
|
137875
|
-
|
|
137876
|
-
|
|
137980
|
+
@classmethod
|
|
137981
|
+
def is_registered_node_type(cls) -> bool:
|
|
137982
|
+
"""True if a registered node type
|
|
137877
137983
|
|
|
137878
|
-
|
|
137879
|
-
|
|
137984
|
+
:return: Result
|
|
137985
|
+
:rtype: bool
|
|
137986
|
+
"""
|
|
137880
137987
|
|
|
137881
|
-
|
|
137882
|
-
|
|
137988
|
+
@classmethod
|
|
137989
|
+
def input_template(cls, index: int | None) -> NodeInternalSocketTemplate:
|
|
137990
|
+
"""Input socket template
|
|
137883
137991
|
|
|
137884
|
-
|
|
137885
|
-
|
|
137992
|
+
:param index: Index
|
|
137993
|
+
:type index: int | None
|
|
137994
|
+
:return: result
|
|
137995
|
+
:rtype: NodeInternalSocketTemplate
|
|
137996
|
+
"""
|
|
137997
|
+
|
|
137998
|
+
@classmethod
|
|
137999
|
+
def output_template(cls, index: int | None) -> NodeInternalSocketTemplate:
|
|
138000
|
+
"""Output socket template
|
|
137886
138001
|
|
|
137887
|
-
|
|
137888
|
-
|
|
138002
|
+
:param index: Index
|
|
138003
|
+
:type index: int | None
|
|
138004
|
+
:return: result
|
|
138005
|
+
:rtype: NodeInternalSocketTemplate
|
|
138006
|
+
"""
|
|
137889
138007
|
|
|
137890
|
-
:
|
|
137891
|
-
|
|
138008
|
+
def update(self) -> None: ...
|
|
138009
|
+
@classmethod
|
|
138010
|
+
def bl_rna_get_subclass(
|
|
138011
|
+
cls,
|
|
138012
|
+
id: str | None,
|
|
138013
|
+
default=None,
|
|
138014
|
+
/,
|
|
138015
|
+
) -> Struct:
|
|
138016
|
+
"""
|
|
138017
|
+
|
|
138018
|
+
:param id: The RNA type identifier.
|
|
138019
|
+
:type id: str | None
|
|
138020
|
+
:param default:
|
|
138021
|
+
:return: The RNA type or default when not found.
|
|
138022
|
+
:rtype: Struct
|
|
138023
|
+
"""
|
|
138024
|
+
|
|
138025
|
+
@classmethod
|
|
138026
|
+
def bl_rna_get_subclass_py(
|
|
138027
|
+
cls,
|
|
138028
|
+
id: str | None,
|
|
138029
|
+
default=None,
|
|
138030
|
+
/,
|
|
138031
|
+
) -> typing.Any:
|
|
138032
|
+
"""
|
|
138033
|
+
|
|
138034
|
+
:param id: The RNA type identifier.
|
|
138035
|
+
:type id: str | None
|
|
138036
|
+
:param default:
|
|
138037
|
+
:return: The class or default when not found.
|
|
138038
|
+
:rtype: typing.Any
|
|
138039
|
+
"""
|
|
138040
|
+
|
|
138041
|
+
class CompositorNodeCornerPin(CompositorNode, NodeInternal, Node, bpy_struct):
|
|
138042
|
+
"""Plane warp transformation using explicit corner values"""
|
|
137892
138043
|
|
|
137893
138044
|
@classmethod
|
|
137894
138045
|
def is_registered_node_type(cls) -> bool:
|
|
@@ -138550,18 +138701,6 @@ class CompositorNodeDefocus(CompositorNode, NodeInternal, Node, bpy_struct):
|
|
|
138550
138701
|
class CompositorNodeDenoise(CompositorNode, NodeInternal, Node, bpy_struct):
|
|
138551
138702
|
"""Denoise renders from Cycles and other ray tracing renderers"""
|
|
138552
138703
|
|
|
138553
|
-
prefilter: typing.Literal["NONE", "FAST", "ACCURATE"]
|
|
138554
|
-
""" Denoising prefilter
|
|
138555
|
-
|
|
138556
|
-
:type: typing.Literal['NONE','FAST','ACCURATE']
|
|
138557
|
-
"""
|
|
138558
|
-
|
|
138559
|
-
quality: typing.Literal["FOLLOW_SCENE", "HIGH", "BALANCED", "FAST"]
|
|
138560
|
-
""" Denoising quality
|
|
138561
|
-
|
|
138562
|
-
:type: typing.Literal['FOLLOW_SCENE','HIGH','BALANCED','FAST']
|
|
138563
|
-
"""
|
|
138564
|
-
|
|
138565
138704
|
@classmethod
|
|
138566
138705
|
def is_registered_node_type(cls) -> bool:
|
|
138567
138706
|
"""True if a registered node type
|
|
@@ -138754,18 +138893,6 @@ class CompositorNodeDiffMatte(CompositorNode, NodeInternal, Node, bpy_struct):
|
|
|
138754
138893
|
class CompositorNodeDilateErode(CompositorNode, NodeInternal, Node, bpy_struct):
|
|
138755
138894
|
"""Expand and shrink masks"""
|
|
138756
138895
|
|
|
138757
|
-
falloff: bpy.stub_internal.rna_enums.ProportionalFalloffCurveOnlyItems
|
|
138758
|
-
""" Falloff type of the feather
|
|
138759
|
-
|
|
138760
|
-
:type: bpy.stub_internal.rna_enums.ProportionalFalloffCurveOnlyItems
|
|
138761
|
-
"""
|
|
138762
|
-
|
|
138763
|
-
mode: typing.Literal["STEP", "THRESHOLD", "DISTANCE", "FEATHER"]
|
|
138764
|
-
""" Growing/shrinking mode
|
|
138765
|
-
|
|
138766
|
-
:type: typing.Literal['STEP','THRESHOLD','DISTANCE','FEATHER']
|
|
138767
|
-
"""
|
|
138768
|
-
|
|
138769
138896
|
@classmethod
|
|
138770
138897
|
def is_registered_node_type(cls) -> bool:
|
|
138771
138898
|
"""True if a registered node type
|
|
@@ -138830,24 +138957,6 @@ class CompositorNodeDilateErode(CompositorNode, NodeInternal, Node, bpy_struct):
|
|
|
138830
138957
|
class CompositorNodeDisplace(CompositorNode, NodeInternal, Node, bpy_struct):
|
|
138831
138958
|
"""Displace pixel position using an offset vector"""
|
|
138832
138959
|
|
|
138833
|
-
extension_x: typing.Literal["CLIP", "EXTEND", "REPEAT"]
|
|
138834
|
-
""" The extension mode applied to the X axis
|
|
138835
|
-
|
|
138836
|
-
:type: typing.Literal['CLIP','EXTEND','REPEAT']
|
|
138837
|
-
"""
|
|
138838
|
-
|
|
138839
|
-
extension_y: typing.Literal["CLIP", "EXTEND", "REPEAT"]
|
|
138840
|
-
""" The extension mode applied to the Y axis
|
|
138841
|
-
|
|
138842
|
-
:type: typing.Literal['CLIP','EXTEND','REPEAT']
|
|
138843
|
-
"""
|
|
138844
|
-
|
|
138845
|
-
interpolation: typing.Literal["NEAREST", "BILINEAR", "BICUBIC", "ANISOTROPIC"]
|
|
138846
|
-
""" Interpolation method
|
|
138847
|
-
|
|
138848
|
-
:type: typing.Literal['NEAREST','BILINEAR','BICUBIC','ANISOTROPIC']
|
|
138849
|
-
"""
|
|
138850
|
-
|
|
138851
138960
|
@classmethod
|
|
138852
138961
|
def is_registered_node_type(cls) -> bool:
|
|
138853
138962
|
"""True if a registered node type
|
|
@@ -139058,12 +139167,6 @@ class CompositorNodeDoubleEdgeMask(CompositorNode, NodeInternal, Node, bpy_struc
|
|
|
139058
139167
|
class CompositorNodeEllipseMask(CompositorNode, NodeInternal, Node, bpy_struct):
|
|
139059
139168
|
"""Create elliptical mask suitable for use as a simple matte or vignette mask"""
|
|
139060
139169
|
|
|
139061
|
-
mask_type: typing.Literal["ADD", "SUBTRACT", "MULTIPLY", "NOT"]
|
|
139062
|
-
"""
|
|
139063
|
-
|
|
139064
|
-
:type: typing.Literal['ADD','SUBTRACT','MULTIPLY','NOT']
|
|
139065
|
-
"""
|
|
139066
|
-
|
|
139067
139170
|
@classmethod
|
|
139068
139171
|
def is_registered_node_type(cls) -> bool:
|
|
139069
139172
|
"""True if a registered node type
|
|
@@ -139192,12 +139295,6 @@ class CompositorNodeExposure(CompositorNode, NodeInternal, Node, bpy_struct):
|
|
|
139192
139295
|
class CompositorNodeFilter(CompositorNode, NodeInternal, Node, bpy_struct):
|
|
139193
139296
|
"""Apply common image enhancement filters"""
|
|
139194
139297
|
|
|
139195
|
-
filter_type: bpy.stub_internal.rna_enums.NodeFilterItems
|
|
139196
|
-
"""
|
|
139197
|
-
|
|
139198
|
-
:type: bpy.stub_internal.rna_enums.NodeFilterItems
|
|
139199
|
-
"""
|
|
139200
|
-
|
|
139201
139298
|
@classmethod
|
|
139202
139299
|
def is_registered_node_type(cls) -> bool:
|
|
139203
139300
|
"""True if a registered node type
|
|
@@ -139388,20 +139485,6 @@ class CompositorNodeGamma(CompositorNode, NodeInternal, Node, bpy_struct):
|
|
|
139388
139485
|
class CompositorNodeGlare(CompositorNode, NodeInternal, Node, bpy_struct):
|
|
139389
139486
|
"""Add lens flares, fog and glows around bright parts of the image"""
|
|
139390
139487
|
|
|
139391
|
-
glare_type: typing.Literal[
|
|
139392
|
-
"BLOOM", "GHOSTS", "STREAKS", "FOG_GLOW", "SIMPLE_STAR", "SUN_BEAMS"
|
|
139393
|
-
]
|
|
139394
|
-
"""
|
|
139395
|
-
|
|
139396
|
-
:type: typing.Literal['BLOOM','GHOSTS','STREAKS','FOG_GLOW','SIMPLE_STAR','SUN_BEAMS']
|
|
139397
|
-
"""
|
|
139398
|
-
|
|
139399
|
-
quality: typing.Literal["HIGH", "MEDIUM", "LOW"]
|
|
139400
|
-
""" If not set to high quality, the effect will be applied to a low-res copy of the source image
|
|
139401
|
-
|
|
139402
|
-
:type: typing.Literal['HIGH','MEDIUM','LOW']
|
|
139403
|
-
"""
|
|
139404
|
-
|
|
139405
139488
|
@classmethod
|
|
139406
139489
|
def is_registered_node_type(cls) -> bool:
|
|
139407
139490
|
"""True if a registered node type
|
|
@@ -140112,12 +140195,6 @@ class CompositorNodeInvert(CompositorNode, NodeInternal, Node, bpy_struct):
|
|
|
140112
140195
|
class CompositorNodeKeying(CompositorNode, NodeInternal, Node, bpy_struct):
|
|
140113
140196
|
"""Perform both chroma keying (to remove the backdrop) and despill (to correct color cast from the backdrop)"""
|
|
140114
140197
|
|
|
140115
|
-
feather_falloff: bpy.stub_internal.rna_enums.ProportionalFalloffCurveOnlyItems
|
|
140116
|
-
""" Falloff type of the feather
|
|
140117
|
-
|
|
140118
|
-
:type: bpy.stub_internal.rna_enums.ProportionalFalloffCurveOnlyItems
|
|
140119
|
-
"""
|
|
140120
|
-
|
|
140121
140198
|
@classmethod
|
|
140122
140199
|
def is_registered_node_type(cls) -> bool:
|
|
140123
140200
|
"""True if a registered node type
|
|
@@ -140258,12 +140335,6 @@ class CompositorNodeKeyingScreen(CompositorNode, NodeInternal, Node, bpy_struct)
|
|
|
140258
140335
|
class CompositorNodeKuwahara(CompositorNode, NodeInternal, Node, bpy_struct):
|
|
140259
140336
|
"""Apply smoothing filter that preserves edges, for stylized and painterly effects"""
|
|
140260
140337
|
|
|
140261
|
-
variation: typing.Literal["CLASSIC", "ANISOTROPIC"]
|
|
140262
|
-
""" Variation of Kuwahara filter to use
|
|
140263
|
-
|
|
140264
|
-
:type: typing.Literal['CLASSIC','ANISOTROPIC']
|
|
140265
|
-
"""
|
|
140266
|
-
|
|
140267
140338
|
@classmethod
|
|
140268
140339
|
def is_registered_node_type(cls) -> bool:
|
|
140269
140340
|
"""True if a registered node type
|
|
@@ -140328,12 +140399,6 @@ class CompositorNodeKuwahara(CompositorNode, NodeInternal, Node, bpy_struct):
|
|
|
140328
140399
|
class CompositorNodeLensdist(CompositorNode, NodeInternal, Node, bpy_struct):
|
|
140329
140400
|
"""Simulate distortion and dispersion from camera lenses"""
|
|
140330
140401
|
|
|
140331
|
-
distortion_type: typing.Literal["RADIAL", "HORIZONTAL"]
|
|
140332
|
-
"""
|
|
140333
|
-
|
|
140334
|
-
:type: typing.Literal['RADIAL','HORIZONTAL']
|
|
140335
|
-
"""
|
|
140336
|
-
|
|
140337
140402
|
@classmethod
|
|
140338
140403
|
def is_registered_node_type(cls) -> bool:
|
|
140339
140404
|
"""True if a registered node type
|
|
@@ -140398,12 +140463,6 @@ class CompositorNodeLensdist(CompositorNode, NodeInternal, Node, bpy_struct):
|
|
|
140398
140463
|
class CompositorNodeLevels(CompositorNode, NodeInternal, Node, bpy_struct):
|
|
140399
140464
|
"""Compute average and standard deviation of pixel values"""
|
|
140400
140465
|
|
|
140401
|
-
channel: typing.Literal["COMBINED_RGB", "RED", "GREEN", "BLUE", "LUMINANCE"]
|
|
140402
|
-
"""
|
|
140403
|
-
|
|
140404
|
-
:type: typing.Literal['COMBINED_RGB','RED','GREEN','BLUE','LUMINANCE']
|
|
140405
|
-
"""
|
|
140406
|
-
|
|
140407
140466
|
@classmethod
|
|
140408
140467
|
def is_registered_node_type(cls) -> bool:
|
|
140409
140468
|
"""True if a registered node type
|
|
@@ -140532,24 +140591,6 @@ class CompositorNodeLumaMatte(CompositorNode, NodeInternal, Node, bpy_struct):
|
|
|
140532
140591
|
class CompositorNodeMapUV(CompositorNode, NodeInternal, Node, bpy_struct):
|
|
140533
140592
|
"""Map a texture using UV coordinates, to apply a texture to objects in compositing"""
|
|
140534
140593
|
|
|
140535
|
-
extension_x: typing.Literal["CLIP", "EXTEND", "REPEAT"]
|
|
140536
|
-
""" The extension mode applied to the X axis
|
|
140537
|
-
|
|
140538
|
-
:type: typing.Literal['CLIP','EXTEND','REPEAT']
|
|
140539
|
-
"""
|
|
140540
|
-
|
|
140541
|
-
extension_y: typing.Literal["CLIP", "EXTEND", "REPEAT"]
|
|
140542
|
-
""" The extension mode applied to the Y axis
|
|
140543
|
-
|
|
140544
|
-
:type: typing.Literal['CLIP','EXTEND','REPEAT']
|
|
140545
|
-
"""
|
|
140546
|
-
|
|
140547
|
-
interpolation: typing.Literal["NEAREST", "BILINEAR", "BICUBIC", "ANISOTROPIC"]
|
|
140548
|
-
""" Interpolation method
|
|
140549
|
-
|
|
140550
|
-
:type: typing.Literal['NEAREST','BILINEAR','BICUBIC','ANISOTROPIC']
|
|
140551
|
-
"""
|
|
140552
|
-
|
|
140553
140594
|
@classmethod
|
|
140554
140595
|
def is_registered_node_type(cls) -> bool:
|
|
140555
140596
|
"""True if a registered node type
|
|
@@ -140620,12 +140661,6 @@ class CompositorNodeMask(CompositorNode, NodeInternal, Node, bpy_struct):
|
|
|
140620
140661
|
:type: Mask | None
|
|
140621
140662
|
"""
|
|
140622
140663
|
|
|
140623
|
-
size_source: typing.Literal["SCENE", "FIXED", "FIXED_SCENE"]
|
|
140624
|
-
""" Where to get the mask size from for aspect/size information
|
|
140625
|
-
|
|
140626
|
-
:type: typing.Literal['SCENE','FIXED','FIXED_SCENE']
|
|
140627
|
-
"""
|
|
140628
|
-
|
|
140629
140664
|
@classmethod
|
|
140630
140665
|
def is_registered_node_type(cls) -> bool:
|
|
140631
140666
|
"""True if a registered node type
|
|
@@ -140766,12 +140801,6 @@ class CompositorNodeMovieDistortion(CompositorNode, NodeInternal, Node, bpy_stru
|
|
|
140766
140801
|
:type: MovieClip | None
|
|
140767
140802
|
"""
|
|
140768
140803
|
|
|
140769
|
-
distortion_type: typing.Literal["UNDISTORT", "DISTORT"]
|
|
140770
|
-
""" Distortion to use to filter image
|
|
140771
|
-
|
|
140772
|
-
:type: typing.Literal['UNDISTORT','DISTORT']
|
|
140773
|
-
"""
|
|
140774
|
-
|
|
140775
140804
|
@classmethod
|
|
140776
140805
|
def is_registered_node_type(cls) -> bool:
|
|
140777
140806
|
"""True if a registered node type
|
|
@@ -141623,24 +141652,6 @@ class CompositorNodeRelativeToPixel(CompositorNode, NodeInternal, Node, bpy_stru
|
|
|
141623
141652
|
class CompositorNodeRotate(CompositorNode, NodeInternal, Node, bpy_struct):
|
|
141624
141653
|
"""Rotate image by specified angle"""
|
|
141625
141654
|
|
|
141626
|
-
extension_x: typing.Literal["CLIP", "EXTEND", "REPEAT"]
|
|
141627
|
-
""" The extension mode applied to the X axis
|
|
141628
|
-
|
|
141629
|
-
:type: typing.Literal['CLIP','EXTEND','REPEAT']
|
|
141630
|
-
"""
|
|
141631
|
-
|
|
141632
|
-
extension_y: typing.Literal["CLIP", "EXTEND", "REPEAT"]
|
|
141633
|
-
""" The extension mode applied to the Y axis
|
|
141634
|
-
|
|
141635
|
-
:type: typing.Literal['CLIP','EXTEND','REPEAT']
|
|
141636
|
-
"""
|
|
141637
|
-
|
|
141638
|
-
interpolation: typing.Literal["NEAREST", "BILINEAR", "BICUBIC", "ANISOTROPIC"]
|
|
141639
|
-
""" Interpolation method
|
|
141640
|
-
|
|
141641
|
-
:type: typing.Literal['NEAREST','BILINEAR','BICUBIC','ANISOTROPIC']
|
|
141642
|
-
"""
|
|
141643
|
-
|
|
141644
141655
|
@classmethod
|
|
141645
141656
|
def is_registered_node_type(cls) -> bool:
|
|
141646
141657
|
"""True if a registered node type
|
|
@@ -141705,36 +141716,6 @@ class CompositorNodeRotate(CompositorNode, NodeInternal, Node, bpy_struct):
|
|
|
141705
141716
|
class CompositorNodeScale(CompositorNode, NodeInternal, Node, bpy_struct):
|
|
141706
141717
|
"""Change the size of the image"""
|
|
141707
141718
|
|
|
141708
|
-
extension_x: typing.Literal["CLIP", "EXTEND", "REPEAT"]
|
|
141709
|
-
""" The extension mode applied to the X axis
|
|
141710
|
-
|
|
141711
|
-
:type: typing.Literal['CLIP','EXTEND','REPEAT']
|
|
141712
|
-
"""
|
|
141713
|
-
|
|
141714
|
-
extension_y: typing.Literal["CLIP", "EXTEND", "REPEAT"]
|
|
141715
|
-
""" The extension mode applied to the Y axis
|
|
141716
|
-
|
|
141717
|
-
:type: typing.Literal['CLIP','EXTEND','REPEAT']
|
|
141718
|
-
"""
|
|
141719
|
-
|
|
141720
|
-
frame_method: typing.Literal["STRETCH", "FIT", "CROP"]
|
|
141721
|
-
""" How the image fits in the camera frame
|
|
141722
|
-
|
|
141723
|
-
:type: typing.Literal['STRETCH','FIT','CROP']
|
|
141724
|
-
"""
|
|
141725
|
-
|
|
141726
|
-
interpolation: typing.Literal["NEAREST", "BILINEAR", "BICUBIC", "ANISOTROPIC"]
|
|
141727
|
-
""" Interpolation method
|
|
141728
|
-
|
|
141729
|
-
:type: typing.Literal['NEAREST','BILINEAR','BICUBIC','ANISOTROPIC']
|
|
141730
|
-
"""
|
|
141731
|
-
|
|
141732
|
-
space: typing.Literal["RELATIVE", "ABSOLUTE", "SCENE_SIZE", "RENDER_SIZE"]
|
|
141733
|
-
""" Coordinate space to scale relative to
|
|
141734
|
-
|
|
141735
|
-
:type: typing.Literal['RELATIVE','ABSOLUTE','SCENE_SIZE','RENDER_SIZE']
|
|
141736
|
-
"""
|
|
141737
|
-
|
|
141738
141719
|
@classmethod
|
|
141739
141720
|
def is_registered_node_type(cls) -> bool:
|
|
141740
141721
|
"""True if a registered node type
|
|
@@ -142263,12 +142244,6 @@ class CompositorNodeSetAlpha(CompositorNode, NodeInternal, Node, bpy_struct):
|
|
|
142263
142244
|
class CompositorNodeSplit(CompositorNode, NodeInternal, Node, bpy_struct):
|
|
142264
142245
|
"""Combine two images for side-by-side display. Typically used in combination with a Viewer node"""
|
|
142265
142246
|
|
|
142266
|
-
axis: bpy.stub_internal.rna_enums.AxisXyItems
|
|
142267
|
-
"""
|
|
142268
|
-
|
|
142269
|
-
:type: bpy.stub_internal.rna_enums.AxisXyItems
|
|
142270
|
-
"""
|
|
142271
|
-
|
|
142272
142247
|
@classmethod
|
|
142273
142248
|
def is_registered_node_type(cls) -> bool:
|
|
142274
142249
|
"""True if a registered node type
|
|
@@ -142339,12 +142314,6 @@ class CompositorNodeStabilize(CompositorNode, NodeInternal, Node, bpy_struct):
|
|
|
142339
142314
|
:type: MovieClip | None
|
|
142340
142315
|
"""
|
|
142341
142316
|
|
|
142342
|
-
filter_type: typing.Literal["NEAREST", "BILINEAR", "BICUBIC", "ANISOTROPIC"]
|
|
142343
|
-
""" Method to use to filter stabilization
|
|
142344
|
-
|
|
142345
|
-
:type: typing.Literal['NEAREST','BILINEAR','BICUBIC','ANISOTROPIC']
|
|
142346
|
-
"""
|
|
142347
|
-
|
|
142348
142317
|
@classmethod
|
|
142349
142318
|
def is_registered_node_type(cls) -> bool:
|
|
142350
142319
|
"""True if a registered node type
|
|
@@ -142607,12 +142576,6 @@ class CompositorNodeTime(CompositorNode, NodeInternal, Node, bpy_struct):
|
|
|
142607
142576
|
class CompositorNodeTonemap(CompositorNode, NodeInternal, Node, bpy_struct):
|
|
142608
142577
|
"""Map one set of colors to another in order to approximate the appearance of high dynamic range"""
|
|
142609
142578
|
|
|
142610
|
-
tonemap_type: typing.Literal["RD_PHOTORECEPTOR", "RH_SIMPLE"]
|
|
142611
|
-
"""
|
|
142612
|
-
|
|
142613
|
-
:type: typing.Literal['RD_PHOTORECEPTOR','RH_SIMPLE']
|
|
142614
|
-
"""
|
|
142615
|
-
|
|
142616
142579
|
@classmethod
|
|
142617
142580
|
def is_registered_node_type(cls) -> bool:
|
|
142618
142581
|
"""True if a registered node type
|
|
@@ -142683,20 +142646,6 @@ class CompositorNodeTrackPos(CompositorNode, NodeInternal, Node, bpy_struct):
|
|
|
142683
142646
|
:type: MovieClip | None
|
|
142684
142647
|
"""
|
|
142685
142648
|
|
|
142686
|
-
frame_relative: int
|
|
142687
|
-
""" Frame to be used for relative position
|
|
142688
|
-
|
|
142689
|
-
:type: int
|
|
142690
|
-
"""
|
|
142691
|
-
|
|
142692
|
-
position: typing.Literal[
|
|
142693
|
-
"ABSOLUTE", "RELATIVE_START", "RELATIVE_FRAME", "ABSOLUTE_FRAME"
|
|
142694
|
-
]
|
|
142695
|
-
""" Which marker position to use for output
|
|
142696
|
-
|
|
142697
|
-
:type: typing.Literal['ABSOLUTE','RELATIVE_START','RELATIVE_FRAME','ABSOLUTE_FRAME']
|
|
142698
|
-
"""
|
|
142699
|
-
|
|
142700
142649
|
track_name: str
|
|
142701
142650
|
"""
|
|
142702
142651
|
|
|
@@ -142773,24 +142722,6 @@ class CompositorNodeTrackPos(CompositorNode, NodeInternal, Node, bpy_struct):
|
|
|
142773
142722
|
class CompositorNodeTransform(CompositorNode, NodeInternal, Node, bpy_struct):
|
|
142774
142723
|
"""Scale, translate and rotate an image"""
|
|
142775
142724
|
|
|
142776
|
-
extension_x: typing.Literal["CLIP", "EXTEND", "REPEAT"]
|
|
142777
|
-
""" The extension mode applied to the X axis
|
|
142778
|
-
|
|
142779
|
-
:type: typing.Literal['CLIP','EXTEND','REPEAT']
|
|
142780
|
-
"""
|
|
142781
|
-
|
|
142782
|
-
extension_y: typing.Literal["CLIP", "EXTEND", "REPEAT"]
|
|
142783
|
-
""" The extension mode applied to the Y axis
|
|
142784
|
-
|
|
142785
|
-
:type: typing.Literal['CLIP','EXTEND','REPEAT']
|
|
142786
|
-
"""
|
|
142787
|
-
|
|
142788
|
-
interpolation: typing.Literal["NEAREST", "BILINEAR", "BICUBIC", "ANISOTROPIC"]
|
|
142789
|
-
""" Interpolation method
|
|
142790
|
-
|
|
142791
|
-
:type: typing.Literal['NEAREST','BILINEAR','BICUBIC','ANISOTROPIC']
|
|
142792
|
-
"""
|
|
142793
|
-
|
|
142794
142725
|
@classmethod
|
|
142795
142726
|
def is_registered_node_type(cls) -> bool:
|
|
142796
142727
|
"""True if a registered node type
|
|
@@ -142855,24 +142786,6 @@ class CompositorNodeTransform(CompositorNode, NodeInternal, Node, bpy_struct):
|
|
|
142855
142786
|
class CompositorNodeTranslate(CompositorNode, NodeInternal, Node, bpy_struct):
|
|
142856
142787
|
"""Offset an image"""
|
|
142857
142788
|
|
|
142858
|
-
extension_x: typing.Literal["CLIP", "EXTEND", "REPEAT"]
|
|
142859
|
-
""" The extension mode applied to the X axis
|
|
142860
|
-
|
|
142861
|
-
:type: typing.Literal['CLIP','EXTEND','REPEAT']
|
|
142862
|
-
"""
|
|
142863
|
-
|
|
142864
|
-
extension_y: typing.Literal["CLIP", "EXTEND", "REPEAT"]
|
|
142865
|
-
""" The extension mode applied to the Y axis
|
|
142866
|
-
|
|
142867
|
-
:type: typing.Literal['CLIP','EXTEND','REPEAT']
|
|
142868
|
-
"""
|
|
142869
|
-
|
|
142870
|
-
interpolation: typing.Literal["NEAREST", "BILINEAR", "BICUBIC", "ANISOTROPIC"]
|
|
142871
|
-
""" Interpolation method
|
|
142872
|
-
|
|
142873
|
-
:type: typing.Literal['NEAREST','BILINEAR','BICUBIC','ANISOTROPIC']
|
|
142874
|
-
"""
|
|
142875
|
-
|
|
142876
142789
|
@classmethod
|
|
142877
142790
|
def is_registered_node_type(cls) -> bool:
|
|
142878
142791
|
"""True if a registered node type
|
|
@@ -245084,6 +244997,12 @@ class ThemeClipEditor(bpy_struct):
|
|
|
245084
244997
|
:type: bpy_prop_array[float]
|
|
245085
244998
|
"""
|
|
245086
244999
|
|
|
245000
|
+
track_selected: bpy_prop_array[float]
|
|
245001
|
+
"""
|
|
245002
|
+
|
|
245003
|
+
:type: bpy_prop_array[float]
|
|
245004
|
+
"""
|
|
245005
|
+
|
|
245087
245006
|
@classmethod
|
|
245088
245007
|
def bl_rna_get_subclass(
|
|
245089
245008
|
cls,
|
|
@@ -258169,6 +258088,12 @@ class Window(bpy_struct):
|
|
|
258169
258088
|
:type: Stereo3dDisplay
|
|
258170
258089
|
"""
|
|
258171
258090
|
|
|
258091
|
+
support_hdr_color: bool
|
|
258092
|
+
""" The window has a HDR graphics buffer that wide gamut and high dynamic range colors can be written to, in extended sRGB color space.
|
|
258093
|
+
|
|
258094
|
+
:type: bool
|
|
258095
|
+
"""
|
|
258096
|
+
|
|
258172
258097
|
view_layer: ViewLayer
|
|
258173
258098
|
""" The active workspace view layer showing in the window
|
|
258174
258099
|
|
|
@@ -109,7 +109,7 @@ bl_ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
|
109
109
|
bl_ui/anim/__init__.pyi,sha256=aUUQB5sqG7wizgoB77tVmFLfhOWMyuHcEUY06w1FW5k,938
|
|
110
110
|
bl_ui/asset_shelf/__init__.pyi,sha256=zy0z1qh-gQXQufHFrEggbXWlihKF9l2OihuhN-iS4NE,825
|
|
111
111
|
bl_ui/generic_ui_list/__init__.pyi,sha256=wKDC1TOAxmPZ4kY86_96aBa-DTcNHrGXNucUNp1UzpY,4303
|
|
112
|
-
bl_ui/node_add_menu/__init__.pyi,sha256=
|
|
112
|
+
bl_ui/node_add_menu/__init__.pyi,sha256=lPXeqXuLmc_dFV2GWoxfbqY3DNpetsqkI1f3i7lHY-k,1812
|
|
113
113
|
bl_ui/node_add_menu_compositor/__init__.pyi,sha256=Hn5-YC2cCeK7hHi5QgR6OKzyxdHl8S3EiDJpqB4mMQo,10559
|
|
114
114
|
bl_ui/node_add_menu_geometry/__init__.pyi,sha256=fuv_3IdbsrXx4uXgrJLM9lIVEIhNVlDnEXWe5tYbbYg,33084
|
|
115
115
|
bl_ui/node_add_menu_shader/__init__.pyi,sha256=U-ntARgBpRtDHefEaZUTTBqPZOlk0MF5njZ6heMBb5A,6168
|
|
@@ -254,7 +254,7 @@ bpy/ops/palette/__init__.pyi,sha256=arZADeq1E2pbQE4cC4GdC9G3mrj31cbU2b4X_jiCdMY,
|
|
|
254
254
|
bpy/ops/particle/__init__.pyi,sha256=yWaqgUeRvSlMs-0msSrT3EHoiDrYXsqeEJDQ7zK9yLo,14503
|
|
255
255
|
bpy/ops/pointcloud/__init__.pyi,sha256=ncp0W4VO2eKWg0w0RbiCMX0T6Pp8lHgkuCozdZYV0cw,3980
|
|
256
256
|
bpy/ops/pose/__init__.pyi,sha256=w89jd2FiJ7nmJKtT9emmA5ziy3hTTF-7z8An4-9mscY,28170
|
|
257
|
-
bpy/ops/poselib/__init__.pyi,sha256=
|
|
257
|
+
bpy/ops/poselib/__init__.pyi,sha256=i8AAolvl0wCN1KAhNZyA10Rb46wS83T5M2Z6ed-MuTY,6655
|
|
258
258
|
bpy/ops/preferences/__init__.pyi,sha256=ExaBIhejgkAc7k2DPX7S8II-gEXFmfZOoQVcw_Iom0E,19795
|
|
259
259
|
bpy/ops/ptcache/__init__.pyi,sha256=alDSJmgA1aKoMo46EDHirj_L-9Xc7RvfCh27DRnRuWc,1834
|
|
260
260
|
bpy/ops/render/__init__.pyi,sha256=CaNY2941_VXzPCw8Ul_1x-DYcnpjt9-vUmscqbIM15Y,7603
|
|
@@ -283,8 +283,8 @@ bpy/ops/world/__init__.pyi,sha256=VTCqEUTLL6yJroZCNcMYQgEKVmjwkIwIy70vB78rdOM,67
|
|
|
283
283
|
bpy/path/__init__.pyi,sha256=Phd8a6fB3496L7_LUhdwPNwkh3qy_4O-MS5br9RMfO0,5536
|
|
284
284
|
bpy/props/__init__.pyi,sha256=d7F7M1mGB4fsDBgn3fzNBoOLuVSfcyvxDdiNUygjIpo,35774
|
|
285
285
|
bpy/stub_internal/__init__.pyi,sha256=h3K2LGZ8lcLY-Oo9ym-HEopjGScc4iTfpT1MU_6smTI,126
|
|
286
|
-
bpy/stub_internal/rna_enums/__init__.pyi,sha256=
|
|
287
|
-
bpy/types/__init__.pyi,sha256=
|
|
286
|
+
bpy/stub_internal/rna_enums/__init__.pyi,sha256=DlllD--J-39yfTh3w4cTo_U-ZfiuZSZuIWsIC9tgFvc,142654
|
|
287
|
+
bpy/types/__init__.pyi,sha256=xmITVh42Ict1fN3o58f0M1Zx3m7OzB6US9TNs6cy7W4,5904819
|
|
288
288
|
bpy/utils/__init__.pyi,sha256=GGYp2g381aOdE7tWXvRGVbmhijbfgt4wGAtJGgbvyJg,15526
|
|
289
289
|
bpy/utils/previews/__init__.pyi,sha256=iSZemSCPu1S2BjAQO83Z-FqEo1nGHRCEIEduXB6hQhc,2357
|
|
290
290
|
bpy/utils/units/__init__.pyi,sha256=cpE9IZPkYPBexru7R9HQ_c0931d7R7Dvib2Uf7V0JJs,2645
|
|
@@ -317,7 +317,7 @@ freestyle/functions/__init__.pyi,sha256=dGcOMrCayIE_OXrHIm36aQUAsCyNwvX63DjLjJw6
|
|
|
317
317
|
freestyle/predicates/__init__.pyi,sha256=3Y8x157YP6udskhuFb_UZYvGyZjjEhGIJWQoj0BMLsw,13550
|
|
318
318
|
freestyle/shaders/__init__.pyi,sha256=SUbnzfs9aX629SUz1vacJUkTQS2F8-E4TS1SetN0yFs,24630
|
|
319
319
|
freestyle/types/__init__.pyi,sha256=kKYLqZdjpwVRBGzW02O_LUX_RkL8b0M1Op-49xfMbGk,101293
|
|
320
|
-
freestyle/utils/__init__.pyi,sha256=
|
|
320
|
+
freestyle/utils/__init__.pyi,sha256=I5thoI3sH_4ZEpx_7KK1Tl76DjREB7C-8g7A_IdQunQ,5328
|
|
321
321
|
freestyle/utils/ContextFunctions/__init__.pyi,sha256=IKNZD__52vYS5eT32F_WZwW1dco_6G2kZC_1IVCAwLs,3486
|
|
322
322
|
gpu/__init__.pyi,sha256=TLoatdrTMM6vfjnbuQA6cW38ARW5nuLa4Y-eicnJU5Q,8900
|
|
323
323
|
gpu/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -364,7 +364,7 @@ rna_prop_ui/__init__.pyi,sha256=Gn7kc9WhI3qPObIz8QiFbjeVIP7GCeF6liywBzIEcnE,1402
|
|
|
364
364
|
rna_prop_ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
365
365
|
rna_xml/__init__.pyi,sha256=E0_ajcifhpiiQJVaNKnAa2ju-w5Tg9-lk7IqhsPjrw4,652
|
|
366
366
|
rna_xml/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
367
|
-
fake_bpy_module-
|
|
368
|
-
fake_bpy_module-
|
|
369
|
-
fake_bpy_module-
|
|
370
|
-
fake_bpy_module-
|
|
367
|
+
fake_bpy_module-20250829.dist-info/METADATA,sha256=R3LNt7OzpaId9UsewiuRxdtCGN_hsq2KWnwJWB-bu-c,7429
|
|
368
|
+
fake_bpy_module-20250829.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
369
|
+
fake_bpy_module-20250829.dist-info/top_level.txt,sha256=E_sehFLnpWSq252JjlyGL1A-1xsWTYcqyOIlHfuOh28,515
|
|
370
|
+
fake_bpy_module-20250829.dist-info/RECORD,,
|
freestyle/utils/__init__.pyi
CHANGED
|
@@ -125,7 +125,7 @@ def material_from_fedge(fe) -> None:
|
|
|
125
125
|
"""get the diffuse RGBA color from an FEdge"""
|
|
126
126
|
|
|
127
127
|
def normal_at_I0D(it) -> None: ...
|
|
128
|
-
def pairwise(iterable, types={
|
|
128
|
+
def pairwise(iterable, types={StrokeVertexIterator, Stroke}) -> None:
|
|
129
129
|
"""Yields a tuple containing the previous and current object"""
|
|
130
130
|
|
|
131
131
|
def rgb_to_bw(r, g, b) -> None:
|
|
File without changes
|
|
File without changes
|