fake-bpy-module 20240617__py3-none-any.whl → 20240618__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of fake-bpy-module might be problematic. Click here for more details.
- bl_ui/properties_material_gpencil/__init__.pyi +2 -2
- bpy/ops/grease_pencil/__init__.pyi +39 -0
- bpy/ops/object/__init__.pyi +1 -4
- bpy/ops/ui/__init__.pyi +0 -14
- bpy/types/__init__.pyi +280 -39
- bpy/utils/units/__init__.pyi +1 -1
- {fake_bpy_module-20240617.dist-info → fake_bpy_module-20240618.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240617.dist-info → fake_bpy_module-20240618.dist-info}/RECORD +11 -11
- freestyle/utils/__init__.pyi +1 -1
- {fake_bpy_module-20240617.dist-info → fake_bpy_module-20240618.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240617.dist-info → fake_bpy_module-20240618.dist-info}/top_level.txt +0 -0
|
@@ -1078,6 +1078,45 @@ def set_active_material(
|
|
|
1078
1078
|
|
|
1079
1079
|
...
|
|
1080
1080
|
|
|
1081
|
+
def set_curve_type(
|
|
1082
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1083
|
+
execution_context: int | str | None = None,
|
|
1084
|
+
undo: bool | None = None,
|
|
1085
|
+
*,
|
|
1086
|
+
type: str | None = "POLY",
|
|
1087
|
+
use_handles: bool | typing.Any | None = False,
|
|
1088
|
+
):
|
|
1089
|
+
"""Set type of selected curves
|
|
1090
|
+
|
|
1091
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1092
|
+
:type execution_context: int | str | None
|
|
1093
|
+
:type undo: bool | None
|
|
1094
|
+
:param type: Type, Curve type
|
|
1095
|
+
:type type: str | None
|
|
1096
|
+
:param use_handles: Handles, Take handle information into account in the conversion
|
|
1097
|
+
:type use_handles: bool | typing.Any | None
|
|
1098
|
+
"""
|
|
1099
|
+
|
|
1100
|
+
...
|
|
1101
|
+
|
|
1102
|
+
def set_handle_type(
|
|
1103
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1104
|
+
execution_context: int | str | None = None,
|
|
1105
|
+
undo: bool | None = None,
|
|
1106
|
+
*,
|
|
1107
|
+
type: str | None = "AUTO",
|
|
1108
|
+
):
|
|
1109
|
+
"""Set the handle type for bezier curves
|
|
1110
|
+
|
|
1111
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1112
|
+
:type execution_context: int | str | None
|
|
1113
|
+
:type undo: bool | None
|
|
1114
|
+
:param type: Type
|
|
1115
|
+
:type type: str | None
|
|
1116
|
+
"""
|
|
1117
|
+
|
|
1118
|
+
...
|
|
1119
|
+
|
|
1081
1120
|
def set_material(
|
|
1082
1121
|
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1083
1122
|
execution_context: int | str | None = None,
|
bpy/ops/object/__init__.pyi
CHANGED
|
@@ -634,9 +634,6 @@ def convert(
|
|
|
634
634
|
MESH
|
|
635
635
|
Mesh -- Mesh from Curve, Surface, Metaball, Text, or Point Cloud objects.
|
|
636
636
|
|
|
637
|
-
GPENCIL
|
|
638
|
-
Grease Pencil -- Grease Pencil from Curve or Mesh objects.
|
|
639
|
-
|
|
640
637
|
POINTCLOUD
|
|
641
638
|
Point Cloud -- Point Cloud from Mesh objects.
|
|
642
639
|
|
|
@@ -644,7 +641,7 @@ def convert(
|
|
|
644
641
|
Curves -- Curves from evaluated curve data.
|
|
645
642
|
|
|
646
643
|
GREASEPENCIL
|
|
647
|
-
Grease Pencil
|
|
644
|
+
Grease Pencil -- Grease Pencil from Curve or Mesh objects.
|
|
648
645
|
:type target: str | None
|
|
649
646
|
:param keep_original: Keep Original, Keep original objects instead of replacing them
|
|
650
647
|
:type keep_original: bool | typing.Any | None
|
bpy/ops/ui/__init__.pyi
CHANGED
|
@@ -204,20 +204,6 @@ def editsource(
|
|
|
204
204
|
|
|
205
205
|
...
|
|
206
206
|
|
|
207
|
-
def edittranslation_init(
|
|
208
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
209
|
-
execution_context: int | str | None = None,
|
|
210
|
-
undo: bool | None = None,
|
|
211
|
-
):
|
|
212
|
-
"""Edit i18n in current language for the active button
|
|
213
|
-
|
|
214
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
215
|
-
:type execution_context: int | str | None
|
|
216
|
-
:type undo: bool | None
|
|
217
|
-
"""
|
|
218
|
-
|
|
219
|
-
...
|
|
220
|
-
|
|
221
207
|
def eyedropper_color(
|
|
222
208
|
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
223
209
|
execution_context: int | str | None = None,
|
bpy/types/__init__.pyi
CHANGED
|
@@ -13045,6 +13045,8 @@
|
|
|
13045
13045
|
* NodeTreeInterfaceSocketFloat.init_socket
|
|
13046
13046
|
* NodeTreeInterfaceSocketFloatAngle.from_socket
|
|
13047
13047
|
* NodeTreeInterfaceSocketFloatAngle.init_socket
|
|
13048
|
+
* NodeTreeInterfaceSocketFloatColorTemperature.from_socket
|
|
13049
|
+
* NodeTreeInterfaceSocketFloatColorTemperature.init_socket
|
|
13048
13050
|
* NodeTreeInterfaceSocketFloatDistance.from_socket
|
|
13049
13051
|
* NodeTreeInterfaceSocketFloatDistance.init_socket
|
|
13050
13052
|
* NodeTreeInterfaceSocketFloatFactor.from_socket
|
|
@@ -14796,6 +14798,66 @@
|
|
|
14796
14798
|
:columns: 2
|
|
14797
14799
|
|
|
14798
14800
|
|
|
14801
|
+
--------------------
|
|
14802
|
+
|
|
14803
|
+
* bpy_struct.id_data
|
|
14804
|
+
* NodeTreeInterfaceItem.item_type
|
|
14805
|
+
* NodeTreeInterfaceItem.parent
|
|
14806
|
+
* NodeTreeInterfaceItem.position
|
|
14807
|
+
* NodeTreeInterfaceItem.index
|
|
14808
|
+
* NodeTreeInterfaceSocket.name
|
|
14809
|
+
* NodeTreeInterfaceSocket.identifier
|
|
14810
|
+
* NodeTreeInterfaceSocket.description
|
|
14811
|
+
* NodeTreeInterfaceSocket.socket_type
|
|
14812
|
+
* NodeTreeInterfaceSocket.in_out
|
|
14813
|
+
* NodeTreeInterfaceSocket.hide_value
|
|
14814
|
+
* NodeTreeInterfaceSocket.hide_in_modifier
|
|
14815
|
+
* NodeTreeInterfaceSocket.force_non_field
|
|
14816
|
+
* NodeTreeInterfaceSocket.is_inspect_output
|
|
14817
|
+
* NodeTreeInterfaceSocket.layer_selection_field
|
|
14818
|
+
* NodeTreeInterfaceSocket.attribute_domain
|
|
14819
|
+
* NodeTreeInterfaceSocket.default_attribute_name
|
|
14820
|
+
* NodeTreeInterfaceSocket.default_input
|
|
14821
|
+
* NodeTreeInterfaceSocket.bl_socket_idname
|
|
14822
|
+
|
|
14823
|
+
:columns: 2
|
|
14824
|
+
|
|
14825
|
+
|
|
14826
|
+
--------------------
|
|
14827
|
+
|
|
14828
|
+
* bpy_struct.as_pointer
|
|
14829
|
+
* bpy_struct.driver_add
|
|
14830
|
+
* bpy_struct.driver_remove
|
|
14831
|
+
* bpy_struct.get
|
|
14832
|
+
* bpy_struct.id_properties_clear
|
|
14833
|
+
* bpy_struct.id_properties_ensure
|
|
14834
|
+
* bpy_struct.id_properties_ui
|
|
14835
|
+
* bpy_struct.is_property_hidden
|
|
14836
|
+
* bpy_struct.is_property_overridable_library
|
|
14837
|
+
* bpy_struct.is_property_readonly
|
|
14838
|
+
* bpy_struct.is_property_set
|
|
14839
|
+
* bpy_struct.items
|
|
14840
|
+
* bpy_struct.keyframe_delete
|
|
14841
|
+
* bpy_struct.keyframe_insert
|
|
14842
|
+
* bpy_struct.keys
|
|
14843
|
+
* bpy_struct.path_from_id
|
|
14844
|
+
* bpy_struct.path_resolve
|
|
14845
|
+
* bpy_struct.pop
|
|
14846
|
+
* bpy_struct.property_overridable_library_set
|
|
14847
|
+
* bpy_struct.property_unset
|
|
14848
|
+
* bpy_struct.type_recast
|
|
14849
|
+
* bpy_struct.values
|
|
14850
|
+
* NodeTreeInterfaceItem.bl_rna_get_subclass
|
|
14851
|
+
* NodeTreeInterfaceItem.bl_rna_get_subclass_py
|
|
14852
|
+
* NodeTreeInterfaceSocket.draw
|
|
14853
|
+
* NodeTreeInterfaceSocket.init_socket
|
|
14854
|
+
* NodeTreeInterfaceSocket.from_socket
|
|
14855
|
+
* NodeTreeInterfaceSocket.bl_rna_get_subclass
|
|
14856
|
+
* NodeTreeInterfaceSocket.bl_rna_get_subclass_py
|
|
14857
|
+
|
|
14858
|
+
:columns: 2
|
|
14859
|
+
|
|
14860
|
+
|
|
14799
14861
|
--------------------
|
|
14800
14862
|
|
|
14801
14863
|
* bpy_struct.id_data
|
|
@@ -26523,6 +26585,7 @@ object, placing it into a view layer, selecting it and making it active.
|
|
|
26523
26585
|
* NodeTreeInterfaceSocketColor.draw
|
|
26524
26586
|
* NodeTreeInterfaceSocketFloat.draw
|
|
26525
26587
|
* NodeTreeInterfaceSocketFloatAngle.draw
|
|
26588
|
+
* NodeTreeInterfaceSocketFloatColorTemperature.draw
|
|
26526
26589
|
* NodeTreeInterfaceSocketFloatDistance.draw
|
|
26527
26590
|
* NodeTreeInterfaceSocketFloatFactor.draw
|
|
26528
26591
|
* NodeTreeInterfaceSocketFloatPercentage.draw
|
|
@@ -35222,6 +35285,8 @@ Property types used in class declarations are all in bpy.props
|
|
|
35222
35285
|
* NodeTreeInterfaceSocketFloat.init_socket
|
|
35223
35286
|
* NodeTreeInterfaceSocketFloatAngle.from_socket
|
|
35224
35287
|
* NodeTreeInterfaceSocketFloatAngle.init_socket
|
|
35288
|
+
* NodeTreeInterfaceSocketFloatColorTemperature.from_socket
|
|
35289
|
+
* NodeTreeInterfaceSocketFloatColorTemperature.init_socket
|
|
35225
35290
|
* NodeTreeInterfaceSocketFloatDistance.from_socket
|
|
35226
35291
|
* NodeTreeInterfaceSocketFloatDistance.init_socket
|
|
35227
35292
|
* NodeTreeInterfaceSocketFloatFactor.from_socket
|
|
@@ -42891,6 +42956,72 @@ Executing the operator will then print all values.
|
|
|
42891
42956
|
:columns: 2
|
|
42892
42957
|
|
|
42893
42958
|
|
|
42959
|
+
--------------------
|
|
42960
|
+
|
|
42961
|
+
* bpy_struct.id_data
|
|
42962
|
+
* NodeSocket.name
|
|
42963
|
+
* NodeSocket.label
|
|
42964
|
+
* NodeSocket.identifier
|
|
42965
|
+
* NodeSocket.description
|
|
42966
|
+
* NodeSocket.is_output
|
|
42967
|
+
* NodeSocket.hide
|
|
42968
|
+
* NodeSocket.enabled
|
|
42969
|
+
* NodeSocket.link_limit
|
|
42970
|
+
* NodeSocket.is_linked
|
|
42971
|
+
* NodeSocket.is_unavailable
|
|
42972
|
+
* NodeSocket.is_multi_input
|
|
42973
|
+
* NodeSocket.show_expanded
|
|
42974
|
+
* NodeSocket.hide_value
|
|
42975
|
+
* NodeSocket.node
|
|
42976
|
+
* NodeSocket.type
|
|
42977
|
+
* NodeSocket.display_shape
|
|
42978
|
+
* NodeSocket.bl_idname
|
|
42979
|
+
* NodeSocket.bl_label
|
|
42980
|
+
* NodeSocket.bl_subtype_label
|
|
42981
|
+
* NodeSocket.links
|
|
42982
|
+
* NodeSocketStandard.links
|
|
42983
|
+
|
|
42984
|
+
:columns: 2
|
|
42985
|
+
|
|
42986
|
+
|
|
42987
|
+
--------------------
|
|
42988
|
+
|
|
42989
|
+
* bpy_struct.as_pointer
|
|
42990
|
+
* bpy_struct.driver_add
|
|
42991
|
+
* bpy_struct.driver_remove
|
|
42992
|
+
* bpy_struct.get
|
|
42993
|
+
* bpy_struct.id_properties_clear
|
|
42994
|
+
* bpy_struct.id_properties_ensure
|
|
42995
|
+
* bpy_struct.id_properties_ui
|
|
42996
|
+
* bpy_struct.is_property_hidden
|
|
42997
|
+
* bpy_struct.is_property_overridable_library
|
|
42998
|
+
* bpy_struct.is_property_readonly
|
|
42999
|
+
* bpy_struct.is_property_set
|
|
43000
|
+
* bpy_struct.items
|
|
43001
|
+
* bpy_struct.keyframe_delete
|
|
43002
|
+
* bpy_struct.keyframe_insert
|
|
43003
|
+
* bpy_struct.keys
|
|
43004
|
+
* bpy_struct.path_from_id
|
|
43005
|
+
* bpy_struct.path_resolve
|
|
43006
|
+
* bpy_struct.pop
|
|
43007
|
+
* bpy_struct.property_overridable_library_set
|
|
43008
|
+
* bpy_struct.property_unset
|
|
43009
|
+
* bpy_struct.type_recast
|
|
43010
|
+
* bpy_struct.values
|
|
43011
|
+
* NodeSocket.draw
|
|
43012
|
+
* NodeSocket.draw_color
|
|
43013
|
+
* NodeSocket.draw_color_simple
|
|
43014
|
+
* NodeSocket.bl_rna_get_subclass
|
|
43015
|
+
* NodeSocket.bl_rna_get_subclass_py
|
|
43016
|
+
* NodeSocketStandard.draw
|
|
43017
|
+
* NodeSocketStandard.draw_color
|
|
43018
|
+
* NodeSocketStandard.draw_color_simple
|
|
43019
|
+
* NodeSocketStandard.bl_rna_get_subclass
|
|
43020
|
+
* NodeSocketStandard.bl_rna_get_subclass_py
|
|
43021
|
+
|
|
43022
|
+
:columns: 2
|
|
43023
|
+
|
|
43024
|
+
|
|
42894
43025
|
--------------------
|
|
42895
43026
|
|
|
42896
43027
|
* bpy_struct.id_data
|
|
@@ -42981,6 +43112,7 @@ Executing the operator will then print all values.
|
|
|
42981
43112
|
* NodeTreeInterfaceSocketColor.draw
|
|
42982
43113
|
* NodeTreeInterfaceSocketFloat.draw
|
|
42983
43114
|
* NodeTreeInterfaceSocketFloatAngle.draw
|
|
43115
|
+
* NodeTreeInterfaceSocketFloatColorTemperature.draw
|
|
42984
43116
|
* NodeTreeInterfaceSocketFloatDistance.draw
|
|
42985
43117
|
* NodeTreeInterfaceSocketFloatFactor.draw
|
|
42986
43118
|
* NodeTreeInterfaceSocketFloatPercentage.draw
|
|
@@ -101732,7 +101864,7 @@ class BlendData(bpy_struct):
|
|
|
101732
101864
|
"""
|
|
101733
101865
|
|
|
101734
101866
|
grease_pencils_v3: BlendDataGreasePencilsV3
|
|
101735
|
-
""" Grease Pencil
|
|
101867
|
+
""" Grease Pencil data-blocks
|
|
101736
101868
|
|
|
101737
101869
|
:type: BlendDataGreasePencilsV3
|
|
101738
101870
|
"""
|
|
@@ -133592,18 +133724,6 @@ class PreferencesExperimental(bpy_struct):
|
|
|
133592
133724
|
:type: bool
|
|
133593
133725
|
"""
|
|
133594
133726
|
|
|
133595
|
-
use_grease_pencil_version3: bool
|
|
133596
|
-
""" Enable the new grease pencil 3.0 codebase
|
|
133597
|
-
|
|
133598
|
-
:type: bool
|
|
133599
|
-
"""
|
|
133600
|
-
|
|
133601
|
-
use_grease_pencil_version3_convert_on_load: bool
|
|
133602
|
-
""" Enable automatic conversion to grease pencil 3.0 data when opening a blendfile (only active if 'Grease Pencil 3.0' is enabled)
|
|
133603
|
-
|
|
133604
|
-
:type: bool
|
|
133605
|
-
"""
|
|
133606
|
-
|
|
133607
133727
|
use_new_curves_tools: bool
|
|
133608
133728
|
""" Enable additional features for the new curves data block
|
|
133609
133729
|
|
|
@@ -165694,10 +165814,10 @@ class FreestyleLineStyle(ID, bpy_struct):
|
|
|
165694
165814
|
:type: bool
|
|
165695
165815
|
"""
|
|
165696
165816
|
|
|
165697
|
-
node_tree:
|
|
165817
|
+
node_tree: ShaderNodeTree | None
|
|
165698
165818
|
""" Node tree for node-based shaders
|
|
165699
165819
|
|
|
165700
|
-
:type:
|
|
165820
|
+
:type: ShaderNodeTree | None
|
|
165701
165821
|
"""
|
|
165702
165822
|
|
|
165703
165823
|
panel: str
|
|
@@ -166933,10 +167053,10 @@ class Light(ID, bpy_struct):
|
|
|
166933
167053
|
:type: float
|
|
166934
167054
|
"""
|
|
166935
167055
|
|
|
166936
|
-
node_tree:
|
|
167056
|
+
node_tree: ShaderNodeTree | None
|
|
166937
167057
|
""" Node tree for node based lights
|
|
166938
167058
|
|
|
166939
|
-
:type:
|
|
167059
|
+
:type: ShaderNodeTree | None
|
|
166940
167060
|
"""
|
|
166941
167061
|
|
|
166942
167062
|
specular_factor: float
|
|
@@ -167254,10 +167374,10 @@ class Material(ID, bpy_struct):
|
|
|
167254
167374
|
:type: float
|
|
167255
167375
|
"""
|
|
167256
167376
|
|
|
167257
|
-
node_tree:
|
|
167377
|
+
node_tree: ShaderNodeTree | None
|
|
167258
167378
|
""" Node tree for node based materials
|
|
167259
167379
|
|
|
167260
|
-
:type:
|
|
167380
|
+
:type: ShaderNodeTree | None
|
|
167261
167381
|
"""
|
|
167262
167382
|
|
|
167263
167383
|
paint_active_slot: int
|
|
@@ -170863,10 +170983,10 @@ class Scene(ID, bpy_struct):
|
|
|
170863
170983
|
:type: bool
|
|
170864
170984
|
"""
|
|
170865
170985
|
|
|
170866
|
-
node_tree:
|
|
170986
|
+
node_tree: CompositorNodeTree | None
|
|
170867
170987
|
""" Compositing node tree
|
|
170868
170988
|
|
|
170869
|
-
:type:
|
|
170989
|
+
:type: CompositorNodeTree | None
|
|
170870
170990
|
"""
|
|
170871
170991
|
|
|
170872
170992
|
objects: SceneObjects
|
|
@@ -171758,10 +171878,10 @@ class Texture(ID, bpy_struct):
|
|
|
171758
171878
|
:type: float
|
|
171759
171879
|
"""
|
|
171760
171880
|
|
|
171761
|
-
node_tree:
|
|
171881
|
+
node_tree: TextureNodeTree | None
|
|
171762
171882
|
""" Node tree for node-based textures
|
|
171763
171883
|
|
|
171764
|
-
:type:
|
|
171884
|
+
:type: TextureNodeTree | None
|
|
171765
171885
|
"""
|
|
171766
171886
|
|
|
171767
171887
|
saturation: float
|
|
@@ -172665,10 +172785,10 @@ class World(ID, bpy_struct):
|
|
|
172665
172785
|
:type: WorldMistSettings
|
|
172666
172786
|
"""
|
|
172667
172787
|
|
|
172668
|
-
node_tree:
|
|
172788
|
+
node_tree: ShaderNodeTree | None
|
|
172669
172789
|
""" Node tree for node based worlds
|
|
172670
172790
|
|
|
172671
|
-
:type:
|
|
172791
|
+
:type: ShaderNodeTree | None
|
|
172672
172792
|
"""
|
|
172673
172793
|
|
|
172674
172794
|
probe_resolution: str
|
|
@@ -197356,6 +197476,42 @@ class NodeSocketFloatAngle(NodeSocketStandard, NodeSocket, bpy_struct):
|
|
|
197356
197476
|
"""
|
|
197357
197477
|
...
|
|
197358
197478
|
|
|
197479
|
+
class NodeSocketFloatColorTemperature(NodeSocketStandard, NodeSocket, bpy_struct):
|
|
197480
|
+
"""Floating-point number socket of a node"""
|
|
197481
|
+
|
|
197482
|
+
default_value: float
|
|
197483
|
+
""" Input value used for unconnected socket
|
|
197484
|
+
|
|
197485
|
+
:type: float
|
|
197486
|
+
"""
|
|
197487
|
+
|
|
197488
|
+
links: typing.Any
|
|
197489
|
+
""" List of node links from or to this socket.(readonly)"""
|
|
197490
|
+
|
|
197491
|
+
@classmethod
|
|
197492
|
+
def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
|
|
197493
|
+
"""
|
|
197494
|
+
|
|
197495
|
+
:param id: The RNA type identifier.
|
|
197496
|
+
:type id: str | None
|
|
197497
|
+
:param default:
|
|
197498
|
+
:return: The RNA type or default when not found.
|
|
197499
|
+
:rtype: Struct
|
|
197500
|
+
"""
|
|
197501
|
+
...
|
|
197502
|
+
|
|
197503
|
+
@classmethod
|
|
197504
|
+
def bl_rna_get_subclass_py(cls, id: str | None, default=None) -> typing.Any:
|
|
197505
|
+
"""
|
|
197506
|
+
|
|
197507
|
+
:param id: The RNA type identifier.
|
|
197508
|
+
:type id: str | None
|
|
197509
|
+
:param default:
|
|
197510
|
+
:return: The class or default when not found.
|
|
197511
|
+
:rtype: typing.Any
|
|
197512
|
+
"""
|
|
197513
|
+
...
|
|
197514
|
+
|
|
197359
197515
|
class NodeSocketFloatDistance(NodeSocketStandard, NodeSocket, bpy_struct):
|
|
197360
197516
|
"""Floating-point number socket of a node"""
|
|
197361
197517
|
|
|
@@ -198747,6 +198903,91 @@ class NodeTreeInterfaceSocketFloatAngle(
|
|
|
198747
198903
|
"""
|
|
198748
198904
|
...
|
|
198749
198905
|
|
|
198906
|
+
class NodeTreeInterfaceSocketFloatColorTemperature(
|
|
198907
|
+
NodeTreeInterfaceSocket, NodeTreeInterfaceItem, bpy_struct
|
|
198908
|
+
):
|
|
198909
|
+
"""Floating-point number socket of a node"""
|
|
198910
|
+
|
|
198911
|
+
default_value: float
|
|
198912
|
+
""" Input value used for unconnected socket
|
|
198913
|
+
|
|
198914
|
+
:type: float
|
|
198915
|
+
"""
|
|
198916
|
+
|
|
198917
|
+
max_value: float
|
|
198918
|
+
""" Maximum value
|
|
198919
|
+
|
|
198920
|
+
:type: float
|
|
198921
|
+
"""
|
|
198922
|
+
|
|
198923
|
+
min_value: float
|
|
198924
|
+
""" Minimum value
|
|
198925
|
+
|
|
198926
|
+
:type: float
|
|
198927
|
+
"""
|
|
198928
|
+
|
|
198929
|
+
subtype: str
|
|
198930
|
+
""" Subtype of the default value
|
|
198931
|
+
|
|
198932
|
+
:type: str
|
|
198933
|
+
"""
|
|
198934
|
+
|
|
198935
|
+
def draw(self, context: Context, layout: UILayout):
|
|
198936
|
+
"""Draw interface socket settings
|
|
198937
|
+
|
|
198938
|
+
:param context:
|
|
198939
|
+
:type context: Context
|
|
198940
|
+
:param layout: Layout, Layout in the UI
|
|
198941
|
+
:type layout: UILayout
|
|
198942
|
+
"""
|
|
198943
|
+
...
|
|
198944
|
+
|
|
198945
|
+
def init_socket(self, node: Node, socket: NodeSocket, data_path: str | typing.Any):
|
|
198946
|
+
"""Initialize a node socket instance
|
|
198947
|
+
|
|
198948
|
+
:param node: Node, Node of the socket to initialize
|
|
198949
|
+
:type node: Node
|
|
198950
|
+
:param socket: Socket, Socket to initialize
|
|
198951
|
+
:type socket: NodeSocket
|
|
198952
|
+
:param data_path: Data Path, Path to specialized socket data
|
|
198953
|
+
:type data_path: str | typing.Any
|
|
198954
|
+
"""
|
|
198955
|
+
...
|
|
198956
|
+
|
|
198957
|
+
def from_socket(self, node: Node, socket: NodeSocket):
|
|
198958
|
+
"""Setup template parameters from an existing socket
|
|
198959
|
+
|
|
198960
|
+
:param node: Node, Node of the original socket
|
|
198961
|
+
:type node: Node
|
|
198962
|
+
:param socket: Socket, Original socket
|
|
198963
|
+
:type socket: NodeSocket
|
|
198964
|
+
"""
|
|
198965
|
+
...
|
|
198966
|
+
|
|
198967
|
+
@classmethod
|
|
198968
|
+
def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
|
|
198969
|
+
"""
|
|
198970
|
+
|
|
198971
|
+
:param id: The RNA type identifier.
|
|
198972
|
+
:type id: str | None
|
|
198973
|
+
:param default:
|
|
198974
|
+
:return: The RNA type or default when not found.
|
|
198975
|
+
:rtype: Struct
|
|
198976
|
+
"""
|
|
198977
|
+
...
|
|
198978
|
+
|
|
198979
|
+
@classmethod
|
|
198980
|
+
def bl_rna_get_subclass_py(cls, id: str | None, default=None) -> typing.Any:
|
|
198981
|
+
"""
|
|
198982
|
+
|
|
198983
|
+
:param id: The RNA type identifier.
|
|
198984
|
+
:type id: str | None
|
|
198985
|
+
:param default:
|
|
198986
|
+
:return: The class or default when not found.
|
|
198987
|
+
:rtype: typing.Any
|
|
198988
|
+
"""
|
|
198989
|
+
...
|
|
198990
|
+
|
|
198750
198991
|
class NodeTreeInterfaceSocketFloatDistance(
|
|
198751
198992
|
NodeTreeInterfaceSocket, NodeTreeInterfaceItem, bpy_struct
|
|
198752
198993
|
):
|
|
@@ -204414,10 +204655,10 @@ class CompositorNodeCurveVec(CompositorNode, NodeInternal, Node, bpy_struct):
|
|
|
204414
204655
|
class CompositorNodeCustomGroup(CompositorNode, NodeInternal, Node, bpy_struct):
|
|
204415
204656
|
"""Custom Compositor Group Node for Python nodes"""
|
|
204416
204657
|
|
|
204417
|
-
node_tree:
|
|
204658
|
+
node_tree: CompositorNodeTree | None
|
|
204418
204659
|
"""
|
|
204419
204660
|
|
|
204420
|
-
:type:
|
|
204661
|
+
:type: CompositorNodeTree | None
|
|
204421
204662
|
"""
|
|
204422
204663
|
|
|
204423
204664
|
def update(self): ...
|
|
@@ -205637,10 +205878,10 @@ class CompositorNodeGlare(CompositorNode, NodeInternal, Node, bpy_struct):
|
|
|
205637
205878
|
...
|
|
205638
205879
|
|
|
205639
205880
|
class CompositorNodeGroup(CompositorNode, NodeInternal, Node, bpy_struct):
|
|
205640
|
-
node_tree:
|
|
205881
|
+
node_tree: CompositorNodeTree | None
|
|
205641
205882
|
"""
|
|
205642
205883
|
|
|
205643
|
-
:type:
|
|
205884
|
+
:type: CompositorNodeTree | None
|
|
205644
205885
|
"""
|
|
205645
205886
|
|
|
205646
205887
|
@classmethod
|
|
@@ -213952,10 +214193,10 @@ class GeometryNodeCurveToPoints(GeometryNode, NodeInternal, Node, bpy_struct):
|
|
|
213952
214193
|
class GeometryNodeCustomGroup(GeometryNode, NodeInternal, Node, bpy_struct):
|
|
213953
214194
|
"""Custom Geometry Group Node for Python nodes"""
|
|
213954
214195
|
|
|
213955
|
-
node_tree:
|
|
214196
|
+
node_tree: GeometryNodeTree | None
|
|
213956
214197
|
"""
|
|
213957
214198
|
|
|
213958
|
-
:type:
|
|
214199
|
+
:type: GeometryNodeTree | None
|
|
213959
214200
|
"""
|
|
213960
214201
|
|
|
213961
214202
|
@classmethod
|
|
@@ -215351,10 +215592,10 @@ class GeometryNodeGridToMesh(GeometryNode, NodeInternal, Node, bpy_struct):
|
|
|
215351
215592
|
...
|
|
215352
215593
|
|
|
215353
215594
|
class GeometryNodeGroup(GeometryNode, NodeInternal, Node, bpy_struct):
|
|
215354
|
-
node_tree:
|
|
215595
|
+
node_tree: GeometryNodeTree | None
|
|
215355
215596
|
"""
|
|
215356
215597
|
|
|
215357
|
-
:type:
|
|
215598
|
+
:type: GeometryNodeTree | None
|
|
215358
215599
|
"""
|
|
215359
215600
|
|
|
215360
215601
|
@classmethod
|
|
@@ -225493,10 +225734,10 @@ class ShaderNodeCombineXYZ(ShaderNode, NodeInternal, Node, bpy_struct):
|
|
|
225493
225734
|
class ShaderNodeCustomGroup(ShaderNode, NodeInternal, Node, bpy_struct):
|
|
225494
225735
|
"""Custom Shader Group Node for Python nodes"""
|
|
225495
225736
|
|
|
225496
|
-
node_tree:
|
|
225737
|
+
node_tree: ShaderNodeTree | None
|
|
225497
225738
|
"""
|
|
225498
225739
|
|
|
225499
|
-
:type:
|
|
225740
|
+
:type: ShaderNodeTree | None
|
|
225500
225741
|
"""
|
|
225501
225742
|
|
|
225502
225743
|
@classmethod
|
|
@@ -225886,10 +226127,10 @@ class ShaderNodeGamma(ShaderNode, NodeInternal, Node, bpy_struct):
|
|
|
225886
226127
|
...
|
|
225887
226128
|
|
|
225888
226129
|
class ShaderNodeGroup(ShaderNode, NodeInternal, Node, bpy_struct):
|
|
225889
|
-
node_tree:
|
|
226130
|
+
node_tree: ShaderNodeTree | None
|
|
225890
226131
|
"""
|
|
225891
226132
|
|
|
225892
|
-
:type:
|
|
226133
|
+
:type: ShaderNodeTree | None
|
|
225893
226134
|
"""
|
|
225894
226135
|
|
|
225895
226136
|
@classmethod
|
|
@@ -231223,10 +231464,10 @@ class TextureNodeDistance(TextureNode, NodeInternal, Node, bpy_struct):
|
|
|
231223
231464
|
...
|
|
231224
231465
|
|
|
231225
231466
|
class TextureNodeGroup(TextureNode, NodeInternal, Node, bpy_struct):
|
|
231226
|
-
node_tree:
|
|
231467
|
+
node_tree: TextureNodeTree | None
|
|
231227
231468
|
"""
|
|
231228
231469
|
|
|
231229
|
-
:type:
|
|
231470
|
+
:type: TextureNodeTree | None
|
|
231230
231471
|
"""
|
|
231231
231472
|
|
|
231232
231473
|
@classmethod
|
bpy/utils/units/__init__.pyi
CHANGED
|
@@ -62,7 +62,7 @@ def to_value(
|
|
|
62
62
|
...
|
|
63
63
|
|
|
64
64
|
categories: typing.Any
|
|
65
|
-
""" Constant value bpy.utils.units.categories(NONE='NONE', LENGTH='LENGTH', AREA='AREA', VOLUME='VOLUME', MASS='MASS', ROTATION='ROTATION', TIME='TIME', TIME_ABSOLUTE='TIME_ABSOLUTE', VELOCITY='VELOCITY', ACCELERATION='ACCELERATION', CAMERA='CAMERA', POWER='POWER', TEMPERATURE='TEMPERATURE', WAVELENGTH='WAVELENGTH')
|
|
65
|
+
""" Constant value bpy.utils.units.categories(NONE='NONE', LENGTH='LENGTH', AREA='AREA', VOLUME='VOLUME', MASS='MASS', ROTATION='ROTATION', TIME='TIME', TIME_ABSOLUTE='TIME_ABSOLUTE', VELOCITY='VELOCITY', ACCELERATION='ACCELERATION', CAMERA='CAMERA', POWER='POWER', TEMPERATURE='TEMPERATURE', WAVELENGTH='WAVELENGTH', COLOR_TEMPERATURE='COLOR_TEMPERATURE')
|
|
66
66
|
"""
|
|
67
67
|
|
|
68
68
|
systems: typing.Any
|
|
@@ -120,7 +120,7 @@ bl_ui/properties_freestyle/__init__.pyi,sha256=Y0WT5RnRXSi5-d_UF9rHIS8hQpt_tMpIq
|
|
|
120
120
|
bl_ui/properties_grease_pencil_common/__init__.pyi,sha256=953RjVnB0ryPckte6z7ESUyzjQYp3bWDY48zjfg-tfk,116054
|
|
121
121
|
bl_ui/properties_mask_common/__init__.pyi,sha256=z-wrPLQRR5LqvZ5OkAjkTa-RkDpmbAXcxsLmPW1dFnQ,52692
|
|
122
122
|
bl_ui/properties_material/__init__.pyi,sha256=1p1Qk99ZASVIAfeSBB7DoFAdsGAhiPPBeXX_tPRt2KE,95531
|
|
123
|
-
bl_ui/properties_material_gpencil/__init__.pyi,sha256=
|
|
123
|
+
bl_ui/properties_material_gpencil/__init__.pyi,sha256=xmdCb98R6SrcYJRNmW7JPrJXPElhX3SwrqscBedMZWA,62364
|
|
124
124
|
bl_ui/properties_object/__init__.pyi,sha256=kysWM-H-26T3-rWUzjRvAN3TtOiAg_J-vAXKqk92j50,83295
|
|
125
125
|
bl_ui/properties_output/__init__.pyi,sha256=BF7rD4cWL1Nbk_a8iEFPx_faV3H9A19lVYtHdP_7bfc,111028
|
|
126
126
|
bl_ui/properties_paint_common/__init__.pyi,sha256=nfLPORhqIs6y-Zpq9Ae5rlof14sLbls1WBwOBOH1j0k,28020
|
|
@@ -216,7 +216,7 @@ bpy/ops/geometry/__init__.pyi,sha256=_RjcXX1js9nx5AzfYNwT7St7ePJ5-WZhqan_auY4EK8
|
|
|
216
216
|
bpy/ops/gizmogroup/__init__.pyi,sha256=DFmKRtSU4CC-ol2ze7F1ck0sWjcxuvxmSEN3v3QMSMs,1811
|
|
217
217
|
bpy/ops/gpencil/__init__.pyi,sha256=yJo5Wm_TiefXPVqNtCRfI45l5xBMdMH0KONs2McpH2k,110759
|
|
218
218
|
bpy/ops/graph/__init__.pyi,sha256=KapDjbMboo70TFOvdRHVs4U4Dfik40jqoSCzXn7tqL4,51146
|
|
219
|
-
bpy/ops/grease_pencil/__init__.pyi,sha256
|
|
219
|
+
bpy/ops/grease_pencil/__init__.pyi,sha256=-hjGkN0QUCm5xRGQHKdVQyQ7mbjwOF0hY9wSC6pGWKw,45150
|
|
220
220
|
bpy/ops/image/__init__.pyi,sha256=ZZsr3kM5O0FwWIlc_z0imE-1tmoYRsCvXDwvdVe2f70,62560
|
|
221
221
|
bpy/ops/import_anim/__init__.pyi,sha256=7mM5oQrn97txefqTHnT4L89ySHfZ2Ic8Sgy2xfChrV8,3077
|
|
222
222
|
bpy/ops/import_curve/__init__.pyi,sha256=zEW4XZeySdCypFeX7yOtRDbfyblTYthZ8nAf0uLiWkw,780
|
|
@@ -230,7 +230,7 @@ bpy/ops/mball/__init__.pyi,sha256=Grv6jeWqDX0M5fJfc118xS3n0KGFP27UeuZHK0RfGMk,53
|
|
|
230
230
|
bpy/ops/mesh/__init__.pyi,sha256=4ANZF7__zfKp9xETMKoraDxisGAxM-9TL8JJ-U1X53E,152717
|
|
231
231
|
bpy/ops/nla/__init__.pyi,sha256=fuqWkOfhF48-3_5rjAcoO5Y8vTrmb0qlk0PyAeQtVLU,24830
|
|
232
232
|
bpy/ops/node/__init__.pyi,sha256=GE2C5WzQ87-KaQNNsjQK8IGNf7R5Ju95wCw56k-M5Rk,65067
|
|
233
|
-
bpy/ops/object/__init__.pyi,sha256=
|
|
233
|
+
bpy/ops/object/__init__.pyi,sha256=TFPfsz38A1OsHGQ39Saj7vFAhHheU-xLxiAJSIFwnCY,202874
|
|
234
234
|
bpy/ops/outliner/__init__.pyi,sha256=ETM-rcMeT1jf4y3Z7bFnrjfKMRYC208_2pMKvHyjza4,38083
|
|
235
235
|
bpy/ops/paint/__init__.pyi,sha256=Vgc93NVldAvshYa3tSAwLvTj7hSupQfEvU8UFOcUtaU,44986
|
|
236
236
|
bpy/ops/paintcurve/__init__.pyi,sha256=SX6yrvs3Yq5Vt4G3mXkCUu5QakKhdSsY1d9YCEAHmbA,4429
|
|
@@ -255,7 +255,7 @@ bpy/ops/text/__init__.pyi,sha256=xHTFxheytbD996PX8BRHWTBGg0IpNh9jHn3dXy7MrDY,274
|
|
|
255
255
|
bpy/ops/text_editor/__init__.pyi,sha256=TP4_0GyiAMjMuMoW1isIYyJoCcNL0rFfXw-BwgbN9Bs,956
|
|
256
256
|
bpy/ops/texture/__init__.pyi,sha256=Koqx3eyK_gvXlVbwfL2YN9lU_I3T-jt4N846YuDjsNs,1765
|
|
257
257
|
bpy/ops/transform/__init__.pyi,sha256=gqH_upvMPxnZLoRyw8NGZjxevp5L7AkcmYSaw1tRKgo,61058
|
|
258
|
-
bpy/ops/ui/__init__.pyi,sha256=
|
|
258
|
+
bpy/ops/ui/__init__.pyi,sha256=1ccziOZGorUKavcCCg3xGGK-uLoLfooAsvOXsFh3--Y,16810
|
|
259
259
|
bpy/ops/uilist/__init__.pyi,sha256=hUBe9g9ff9d1Bx8AryLK--DQum_31-V1mQZ868s4_7o,2288
|
|
260
260
|
bpy/ops/uv/__init__.pyi,sha256=iTUnKdws1aFsHX2nGRyplZvNCpytKgcThsOJ84vIo54,49976
|
|
261
261
|
bpy/ops/view2d/__init__.pyi,sha256=LWQQFhFsNhXaVT0w0m47rD_T3cP9LThrpBxAFWFIa1U,9859
|
|
@@ -265,10 +265,10 @@ bpy/ops/workspace/__init__.pyi,sha256=5meuBP_QWCDCkoE2vQqdgBnkeRVsdoOvgqsDqZ1pfz
|
|
|
265
265
|
bpy/ops/world/__init__.pyi,sha256=imGbkOZ4Z_mNMwg2TwfpPf1DeGiige4UE-vc9991_tk,1032
|
|
266
266
|
bpy/path/__init__.pyi,sha256=_sJAmwZHhmcIXbchob_87KT_Nyv6R_qrX76gy9IbDRk,11515
|
|
267
267
|
bpy/props/__init__.pyi,sha256=vJGG9vmfN5MAwjlFMyI6LxKNJAIzPrhgWA4bPz08dQY,29550
|
|
268
|
-
bpy/types/__init__.pyi,sha256=
|
|
268
|
+
bpy/types/__init__.pyi,sha256=f8Tookb9mQIZlZMkTLqCMFvKC2BVL0anUBQLLeQGl1g,5218401
|
|
269
269
|
bpy/utils/__init__.pyi,sha256=j40qxVYp__ZU4OCAG7Vmw9IlI6Tj1yIm3SduACnsu4k,18625
|
|
270
270
|
bpy/utils/previews/__init__.pyi,sha256=odPazdv-bjKEVpeX-KfaDGZe5rKlMT11zL_q1SgPK3U,4255
|
|
271
|
-
bpy/utils/units/__init__.pyi,sha256=
|
|
271
|
+
bpy/utils/units/__init__.pyi,sha256=VVDH7jM3nup8W0XuPIQ0G3TdWN82Ufaw-Rk5JTHVU60,2694
|
|
272
272
|
bpy_extras/__init__.pyi,sha256=mSQGV3OnBDLrI9Bur-VUrKNXrE7dQbDDnQwb40kdi5I,862
|
|
273
273
|
bpy_extras/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
274
274
|
bpy_extras/anim_utils/__init__.pyi,sha256=KE2O6oo39l8MOX84X2DIYZPOwcE1TZud1cp0yVHtBJE,5975
|
|
@@ -302,7 +302,7 @@ freestyle/functions/__init__.pyi,sha256=ZXmo3TBOSEg7gDxSaAe1Who9s7XHOjiVwUnst275
|
|
|
302
302
|
freestyle/predicates/__init__.pyi,sha256=2VPAQ-M4LuOy6ANkIYLf5RIGABPYGeuwDh2wVLu22F4,13819
|
|
303
303
|
freestyle/shaders/__init__.pyi,sha256=VuHMETXrPC8vV4Texb-XGnoUOtSo0n_kigpTfqxFR-I,24803
|
|
304
304
|
freestyle/types/__init__.pyi,sha256=VCe-VgK250-VNWBE8Si61H3j2O7kTAGQ24M9QLEpEeU,100481
|
|
305
|
-
freestyle/utils/__init__.pyi,sha256=
|
|
305
|
+
freestyle/utils/__init__.pyi,sha256=88ywLTyjnusOrhmIX8PAChcAkuygLC2sScCDY2QHb8Q,5390
|
|
306
306
|
freestyle/utils/ContextFunctions/__init__.pyi,sha256=D3585MnopiUbhFr2rpLcaUq570SFcCf3RhGod9iTsvI,3554
|
|
307
307
|
gpu/__init__.pyi,sha256=0ZBmaKVBFpRxYV4uvzmA-ZN6J-Q3j3_j3T8-YnPuhJ0,7956
|
|
308
308
|
gpu/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -351,7 +351,7 @@ rna_xml/__init__.pyi,sha256=0qo0Lc6fTAAUSnHNIy0caLHVgK6-hk1havURr61jizM,601
|
|
|
351
351
|
rna_xml/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
352
352
|
sys_info/__init__.pyi,sha256=9MR_HOycufd8IKZQf-QDqUqE8Aj1D8n_Pfvi9wEKtvo,164
|
|
353
353
|
sys_info/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
354
|
-
fake_bpy_module-
|
|
355
|
-
fake_bpy_module-
|
|
356
|
-
fake_bpy_module-
|
|
357
|
-
fake_bpy_module-
|
|
354
|
+
fake_bpy_module-20240618.dist-info/METADATA,sha256=xIxGyih2CO27PvPKxOoCZ8u3wh6ObPE3xvGWJS1qHPE,7315
|
|
355
|
+
fake_bpy_module-20240618.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
356
|
+
fake_bpy_module-20240618.dist-info/top_level.txt,sha256=laOLfHIg0_6N4ntsGrWh85yODawYeLVGI-wex_FGLUI,509
|
|
357
|
+
fake_bpy_module-20240618.dist-info/RECORD,,
|
freestyle/utils/__init__.pyi
CHANGED
|
@@ -160,7 +160,7 @@ def material_from_fedge(fe):
|
|
|
160
160
|
...
|
|
161
161
|
|
|
162
162
|
def normal_at_I0D(it): ...
|
|
163
|
-
def pairwise(iterable, types={
|
|
163
|
+
def pairwise(iterable, types={Stroke, StrokeVertexIterator}):
|
|
164
164
|
"""Yields a tuple containing the previous and current object"""
|
|
165
165
|
|
|
166
166
|
...
|
|
File without changes
|
|
File without changes
|