fake-bpy-module 20250926__py3-none-any.whl → 20250928__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of fake-bpy-module might be problematic. Click here for more details.
- bl_operators/node/__init__.pyi +0 -9
- bl_ui/node_add_menu/__init__.pyi +16 -15
- bl_ui/node_add_menu_compositor/__init__.pyi +17 -17
- bl_ui/node_add_menu_geometry/__init__.pyi +56 -56
- bl_ui/node_add_menu_shader/__init__.pyi +10 -10
- bl_ui/node_add_menu_texture/__init__.pyi +1 -1
- bl_ui/properties_render/__init__.pyi +31 -0
- bl_ui/space_node/__init__.pyi +2 -2
- bpy/ops/action/__init__.pyi +3 -0
- bpy/ops/file/__init__.pyi +3 -0
- bpy/ops/graph/__init__.pyi +3 -0
- bpy/ops/marker/__init__.pyi +3 -0
- bpy/ops/nla/__init__.pyi +3 -0
- bpy/ops/node/__init__.pyi +206 -0
- bpy/ops/sequencer/__init__.pyi +6 -0
- bpy/ops/ui/__init__.pyi +12 -0
- bpy/stub_internal/rna_enums/__init__.pyi +2 -0
- bpy/types/__init__.pyi +635 -30
- {fake_bpy_module-20250926.dist-info → fake_bpy_module-20250928.dist-info}/METADATA +1 -1
- {fake_bpy_module-20250926.dist-info → fake_bpy_module-20250928.dist-info}/RECORD +23 -23
- freestyle/utils/__init__.pyi +1 -1
- {fake_bpy_module-20250926.dist-info → fake_bpy_module-20250928.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20250926.dist-info → fake_bpy_module-20250928.dist-info}/top_level.txt +0 -0
bpy/ops/node/__init__.pyi
CHANGED
|
@@ -577,11 +577,15 @@ def bake_node_item_add(
|
|
|
577
577
|
execution_context: int | str | None = None,
|
|
578
578
|
undo: bool | None = None,
|
|
579
579
|
/,
|
|
580
|
+
*,
|
|
581
|
+
node_identifier: int | None = 0,
|
|
580
582
|
) -> None:
|
|
581
583
|
"""Add item below active item
|
|
582
584
|
|
|
583
585
|
:type execution_context: int | str | None
|
|
584
586
|
:type undo: bool | None
|
|
587
|
+
:param node_identifier: Node Identifier, Optional identifier of the node to operate on
|
|
588
|
+
:type node_identifier: int | None
|
|
585
589
|
"""
|
|
586
590
|
|
|
587
591
|
def bake_node_item_move(
|
|
@@ -590,6 +594,7 @@ def bake_node_item_move(
|
|
|
590
594
|
/,
|
|
591
595
|
*,
|
|
592
596
|
direction: typing.Literal["UP", "DOWN"] | None = "UP",
|
|
597
|
+
node_identifier: int | None = 0,
|
|
593
598
|
) -> None:
|
|
594
599
|
"""Move active item
|
|
595
600
|
|
|
@@ -597,28 +602,38 @@ def bake_node_item_move(
|
|
|
597
602
|
:type undo: bool | None
|
|
598
603
|
:param direction: Direction, Move direction
|
|
599
604
|
:type direction: typing.Literal['UP','DOWN'] | None
|
|
605
|
+
:param node_identifier: Node Identifier, Optional identifier of the node to operate on
|
|
606
|
+
:type node_identifier: int | None
|
|
600
607
|
"""
|
|
601
608
|
|
|
602
609
|
def bake_node_item_remove(
|
|
603
610
|
execution_context: int | str | None = None,
|
|
604
611
|
undo: bool | None = None,
|
|
605
612
|
/,
|
|
613
|
+
*,
|
|
614
|
+
node_identifier: int | None = 0,
|
|
606
615
|
) -> None:
|
|
607
616
|
"""Remove active item
|
|
608
617
|
|
|
609
618
|
:type execution_context: int | str | None
|
|
610
619
|
:type undo: bool | None
|
|
620
|
+
:param node_identifier: Node Identifier, Optional identifier of the node to operate on
|
|
621
|
+
:type node_identifier: int | None
|
|
611
622
|
"""
|
|
612
623
|
|
|
613
624
|
def capture_attribute_item_add(
|
|
614
625
|
execution_context: int | str | None = None,
|
|
615
626
|
undo: bool | None = None,
|
|
616
627
|
/,
|
|
628
|
+
*,
|
|
629
|
+
node_identifier: int | None = 0,
|
|
617
630
|
) -> None:
|
|
618
631
|
"""Add item below active item
|
|
619
632
|
|
|
620
633
|
:type execution_context: int | str | None
|
|
621
634
|
:type undo: bool | None
|
|
635
|
+
:param node_identifier: Node Identifier, Optional identifier of the node to operate on
|
|
636
|
+
:type node_identifier: int | None
|
|
622
637
|
"""
|
|
623
638
|
|
|
624
639
|
def capture_attribute_item_move(
|
|
@@ -627,6 +642,7 @@ def capture_attribute_item_move(
|
|
|
627
642
|
/,
|
|
628
643
|
*,
|
|
629
644
|
direction: typing.Literal["UP", "DOWN"] | None = "UP",
|
|
645
|
+
node_identifier: int | None = 0,
|
|
630
646
|
) -> None:
|
|
631
647
|
"""Move active item
|
|
632
648
|
|
|
@@ -634,17 +650,23 @@ def capture_attribute_item_move(
|
|
|
634
650
|
:type undo: bool | None
|
|
635
651
|
:param direction: Direction, Move direction
|
|
636
652
|
:type direction: typing.Literal['UP','DOWN'] | None
|
|
653
|
+
:param node_identifier: Node Identifier, Optional identifier of the node to operate on
|
|
654
|
+
:type node_identifier: int | None
|
|
637
655
|
"""
|
|
638
656
|
|
|
639
657
|
def capture_attribute_item_remove(
|
|
640
658
|
execution_context: int | str | None = None,
|
|
641
659
|
undo: bool | None = None,
|
|
642
660
|
/,
|
|
661
|
+
*,
|
|
662
|
+
node_identifier: int | None = 0,
|
|
643
663
|
) -> None:
|
|
644
664
|
"""Remove active item
|
|
645
665
|
|
|
646
666
|
:type execution_context: int | str | None
|
|
647
667
|
:type undo: bool | None
|
|
668
|
+
:param node_identifier: Node Identifier, Optional identifier of the node to operate on
|
|
669
|
+
:type node_identifier: int | None
|
|
648
670
|
"""
|
|
649
671
|
|
|
650
672
|
def clear_viewer_border(
|
|
@@ -688,11 +710,15 @@ def closure_input_item_add(
|
|
|
688
710
|
execution_context: int | str | None = None,
|
|
689
711
|
undo: bool | None = None,
|
|
690
712
|
/,
|
|
713
|
+
*,
|
|
714
|
+
node_identifier: int | None = 0,
|
|
691
715
|
) -> None:
|
|
692
716
|
"""Add item below active item
|
|
693
717
|
|
|
694
718
|
:type execution_context: int | str | None
|
|
695
719
|
:type undo: bool | None
|
|
720
|
+
:param node_identifier: Node Identifier, Optional identifier of the node to operate on
|
|
721
|
+
:type node_identifier: int | None
|
|
696
722
|
"""
|
|
697
723
|
|
|
698
724
|
def closure_input_item_move(
|
|
@@ -701,6 +727,7 @@ def closure_input_item_move(
|
|
|
701
727
|
/,
|
|
702
728
|
*,
|
|
703
729
|
direction: typing.Literal["UP", "DOWN"] | None = "UP",
|
|
730
|
+
node_identifier: int | None = 0,
|
|
704
731
|
) -> None:
|
|
705
732
|
"""Move active item
|
|
706
733
|
|
|
@@ -708,28 +735,38 @@ def closure_input_item_move(
|
|
|
708
735
|
:type undo: bool | None
|
|
709
736
|
:param direction: Direction, Move direction
|
|
710
737
|
:type direction: typing.Literal['UP','DOWN'] | None
|
|
738
|
+
:param node_identifier: Node Identifier, Optional identifier of the node to operate on
|
|
739
|
+
:type node_identifier: int | None
|
|
711
740
|
"""
|
|
712
741
|
|
|
713
742
|
def closure_input_item_remove(
|
|
714
743
|
execution_context: int | str | None = None,
|
|
715
744
|
undo: bool | None = None,
|
|
716
745
|
/,
|
|
746
|
+
*,
|
|
747
|
+
node_identifier: int | None = 0,
|
|
717
748
|
) -> None:
|
|
718
749
|
"""Remove active item
|
|
719
750
|
|
|
720
751
|
:type execution_context: int | str | None
|
|
721
752
|
:type undo: bool | None
|
|
753
|
+
:param node_identifier: Node Identifier, Optional identifier of the node to operate on
|
|
754
|
+
:type node_identifier: int | None
|
|
722
755
|
"""
|
|
723
756
|
|
|
724
757
|
def closure_output_item_add(
|
|
725
758
|
execution_context: int | str | None = None,
|
|
726
759
|
undo: bool | None = None,
|
|
727
760
|
/,
|
|
761
|
+
*,
|
|
762
|
+
node_identifier: int | None = 0,
|
|
728
763
|
) -> None:
|
|
729
764
|
"""Add item below active item
|
|
730
765
|
|
|
731
766
|
:type execution_context: int | str | None
|
|
732
767
|
:type undo: bool | None
|
|
768
|
+
:param node_identifier: Node Identifier, Optional identifier of the node to operate on
|
|
769
|
+
:type node_identifier: int | None
|
|
733
770
|
"""
|
|
734
771
|
|
|
735
772
|
def closure_output_item_move(
|
|
@@ -738,6 +775,7 @@ def closure_output_item_move(
|
|
|
738
775
|
/,
|
|
739
776
|
*,
|
|
740
777
|
direction: typing.Literal["UP", "DOWN"] | None = "UP",
|
|
778
|
+
node_identifier: int | None = 0,
|
|
741
779
|
) -> None:
|
|
742
780
|
"""Move active item
|
|
743
781
|
|
|
@@ -745,17 +783,23 @@ def closure_output_item_move(
|
|
|
745
783
|
:type undo: bool | None
|
|
746
784
|
:param direction: Direction, Move direction
|
|
747
785
|
:type direction: typing.Literal['UP','DOWN'] | None
|
|
786
|
+
:param node_identifier: Node Identifier, Optional identifier of the node to operate on
|
|
787
|
+
:type node_identifier: int | None
|
|
748
788
|
"""
|
|
749
789
|
|
|
750
790
|
def closure_output_item_remove(
|
|
751
791
|
execution_context: int | str | None = None,
|
|
752
792
|
undo: bool | None = None,
|
|
753
793
|
/,
|
|
794
|
+
*,
|
|
795
|
+
node_identifier: int | None = 0,
|
|
754
796
|
) -> None:
|
|
755
797
|
"""Remove active item
|
|
756
798
|
|
|
757
799
|
:type execution_context: int | str | None
|
|
758
800
|
:type undo: bool | None
|
|
801
|
+
:param node_identifier: Node Identifier, Optional identifier of the node to operate on
|
|
802
|
+
:type node_identifier: int | None
|
|
759
803
|
"""
|
|
760
804
|
|
|
761
805
|
def collapse_hide_unused_toggle(
|
|
@@ -773,11 +817,15 @@ def combine_bundle_item_add(
|
|
|
773
817
|
execution_context: int | str | None = None,
|
|
774
818
|
undo: bool | None = None,
|
|
775
819
|
/,
|
|
820
|
+
*,
|
|
821
|
+
node_identifier: int | None = 0,
|
|
776
822
|
) -> None:
|
|
777
823
|
"""Add item below active item
|
|
778
824
|
|
|
779
825
|
:type execution_context: int | str | None
|
|
780
826
|
:type undo: bool | None
|
|
827
|
+
:param node_identifier: Node Identifier, Optional identifier of the node to operate on
|
|
828
|
+
:type node_identifier: int | None
|
|
781
829
|
"""
|
|
782
830
|
|
|
783
831
|
def combine_bundle_item_move(
|
|
@@ -786,6 +834,7 @@ def combine_bundle_item_move(
|
|
|
786
834
|
/,
|
|
787
835
|
*,
|
|
788
836
|
direction: typing.Literal["UP", "DOWN"] | None = "UP",
|
|
837
|
+
node_identifier: int | None = 0,
|
|
789
838
|
) -> None:
|
|
790
839
|
"""Move active item
|
|
791
840
|
|
|
@@ -793,17 +842,23 @@ def combine_bundle_item_move(
|
|
|
793
842
|
:type undo: bool | None
|
|
794
843
|
:param direction: Direction, Move direction
|
|
795
844
|
:type direction: typing.Literal['UP','DOWN'] | None
|
|
845
|
+
:param node_identifier: Node Identifier, Optional identifier of the node to operate on
|
|
846
|
+
:type node_identifier: int | None
|
|
796
847
|
"""
|
|
797
848
|
|
|
798
849
|
def combine_bundle_item_remove(
|
|
799
850
|
execution_context: int | str | None = None,
|
|
800
851
|
undo: bool | None = None,
|
|
801
852
|
/,
|
|
853
|
+
*,
|
|
854
|
+
node_identifier: int | None = 0,
|
|
802
855
|
) -> None:
|
|
803
856
|
"""Remove active item
|
|
804
857
|
|
|
805
858
|
:type execution_context: int | str | None
|
|
806
859
|
:type undo: bool | None
|
|
860
|
+
:param node_identifier: Node Identifier, Optional identifier of the node to operate on
|
|
861
|
+
:type node_identifier: int | None
|
|
807
862
|
"""
|
|
808
863
|
|
|
809
864
|
def connect_to_output(
|
|
@@ -995,11 +1050,15 @@ def enum_definition_item_add(
|
|
|
995
1050
|
execution_context: int | str | None = None,
|
|
996
1051
|
undo: bool | None = None,
|
|
997
1052
|
/,
|
|
1053
|
+
*,
|
|
1054
|
+
node_identifier: int | None = 0,
|
|
998
1055
|
) -> None:
|
|
999
1056
|
"""Add item below active item
|
|
1000
1057
|
|
|
1001
1058
|
:type execution_context: int | str | None
|
|
1002
1059
|
:type undo: bool | None
|
|
1060
|
+
:param node_identifier: Node Identifier, Optional identifier of the node to operate on
|
|
1061
|
+
:type node_identifier: int | None
|
|
1003
1062
|
"""
|
|
1004
1063
|
|
|
1005
1064
|
def enum_definition_item_move(
|
|
@@ -1008,6 +1067,7 @@ def enum_definition_item_move(
|
|
|
1008
1067
|
/,
|
|
1009
1068
|
*,
|
|
1010
1069
|
direction: typing.Literal["UP", "DOWN"] | None = "UP",
|
|
1070
|
+
node_identifier: int | None = 0,
|
|
1011
1071
|
) -> None:
|
|
1012
1072
|
"""Move active item
|
|
1013
1073
|
|
|
@@ -1015,28 +1075,38 @@ def enum_definition_item_move(
|
|
|
1015
1075
|
:type undo: bool | None
|
|
1016
1076
|
:param direction: Direction, Move direction
|
|
1017
1077
|
:type direction: typing.Literal['UP','DOWN'] | None
|
|
1078
|
+
:param node_identifier: Node Identifier, Optional identifier of the node to operate on
|
|
1079
|
+
:type node_identifier: int | None
|
|
1018
1080
|
"""
|
|
1019
1081
|
|
|
1020
1082
|
def enum_definition_item_remove(
|
|
1021
1083
|
execution_context: int | str | None = None,
|
|
1022
1084
|
undo: bool | None = None,
|
|
1023
1085
|
/,
|
|
1086
|
+
*,
|
|
1087
|
+
node_identifier: int | None = 0,
|
|
1024
1088
|
) -> None:
|
|
1025
1089
|
"""Remove active item
|
|
1026
1090
|
|
|
1027
1091
|
:type execution_context: int | str | None
|
|
1028
1092
|
:type undo: bool | None
|
|
1093
|
+
:param node_identifier: Node Identifier, Optional identifier of the node to operate on
|
|
1094
|
+
:type node_identifier: int | None
|
|
1029
1095
|
"""
|
|
1030
1096
|
|
|
1031
1097
|
def evaluate_closure_input_item_add(
|
|
1032
1098
|
execution_context: int | str | None = None,
|
|
1033
1099
|
undo: bool | None = None,
|
|
1034
1100
|
/,
|
|
1101
|
+
*,
|
|
1102
|
+
node_identifier: int | None = 0,
|
|
1035
1103
|
) -> None:
|
|
1036
1104
|
"""Add item below active item
|
|
1037
1105
|
|
|
1038
1106
|
:type execution_context: int | str | None
|
|
1039
1107
|
:type undo: bool | None
|
|
1108
|
+
:param node_identifier: Node Identifier, Optional identifier of the node to operate on
|
|
1109
|
+
:type node_identifier: int | None
|
|
1040
1110
|
"""
|
|
1041
1111
|
|
|
1042
1112
|
def evaluate_closure_input_item_move(
|
|
@@ -1045,6 +1115,7 @@ def evaluate_closure_input_item_move(
|
|
|
1045
1115
|
/,
|
|
1046
1116
|
*,
|
|
1047
1117
|
direction: typing.Literal["UP", "DOWN"] | None = "UP",
|
|
1118
|
+
node_identifier: int | None = 0,
|
|
1048
1119
|
) -> None:
|
|
1049
1120
|
"""Move active item
|
|
1050
1121
|
|
|
@@ -1052,28 +1123,38 @@ def evaluate_closure_input_item_move(
|
|
|
1052
1123
|
:type undo: bool | None
|
|
1053
1124
|
:param direction: Direction, Move direction
|
|
1054
1125
|
:type direction: typing.Literal['UP','DOWN'] | None
|
|
1126
|
+
:param node_identifier: Node Identifier, Optional identifier of the node to operate on
|
|
1127
|
+
:type node_identifier: int | None
|
|
1055
1128
|
"""
|
|
1056
1129
|
|
|
1057
1130
|
def evaluate_closure_input_item_remove(
|
|
1058
1131
|
execution_context: int | str | None = None,
|
|
1059
1132
|
undo: bool | None = None,
|
|
1060
1133
|
/,
|
|
1134
|
+
*,
|
|
1135
|
+
node_identifier: int | None = 0,
|
|
1061
1136
|
) -> None:
|
|
1062
1137
|
"""Remove active item
|
|
1063
1138
|
|
|
1064
1139
|
:type execution_context: int | str | None
|
|
1065
1140
|
:type undo: bool | None
|
|
1141
|
+
:param node_identifier: Node Identifier, Optional identifier of the node to operate on
|
|
1142
|
+
:type node_identifier: int | None
|
|
1066
1143
|
"""
|
|
1067
1144
|
|
|
1068
1145
|
def evaluate_closure_output_item_add(
|
|
1069
1146
|
execution_context: int | str | None = None,
|
|
1070
1147
|
undo: bool | None = None,
|
|
1071
1148
|
/,
|
|
1149
|
+
*,
|
|
1150
|
+
node_identifier: int | None = 0,
|
|
1072
1151
|
) -> None:
|
|
1073
1152
|
"""Add item below active item
|
|
1074
1153
|
|
|
1075
1154
|
:type execution_context: int | str | None
|
|
1076
1155
|
:type undo: bool | None
|
|
1156
|
+
:param node_identifier: Node Identifier, Optional identifier of the node to operate on
|
|
1157
|
+
:type node_identifier: int | None
|
|
1077
1158
|
"""
|
|
1078
1159
|
|
|
1079
1160
|
def evaluate_closure_output_item_move(
|
|
@@ -1082,6 +1163,7 @@ def evaluate_closure_output_item_move(
|
|
|
1082
1163
|
/,
|
|
1083
1164
|
*,
|
|
1084
1165
|
direction: typing.Literal["UP", "DOWN"] | None = "UP",
|
|
1166
|
+
node_identifier: int | None = 0,
|
|
1085
1167
|
) -> None:
|
|
1086
1168
|
"""Move active item
|
|
1087
1169
|
|
|
@@ -1089,28 +1171,38 @@ def evaluate_closure_output_item_move(
|
|
|
1089
1171
|
:type undo: bool | None
|
|
1090
1172
|
:param direction: Direction, Move direction
|
|
1091
1173
|
:type direction: typing.Literal['UP','DOWN'] | None
|
|
1174
|
+
:param node_identifier: Node Identifier, Optional identifier of the node to operate on
|
|
1175
|
+
:type node_identifier: int | None
|
|
1092
1176
|
"""
|
|
1093
1177
|
|
|
1094
1178
|
def evaluate_closure_output_item_remove(
|
|
1095
1179
|
execution_context: int | str | None = None,
|
|
1096
1180
|
undo: bool | None = None,
|
|
1097
1181
|
/,
|
|
1182
|
+
*,
|
|
1183
|
+
node_identifier: int | None = 0,
|
|
1098
1184
|
) -> None:
|
|
1099
1185
|
"""Remove active item
|
|
1100
1186
|
|
|
1101
1187
|
:type execution_context: int | str | None
|
|
1102
1188
|
:type undo: bool | None
|
|
1189
|
+
:param node_identifier: Node Identifier, Optional identifier of the node to operate on
|
|
1190
|
+
:type node_identifier: int | None
|
|
1103
1191
|
"""
|
|
1104
1192
|
|
|
1105
1193
|
def file_output_item_add(
|
|
1106
1194
|
execution_context: int | str | None = None,
|
|
1107
1195
|
undo: bool | None = None,
|
|
1108
1196
|
/,
|
|
1197
|
+
*,
|
|
1198
|
+
node_identifier: int | None = 0,
|
|
1109
1199
|
) -> None:
|
|
1110
1200
|
"""Add item below active item
|
|
1111
1201
|
|
|
1112
1202
|
:type execution_context: int | str | None
|
|
1113
1203
|
:type undo: bool | None
|
|
1204
|
+
:param node_identifier: Node Identifier, Optional identifier of the node to operate on
|
|
1205
|
+
:type node_identifier: int | None
|
|
1114
1206
|
"""
|
|
1115
1207
|
|
|
1116
1208
|
def file_output_item_move(
|
|
@@ -1119,6 +1211,7 @@ def file_output_item_move(
|
|
|
1119
1211
|
/,
|
|
1120
1212
|
*,
|
|
1121
1213
|
direction: typing.Literal["UP", "DOWN"] | None = "UP",
|
|
1214
|
+
node_identifier: int | None = 0,
|
|
1122
1215
|
) -> None:
|
|
1123
1216
|
"""Move active item
|
|
1124
1217
|
|
|
@@ -1126,17 +1219,23 @@ def file_output_item_move(
|
|
|
1126
1219
|
:type undo: bool | None
|
|
1127
1220
|
:param direction: Direction, Move direction
|
|
1128
1221
|
:type direction: typing.Literal['UP','DOWN'] | None
|
|
1222
|
+
:param node_identifier: Node Identifier, Optional identifier of the node to operate on
|
|
1223
|
+
:type node_identifier: int | None
|
|
1129
1224
|
"""
|
|
1130
1225
|
|
|
1131
1226
|
def file_output_item_remove(
|
|
1132
1227
|
execution_context: int | str | None = None,
|
|
1133
1228
|
undo: bool | None = None,
|
|
1134
1229
|
/,
|
|
1230
|
+
*,
|
|
1231
|
+
node_identifier: int | None = 0,
|
|
1135
1232
|
) -> None:
|
|
1136
1233
|
"""Remove active item
|
|
1137
1234
|
|
|
1138
1235
|
:type execution_context: int | str | None
|
|
1139
1236
|
:type undo: bool | None
|
|
1237
|
+
:param node_identifier: Node Identifier, Optional identifier of the node to operate on
|
|
1238
|
+
:type node_identifier: int | None
|
|
1140
1239
|
"""
|
|
1141
1240
|
|
|
1142
1241
|
def find_node(
|
|
@@ -1154,11 +1253,15 @@ def foreach_geometry_element_zone_generation_item_add(
|
|
|
1154
1253
|
execution_context: int | str | None = None,
|
|
1155
1254
|
undo: bool | None = None,
|
|
1156
1255
|
/,
|
|
1256
|
+
*,
|
|
1257
|
+
node_identifier: int | None = 0,
|
|
1157
1258
|
) -> None:
|
|
1158
1259
|
"""Add item below active item
|
|
1159
1260
|
|
|
1160
1261
|
:type execution_context: int | str | None
|
|
1161
1262
|
:type undo: bool | None
|
|
1263
|
+
:param node_identifier: Node Identifier, Optional identifier of the node to operate on
|
|
1264
|
+
:type node_identifier: int | None
|
|
1162
1265
|
"""
|
|
1163
1266
|
|
|
1164
1267
|
def foreach_geometry_element_zone_generation_item_move(
|
|
@@ -1167,6 +1270,7 @@ def foreach_geometry_element_zone_generation_item_move(
|
|
|
1167
1270
|
/,
|
|
1168
1271
|
*,
|
|
1169
1272
|
direction: typing.Literal["UP", "DOWN"] | None = "UP",
|
|
1273
|
+
node_identifier: int | None = 0,
|
|
1170
1274
|
) -> None:
|
|
1171
1275
|
"""Move active item
|
|
1172
1276
|
|
|
@@ -1174,28 +1278,38 @@ def foreach_geometry_element_zone_generation_item_move(
|
|
|
1174
1278
|
:type undo: bool | None
|
|
1175
1279
|
:param direction: Direction, Move direction
|
|
1176
1280
|
:type direction: typing.Literal['UP','DOWN'] | None
|
|
1281
|
+
:param node_identifier: Node Identifier, Optional identifier of the node to operate on
|
|
1282
|
+
:type node_identifier: int | None
|
|
1177
1283
|
"""
|
|
1178
1284
|
|
|
1179
1285
|
def foreach_geometry_element_zone_generation_item_remove(
|
|
1180
1286
|
execution_context: int | str | None = None,
|
|
1181
1287
|
undo: bool | None = None,
|
|
1182
1288
|
/,
|
|
1289
|
+
*,
|
|
1290
|
+
node_identifier: int | None = 0,
|
|
1183
1291
|
) -> None:
|
|
1184
1292
|
"""Remove active item
|
|
1185
1293
|
|
|
1186
1294
|
:type execution_context: int | str | None
|
|
1187
1295
|
:type undo: bool | None
|
|
1296
|
+
:param node_identifier: Node Identifier, Optional identifier of the node to operate on
|
|
1297
|
+
:type node_identifier: int | None
|
|
1188
1298
|
"""
|
|
1189
1299
|
|
|
1190
1300
|
def foreach_geometry_element_zone_input_item_add(
|
|
1191
1301
|
execution_context: int | str | None = None,
|
|
1192
1302
|
undo: bool | None = None,
|
|
1193
1303
|
/,
|
|
1304
|
+
*,
|
|
1305
|
+
node_identifier: int | None = 0,
|
|
1194
1306
|
) -> None:
|
|
1195
1307
|
"""Add item below active item
|
|
1196
1308
|
|
|
1197
1309
|
:type execution_context: int | str | None
|
|
1198
1310
|
:type undo: bool | None
|
|
1311
|
+
:param node_identifier: Node Identifier, Optional identifier of the node to operate on
|
|
1312
|
+
:type node_identifier: int | None
|
|
1199
1313
|
"""
|
|
1200
1314
|
|
|
1201
1315
|
def foreach_geometry_element_zone_input_item_move(
|
|
@@ -1204,6 +1318,7 @@ def foreach_geometry_element_zone_input_item_move(
|
|
|
1204
1318
|
/,
|
|
1205
1319
|
*,
|
|
1206
1320
|
direction: typing.Literal["UP", "DOWN"] | None = "UP",
|
|
1321
|
+
node_identifier: int | None = 0,
|
|
1207
1322
|
) -> None:
|
|
1208
1323
|
"""Move active item
|
|
1209
1324
|
|
|
@@ -1211,28 +1326,38 @@ def foreach_geometry_element_zone_input_item_move(
|
|
|
1211
1326
|
:type undo: bool | None
|
|
1212
1327
|
:param direction: Direction, Move direction
|
|
1213
1328
|
:type direction: typing.Literal['UP','DOWN'] | None
|
|
1329
|
+
:param node_identifier: Node Identifier, Optional identifier of the node to operate on
|
|
1330
|
+
:type node_identifier: int | None
|
|
1214
1331
|
"""
|
|
1215
1332
|
|
|
1216
1333
|
def foreach_geometry_element_zone_input_item_remove(
|
|
1217
1334
|
execution_context: int | str | None = None,
|
|
1218
1335
|
undo: bool | None = None,
|
|
1219
1336
|
/,
|
|
1337
|
+
*,
|
|
1338
|
+
node_identifier: int | None = 0,
|
|
1220
1339
|
) -> None:
|
|
1221
1340
|
"""Remove active item
|
|
1222
1341
|
|
|
1223
1342
|
:type execution_context: int | str | None
|
|
1224
1343
|
:type undo: bool | None
|
|
1344
|
+
:param node_identifier: Node Identifier, Optional identifier of the node to operate on
|
|
1345
|
+
:type node_identifier: int | None
|
|
1225
1346
|
"""
|
|
1226
1347
|
|
|
1227
1348
|
def foreach_geometry_element_zone_main_item_add(
|
|
1228
1349
|
execution_context: int | str | None = None,
|
|
1229
1350
|
undo: bool | None = None,
|
|
1230
1351
|
/,
|
|
1352
|
+
*,
|
|
1353
|
+
node_identifier: int | None = 0,
|
|
1231
1354
|
) -> None:
|
|
1232
1355
|
"""Add item below active item
|
|
1233
1356
|
|
|
1234
1357
|
:type execution_context: int | str | None
|
|
1235
1358
|
:type undo: bool | None
|
|
1359
|
+
:param node_identifier: Node Identifier, Optional identifier of the node to operate on
|
|
1360
|
+
:type node_identifier: int | None
|
|
1236
1361
|
"""
|
|
1237
1362
|
|
|
1238
1363
|
def foreach_geometry_element_zone_main_item_move(
|
|
@@ -1241,6 +1366,7 @@ def foreach_geometry_element_zone_main_item_move(
|
|
|
1241
1366
|
/,
|
|
1242
1367
|
*,
|
|
1243
1368
|
direction: typing.Literal["UP", "DOWN"] | None = "UP",
|
|
1369
|
+
node_identifier: int | None = 0,
|
|
1244
1370
|
) -> None:
|
|
1245
1371
|
"""Move active item
|
|
1246
1372
|
|
|
@@ -1248,28 +1374,38 @@ def foreach_geometry_element_zone_main_item_move(
|
|
|
1248
1374
|
:type undo: bool | None
|
|
1249
1375
|
:param direction: Direction, Move direction
|
|
1250
1376
|
:type direction: typing.Literal['UP','DOWN'] | None
|
|
1377
|
+
:param node_identifier: Node Identifier, Optional identifier of the node to operate on
|
|
1378
|
+
:type node_identifier: int | None
|
|
1251
1379
|
"""
|
|
1252
1380
|
|
|
1253
1381
|
def foreach_geometry_element_zone_main_item_remove(
|
|
1254
1382
|
execution_context: int | str | None = None,
|
|
1255
1383
|
undo: bool | None = None,
|
|
1256
1384
|
/,
|
|
1385
|
+
*,
|
|
1386
|
+
node_identifier: int | None = 0,
|
|
1257
1387
|
) -> None:
|
|
1258
1388
|
"""Remove active item
|
|
1259
1389
|
|
|
1260
1390
|
:type execution_context: int | str | None
|
|
1261
1391
|
:type undo: bool | None
|
|
1392
|
+
:param node_identifier: Node Identifier, Optional identifier of the node to operate on
|
|
1393
|
+
:type node_identifier: int | None
|
|
1262
1394
|
"""
|
|
1263
1395
|
|
|
1264
1396
|
def format_string_item_add(
|
|
1265
1397
|
execution_context: int | str | None = None,
|
|
1266
1398
|
undo: bool | None = None,
|
|
1267
1399
|
/,
|
|
1400
|
+
*,
|
|
1401
|
+
node_identifier: int | None = 0,
|
|
1268
1402
|
) -> None:
|
|
1269
1403
|
"""Add item below active item
|
|
1270
1404
|
|
|
1271
1405
|
:type execution_context: int | str | None
|
|
1272
1406
|
:type undo: bool | None
|
|
1407
|
+
:param node_identifier: Node Identifier, Optional identifier of the node to operate on
|
|
1408
|
+
:type node_identifier: int | None
|
|
1273
1409
|
"""
|
|
1274
1410
|
|
|
1275
1411
|
def format_string_item_move(
|
|
@@ -1278,6 +1414,7 @@ def format_string_item_move(
|
|
|
1278
1414
|
/,
|
|
1279
1415
|
*,
|
|
1280
1416
|
direction: typing.Literal["UP", "DOWN"] | None = "UP",
|
|
1417
|
+
node_identifier: int | None = 0,
|
|
1281
1418
|
) -> None:
|
|
1282
1419
|
"""Move active item
|
|
1283
1420
|
|
|
@@ -1285,28 +1422,38 @@ def format_string_item_move(
|
|
|
1285
1422
|
:type undo: bool | None
|
|
1286
1423
|
:param direction: Direction, Move direction
|
|
1287
1424
|
:type direction: typing.Literal['UP','DOWN'] | None
|
|
1425
|
+
:param node_identifier: Node Identifier, Optional identifier of the node to operate on
|
|
1426
|
+
:type node_identifier: int | None
|
|
1288
1427
|
"""
|
|
1289
1428
|
|
|
1290
1429
|
def format_string_item_remove(
|
|
1291
1430
|
execution_context: int | str | None = None,
|
|
1292
1431
|
undo: bool | None = None,
|
|
1293
1432
|
/,
|
|
1433
|
+
*,
|
|
1434
|
+
node_identifier: int | None = 0,
|
|
1294
1435
|
) -> None:
|
|
1295
1436
|
"""Remove active item
|
|
1296
1437
|
|
|
1297
1438
|
:type execution_context: int | str | None
|
|
1298
1439
|
:type undo: bool | None
|
|
1440
|
+
:param node_identifier: Node Identifier, Optional identifier of the node to operate on
|
|
1441
|
+
:type node_identifier: int | None
|
|
1299
1442
|
"""
|
|
1300
1443
|
|
|
1301
1444
|
def geometry_nodes_viewer_item_add(
|
|
1302
1445
|
execution_context: int | str | None = None,
|
|
1303
1446
|
undo: bool | None = None,
|
|
1304
1447
|
/,
|
|
1448
|
+
*,
|
|
1449
|
+
node_identifier: int | None = 0,
|
|
1305
1450
|
) -> None:
|
|
1306
1451
|
"""Add item below active item
|
|
1307
1452
|
|
|
1308
1453
|
:type execution_context: int | str | None
|
|
1309
1454
|
:type undo: bool | None
|
|
1455
|
+
:param node_identifier: Node Identifier, Optional identifier of the node to operate on
|
|
1456
|
+
:type node_identifier: int | None
|
|
1310
1457
|
"""
|
|
1311
1458
|
|
|
1312
1459
|
def geometry_nodes_viewer_item_move(
|
|
@@ -1315,6 +1462,7 @@ def geometry_nodes_viewer_item_move(
|
|
|
1315
1462
|
/,
|
|
1316
1463
|
*,
|
|
1317
1464
|
direction: typing.Literal["UP", "DOWN"] | None = "UP",
|
|
1465
|
+
node_identifier: int | None = 0,
|
|
1318
1466
|
) -> None:
|
|
1319
1467
|
"""Move active item
|
|
1320
1468
|
|
|
@@ -1322,17 +1470,23 @@ def geometry_nodes_viewer_item_move(
|
|
|
1322
1470
|
:type undo: bool | None
|
|
1323
1471
|
:param direction: Direction, Move direction
|
|
1324
1472
|
:type direction: typing.Literal['UP','DOWN'] | None
|
|
1473
|
+
:param node_identifier: Node Identifier, Optional identifier of the node to operate on
|
|
1474
|
+
:type node_identifier: int | None
|
|
1325
1475
|
"""
|
|
1326
1476
|
|
|
1327
1477
|
def geometry_nodes_viewer_item_remove(
|
|
1328
1478
|
execution_context: int | str | None = None,
|
|
1329
1479
|
undo: bool | None = None,
|
|
1330
1480
|
/,
|
|
1481
|
+
*,
|
|
1482
|
+
node_identifier: int | None = 0,
|
|
1331
1483
|
) -> None:
|
|
1332
1484
|
"""Remove active item
|
|
1333
1485
|
|
|
1334
1486
|
:type execution_context: int | str | None
|
|
1335
1487
|
:type undo: bool | None
|
|
1488
|
+
:param node_identifier: Node Identifier, Optional identifier of the node to operate on
|
|
1489
|
+
:type node_identifier: int | None
|
|
1336
1490
|
"""
|
|
1337
1491
|
|
|
1338
1492
|
def gltf_settings_node_operator(
|
|
@@ -1441,11 +1595,15 @@ def index_switch_item_add(
|
|
|
1441
1595
|
execution_context: int | str | None = None,
|
|
1442
1596
|
undo: bool | None = None,
|
|
1443
1597
|
/,
|
|
1598
|
+
*,
|
|
1599
|
+
node_identifier: int | None = 0,
|
|
1444
1600
|
) -> None:
|
|
1445
1601
|
"""Add bake item
|
|
1446
1602
|
|
|
1447
1603
|
:type execution_context: int | str | None
|
|
1448
1604
|
:type undo: bool | None
|
|
1605
|
+
:param node_identifier: Node Identifier, Optional identifier of the node to operate on
|
|
1606
|
+
:type node_identifier: int | None
|
|
1449
1607
|
"""
|
|
1450
1608
|
|
|
1451
1609
|
def index_switch_item_remove(
|
|
@@ -1733,6 +1891,21 @@ def new_compositing_node_group(
|
|
|
1733
1891
|
:type name: str
|
|
1734
1892
|
"""
|
|
1735
1893
|
|
|
1894
|
+
def new_compositor_sequencer_node_group(
|
|
1895
|
+
execution_context: int | str | None = None,
|
|
1896
|
+
undo: bool | None = None,
|
|
1897
|
+
/,
|
|
1898
|
+
*,
|
|
1899
|
+
name: str = "Sequencer Compositor Nodes",
|
|
1900
|
+
) -> None:
|
|
1901
|
+
"""Create a new compositor node group for sequencer
|
|
1902
|
+
|
|
1903
|
+
:type execution_context: int | str | None
|
|
1904
|
+
:type undo: bool | None
|
|
1905
|
+
:param name: Name
|
|
1906
|
+
:type name: str
|
|
1907
|
+
"""
|
|
1908
|
+
|
|
1736
1909
|
def new_geometry_node_group_assign(
|
|
1737
1910
|
execution_context: int | str | None = None,
|
|
1738
1911
|
undo: bool | None = None,
|
|
@@ -1875,11 +2048,15 @@ def repeat_zone_item_add(
|
|
|
1875
2048
|
execution_context: int | str | None = None,
|
|
1876
2049
|
undo: bool | None = None,
|
|
1877
2050
|
/,
|
|
2051
|
+
*,
|
|
2052
|
+
node_identifier: int | None = 0,
|
|
1878
2053
|
) -> None:
|
|
1879
2054
|
"""Add item below active item
|
|
1880
2055
|
|
|
1881
2056
|
:type execution_context: int | str | None
|
|
1882
2057
|
:type undo: bool | None
|
|
2058
|
+
:param node_identifier: Node Identifier, Optional identifier of the node to operate on
|
|
2059
|
+
:type node_identifier: int | None
|
|
1883
2060
|
"""
|
|
1884
2061
|
|
|
1885
2062
|
def repeat_zone_item_move(
|
|
@@ -1888,6 +2065,7 @@ def repeat_zone_item_move(
|
|
|
1888
2065
|
/,
|
|
1889
2066
|
*,
|
|
1890
2067
|
direction: typing.Literal["UP", "DOWN"] | None = "UP",
|
|
2068
|
+
node_identifier: int | None = 0,
|
|
1891
2069
|
) -> None:
|
|
1892
2070
|
"""Move active item
|
|
1893
2071
|
|
|
@@ -1895,17 +2073,23 @@ def repeat_zone_item_move(
|
|
|
1895
2073
|
:type undo: bool | None
|
|
1896
2074
|
:param direction: Direction, Move direction
|
|
1897
2075
|
:type direction: typing.Literal['UP','DOWN'] | None
|
|
2076
|
+
:param node_identifier: Node Identifier, Optional identifier of the node to operate on
|
|
2077
|
+
:type node_identifier: int | None
|
|
1898
2078
|
"""
|
|
1899
2079
|
|
|
1900
2080
|
def repeat_zone_item_remove(
|
|
1901
2081
|
execution_context: int | str | None = None,
|
|
1902
2082
|
undo: bool | None = None,
|
|
1903
2083
|
/,
|
|
2084
|
+
*,
|
|
2085
|
+
node_identifier: int | None = 0,
|
|
1904
2086
|
) -> None:
|
|
1905
2087
|
"""Remove active item
|
|
1906
2088
|
|
|
1907
2089
|
:type execution_context: int | str | None
|
|
1908
2090
|
:type undo: bool | None
|
|
2091
|
+
:param node_identifier: Node Identifier, Optional identifier of the node to operate on
|
|
2092
|
+
:type node_identifier: int | None
|
|
1909
2093
|
"""
|
|
1910
2094
|
|
|
1911
2095
|
def resize(
|
|
@@ -2176,11 +2360,15 @@ def separate_bundle_item_add(
|
|
|
2176
2360
|
execution_context: int | str | None = None,
|
|
2177
2361
|
undo: bool | None = None,
|
|
2178
2362
|
/,
|
|
2363
|
+
*,
|
|
2364
|
+
node_identifier: int | None = 0,
|
|
2179
2365
|
) -> None:
|
|
2180
2366
|
"""Add item below active item
|
|
2181
2367
|
|
|
2182
2368
|
:type execution_context: int | str | None
|
|
2183
2369
|
:type undo: bool | None
|
|
2370
|
+
:param node_identifier: Node Identifier, Optional identifier of the node to operate on
|
|
2371
|
+
:type node_identifier: int | None
|
|
2184
2372
|
"""
|
|
2185
2373
|
|
|
2186
2374
|
def separate_bundle_item_move(
|
|
@@ -2189,6 +2377,7 @@ def separate_bundle_item_move(
|
|
|
2189
2377
|
/,
|
|
2190
2378
|
*,
|
|
2191
2379
|
direction: typing.Literal["UP", "DOWN"] | None = "UP",
|
|
2380
|
+
node_identifier: int | None = 0,
|
|
2192
2381
|
) -> None:
|
|
2193
2382
|
"""Move active item
|
|
2194
2383
|
|
|
@@ -2196,17 +2385,23 @@ def separate_bundle_item_move(
|
|
|
2196
2385
|
:type undo: bool | None
|
|
2197
2386
|
:param direction: Direction, Move direction
|
|
2198
2387
|
:type direction: typing.Literal['UP','DOWN'] | None
|
|
2388
|
+
:param node_identifier: Node Identifier, Optional identifier of the node to operate on
|
|
2389
|
+
:type node_identifier: int | None
|
|
2199
2390
|
"""
|
|
2200
2391
|
|
|
2201
2392
|
def separate_bundle_item_remove(
|
|
2202
2393
|
execution_context: int | str | None = None,
|
|
2203
2394
|
undo: bool | None = None,
|
|
2204
2395
|
/,
|
|
2396
|
+
*,
|
|
2397
|
+
node_identifier: int | None = 0,
|
|
2205
2398
|
) -> None:
|
|
2206
2399
|
"""Remove active item
|
|
2207
2400
|
|
|
2208
2401
|
:type execution_context: int | str | None
|
|
2209
2402
|
:type undo: bool | None
|
|
2403
|
+
:param node_identifier: Node Identifier, Optional identifier of the node to operate on
|
|
2404
|
+
:type node_identifier: int | None
|
|
2210
2405
|
"""
|
|
2211
2406
|
|
|
2212
2407
|
def shader_script_update(
|
|
@@ -2224,11 +2419,15 @@ def simulation_zone_item_add(
|
|
|
2224
2419
|
execution_context: int | str | None = None,
|
|
2225
2420
|
undo: bool | None = None,
|
|
2226
2421
|
/,
|
|
2422
|
+
*,
|
|
2423
|
+
node_identifier: int | None = 0,
|
|
2227
2424
|
) -> None:
|
|
2228
2425
|
"""Add item below active item
|
|
2229
2426
|
|
|
2230
2427
|
:type execution_context: int | str | None
|
|
2231
2428
|
:type undo: bool | None
|
|
2429
|
+
:param node_identifier: Node Identifier, Optional identifier of the node to operate on
|
|
2430
|
+
:type node_identifier: int | None
|
|
2232
2431
|
"""
|
|
2233
2432
|
|
|
2234
2433
|
def simulation_zone_item_move(
|
|
@@ -2237,6 +2436,7 @@ def simulation_zone_item_move(
|
|
|
2237
2436
|
/,
|
|
2238
2437
|
*,
|
|
2239
2438
|
direction: typing.Literal["UP", "DOWN"] | None = "UP",
|
|
2439
|
+
node_identifier: int | None = 0,
|
|
2240
2440
|
) -> None:
|
|
2241
2441
|
"""Move active item
|
|
2242
2442
|
|
|
@@ -2244,17 +2444,23 @@ def simulation_zone_item_move(
|
|
|
2244
2444
|
:type undo: bool | None
|
|
2245
2445
|
:param direction: Direction, Move direction
|
|
2246
2446
|
:type direction: typing.Literal['UP','DOWN'] | None
|
|
2447
|
+
:param node_identifier: Node Identifier, Optional identifier of the node to operate on
|
|
2448
|
+
:type node_identifier: int | None
|
|
2247
2449
|
"""
|
|
2248
2450
|
|
|
2249
2451
|
def simulation_zone_item_remove(
|
|
2250
2452
|
execution_context: int | str | None = None,
|
|
2251
2453
|
undo: bool | None = None,
|
|
2252
2454
|
/,
|
|
2455
|
+
*,
|
|
2456
|
+
node_identifier: int | None = 0,
|
|
2253
2457
|
) -> None:
|
|
2254
2458
|
"""Remove active item
|
|
2255
2459
|
|
|
2256
2460
|
:type execution_context: int | str | None
|
|
2257
2461
|
:type undo: bool | None
|
|
2462
|
+
:param node_identifier: Node Identifier, Optional identifier of the node to operate on
|
|
2463
|
+
:type node_identifier: int | None
|
|
2258
2464
|
"""
|
|
2259
2465
|
|
|
2260
2466
|
def sockets_sync(
|