fake-bpy-module 20250119__py3-none-any.whl → 20250122__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/anim/__init__.pyi +6 -0
- bl_ui/properties_mask_common/__init__.pyi +17 -0
- bl_ui/properties_material_gpencil/__init__.pyi +29 -0
- bl_ui/properties_scene/__init__.pyi +6 -0
- bl_ui/space_clip/__init__.pyi +53 -0
- bl_ui/space_image/__init__.pyi +25 -0
- bpy/ops/export_scene/__init__.pyi +10 -0
- bpy/ops/grease_pencil/__init__.pyi +3 -0
- bpy/props/__init__.pyi +4 -3
- bpy/types/__init__.pyi +172 -78
- bpy/utils/__init__.pyi +4 -2
- {fake_bpy_module-20250119.dist-info → fake_bpy_module-20250122.dist-info}/METADATA +1 -1
- {fake_bpy_module-20250119.dist-info → fake_bpy_module-20250122.dist-info}/RECORD +17 -17
- freestyle/utils/__init__.pyi +1 -1
- mathutils/__init__.pyi +13 -10
- {fake_bpy_module-20250119.dist-info → fake_bpy_module-20250122.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20250119.dist-info → fake_bpy_module-20250122.dist-info}/top_level.txt +0 -0
bl_ui/anim/__init__.pyi
CHANGED
|
@@ -27,3 +27,9 @@ class ANIM_MT_keyframe_insert_pie(bpy.types.Menu):
|
|
|
27
27
|
|
|
28
28
|
:param _context:
|
|
29
29
|
"""
|
|
30
|
+
|
|
31
|
+
def draw_action_and_slot_selector_for_id(layout, animated_id):
|
|
32
|
+
"""Draw the action and slot selector for an ID, using the given layout.The ID must be an animatable ID.Note that the slot selector is only drawn when the ID has an assigned
|
|
33
|
+
Action.
|
|
34
|
+
|
|
35
|
+
"""
|
|
@@ -155,6 +155,23 @@ class MASK_MT_visibility(bpy.types.Menu):
|
|
|
155
155
|
:param _context:
|
|
156
156
|
"""
|
|
157
157
|
|
|
158
|
+
class MASK_PT_animation:
|
|
159
|
+
bl_label: typing.Any
|
|
160
|
+
bl_options: typing.Any
|
|
161
|
+
|
|
162
|
+
def draw(self, context):
|
|
163
|
+
"""
|
|
164
|
+
|
|
165
|
+
:param context:
|
|
166
|
+
"""
|
|
167
|
+
|
|
168
|
+
@classmethod
|
|
169
|
+
def poll(cls, context):
|
|
170
|
+
"""
|
|
171
|
+
|
|
172
|
+
:param context:
|
|
173
|
+
"""
|
|
174
|
+
|
|
158
175
|
class MASK_PT_display:
|
|
159
176
|
bl_label: typing.Any
|
|
160
177
|
|
|
@@ -210,6 +210,35 @@ class MATERIAL_PT_gpencil_material_presets(bl_ui.utils.PresetPanel, bpy.types.Pa
|
|
|
210
210
|
:rtype: typing.Any
|
|
211
211
|
"""
|
|
212
212
|
|
|
213
|
+
class MATERIAL_PT_gpencil_preview(GPMaterialButtonsPanel, bpy.types.Panel):
|
|
214
|
+
bl_context: typing.Any
|
|
215
|
+
bl_label: typing.Any
|
|
216
|
+
bl_options: typing.Any
|
|
217
|
+
bl_region_type: typing.Any
|
|
218
|
+
bl_rna: typing.Any
|
|
219
|
+
bl_space_type: typing.Any
|
|
220
|
+
id_data: typing.Any
|
|
221
|
+
|
|
222
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
223
|
+
"""
|
|
224
|
+
|
|
225
|
+
:return: The RNA type or default when not found.
|
|
226
|
+
:rtype: bpy.types.Struct
|
|
227
|
+
"""
|
|
228
|
+
|
|
229
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
230
|
+
"""
|
|
231
|
+
|
|
232
|
+
:return: The class or default when not found.
|
|
233
|
+
:rtype: typing.Any
|
|
234
|
+
"""
|
|
235
|
+
|
|
236
|
+
def draw(self, context):
|
|
237
|
+
"""
|
|
238
|
+
|
|
239
|
+
:param context:
|
|
240
|
+
"""
|
|
241
|
+
|
|
213
242
|
class MATERIAL_PT_gpencil_settings(GPMaterialButtonsPanel, bpy.types.Panel):
|
|
214
243
|
bl_context: typing.Any
|
|
215
244
|
bl_label: typing.Any
|
bl_ui/space_clip/__init__.pyi
CHANGED
|
@@ -860,6 +860,34 @@ class CLIP_PT_active_mask_spline(
|
|
|
860
860
|
:rtype: typing.Any
|
|
861
861
|
"""
|
|
862
862
|
|
|
863
|
+
class CLIP_PT_animation(CLIP_PT_clip_view_panel, bpy.types.Panel):
|
|
864
|
+
bl_category: typing.Any
|
|
865
|
+
bl_label: typing.Any
|
|
866
|
+
bl_region_type: typing.Any
|
|
867
|
+
bl_rna: typing.Any
|
|
868
|
+
bl_space_type: typing.Any
|
|
869
|
+
id_data: typing.Any
|
|
870
|
+
|
|
871
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
872
|
+
"""
|
|
873
|
+
|
|
874
|
+
:return: The RNA type or default when not found.
|
|
875
|
+
:rtype: bpy.types.Struct
|
|
876
|
+
"""
|
|
877
|
+
|
|
878
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
879
|
+
"""
|
|
880
|
+
|
|
881
|
+
:return: The class or default when not found.
|
|
882
|
+
:rtype: typing.Any
|
|
883
|
+
"""
|
|
884
|
+
|
|
885
|
+
def draw(self, context):
|
|
886
|
+
"""
|
|
887
|
+
|
|
888
|
+
:param context:
|
|
889
|
+
"""
|
|
890
|
+
|
|
863
891
|
class CLIP_PT_annotation(
|
|
864
892
|
CLIP_PT_clip_view_panel,
|
|
865
893
|
bl_ui.properties_grease_pencil_common.AnnotationDataPanel,
|
|
@@ -1115,6 +1143,31 @@ class CLIP_PT_mask(bl_ui.properties_mask_common.MASK_PT_mask, bpy.types.Panel):
|
|
|
1115
1143
|
:rtype: typing.Any
|
|
1116
1144
|
"""
|
|
1117
1145
|
|
|
1146
|
+
class CLIP_PT_mask_animation(
|
|
1147
|
+
bl_ui.properties_mask_common.MASK_PT_animation, bpy.types.Panel
|
|
1148
|
+
):
|
|
1149
|
+
bl_category: typing.Any
|
|
1150
|
+
bl_label: typing.Any
|
|
1151
|
+
bl_options: typing.Any
|
|
1152
|
+
bl_region_type: typing.Any
|
|
1153
|
+
bl_rna: typing.Any
|
|
1154
|
+
bl_space_type: typing.Any
|
|
1155
|
+
id_data: typing.Any
|
|
1156
|
+
|
|
1157
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
1158
|
+
"""
|
|
1159
|
+
|
|
1160
|
+
:return: The RNA type or default when not found.
|
|
1161
|
+
:rtype: bpy.types.Struct
|
|
1162
|
+
"""
|
|
1163
|
+
|
|
1164
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1165
|
+
"""
|
|
1166
|
+
|
|
1167
|
+
:return: The class or default when not found.
|
|
1168
|
+
:rtype: typing.Any
|
|
1169
|
+
"""
|
|
1170
|
+
|
|
1118
1171
|
class CLIP_PT_mask_display(
|
|
1119
1172
|
bl_ui.properties_mask_common.MASK_PT_display, bpy.types.Panel
|
|
1120
1173
|
):
|
bl_ui/space_image/__init__.pyi
CHANGED
|
@@ -881,6 +881,31 @@ class IMAGE_PT_mask(bl_ui.properties_mask_common.MASK_PT_mask, bpy.types.Panel):
|
|
|
881
881
|
:rtype: typing.Any
|
|
882
882
|
"""
|
|
883
883
|
|
|
884
|
+
class IMAGE_PT_mask_animation(
|
|
885
|
+
bl_ui.properties_mask_common.MASK_PT_animation, bpy.types.Panel
|
|
886
|
+
):
|
|
887
|
+
bl_category: typing.Any
|
|
888
|
+
bl_label: typing.Any
|
|
889
|
+
bl_options: typing.Any
|
|
890
|
+
bl_region_type: typing.Any
|
|
891
|
+
bl_rna: typing.Any
|
|
892
|
+
bl_space_type: typing.Any
|
|
893
|
+
id_data: typing.Any
|
|
894
|
+
|
|
895
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
896
|
+
"""
|
|
897
|
+
|
|
898
|
+
:return: The RNA type or default when not found.
|
|
899
|
+
:rtype: bpy.types.Struct
|
|
900
|
+
"""
|
|
901
|
+
|
|
902
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
903
|
+
"""
|
|
904
|
+
|
|
905
|
+
:return: The class or default when not found.
|
|
906
|
+
:rtype: typing.Any
|
|
907
|
+
"""
|
|
908
|
+
|
|
884
909
|
class IMAGE_PT_mask_display(
|
|
885
910
|
bl_ui.properties_mask_common.MASK_PT_display, bpy.types.Panel
|
|
886
911
|
):
|
|
@@ -313,6 +313,8 @@ def gltf(
|
|
|
313
313
|
export_frame_range: bool | None = False,
|
|
314
314
|
export_frame_step: int | None = 1,
|
|
315
315
|
export_force_sampling: bool | None = True,
|
|
316
|
+
export_sampling_interpolation_fallback: typing.Literal["LINEAR", "STEP"]
|
|
317
|
+
| None = "LINEAR",
|
|
316
318
|
export_pointer_animation: bool | None = False,
|
|
317
319
|
export_animation_mode: typing.Literal[
|
|
318
320
|
"ACTIONS", "ACTIVE_ACTIONS", "BROADCAST", "NLA_TRACKS", "SCENE"
|
|
@@ -552,6 +554,14 @@ def gltf(
|
|
|
552
554
|
:type export_frame_step: int | None
|
|
553
555
|
:param export_force_sampling: Always Sample Animations, Apply sampling to all animations
|
|
554
556
|
:type export_force_sampling: bool | None
|
|
557
|
+
:param export_sampling_interpolation_fallback: Sampling Interpolation Fallback, Interpolation fallback for sampled animations, when the property is not keyed
|
|
558
|
+
|
|
559
|
+
LINEAR
|
|
560
|
+
Linear -- Linear interpolation between keyframes.
|
|
561
|
+
|
|
562
|
+
STEP
|
|
563
|
+
Step -- No interpolation between keyframes.
|
|
564
|
+
:type export_sampling_interpolation_fallback: typing.Literal['LINEAR','STEP'] | None
|
|
555
565
|
:param export_pointer_animation: Export Animation Pointer (Experimental), Export material, Light & Camera animation as Animation Pointer. Available only for baked animation mode 'NLA Tracks' and 'Scene'
|
|
556
566
|
:type export_pointer_animation: bool | None
|
|
557
567
|
:param export_animation_mode: Animation Mode, Export Animation mode
|
|
@@ -430,6 +430,7 @@ def interpolate_sequence(
|
|
|
430
430
|
step: int | None = 1,
|
|
431
431
|
layers: typing.Literal["ACTIVE", "ALL"] | None = "ACTIVE",
|
|
432
432
|
exclude_breakdowns: bool | None = False,
|
|
433
|
+
use_selection: bool | None = False,
|
|
433
434
|
flip: typing.Literal["NONE", "FLIP", "AUTO"] | None = "AUTO",
|
|
434
435
|
smooth_steps: int | None = 1,
|
|
435
436
|
smooth_factor: float | None = 0.0,
|
|
@@ -463,6 +464,8 @@ def interpolate_sequence(
|
|
|
463
464
|
:type layers: typing.Literal['ACTIVE','ALL'] | None
|
|
464
465
|
:param exclude_breakdowns: Exclude Breakdowns, Exclude existing Breakdowns keyframes as interpolation extremes
|
|
465
466
|
:type exclude_breakdowns: bool | None
|
|
467
|
+
:param use_selection: Use Selection, Use only selected strokes for interpolating
|
|
468
|
+
:type use_selection: bool | None
|
|
466
469
|
:param flip: Flip Mode, Invert destination stroke to match start and end with source stroke
|
|
467
470
|
:type flip: typing.Literal['NONE','FLIP','AUTO'] | None
|
|
468
471
|
:param smooth_steps: Iterations, Number of times to smooth newly created strokes
|
bpy/props/__init__.pyi
CHANGED
|
@@ -607,9 +607,10 @@ def PointerProperty(
|
|
|
607
607
|
:param override: Enumerator in `rna_enum_property_override_flag_items`.
|
|
608
608
|
:type override: set[bpy._typing.rna_enums.PropertyOverrideFlagItems]
|
|
609
609
|
:param tags: Enumerator of tags that are defined by parent class.
|
|
610
|
-
:param poll:
|
|
611
|
-
The function must take 2 values (self, object) and return
|
|
612
|
-
|
|
610
|
+
:param poll: Function that determines whether an item is valid for this property.
|
|
611
|
+
The function must take 2 values (self, object) and return a boolean.
|
|
612
|
+
|
|
613
|
+
The return value will be checked only when assigning an item from the UI, but it is still possible to assign an "invalid" item to the property directly.
|
|
613
614
|
:type poll: collections.abc.Callable[[bpy.types.bpy_struct, bpy.types.ID], bool] | None
|
|
614
615
|
:param update: Function to be called when this value is modified,
|
|
615
616
|
This function must take 2 values (self, context) and return None.
|
bpy/types/__init__.pyi
CHANGED
|
@@ -19834,7 +19834,10 @@ Property types used in class declarations are all in bpy.props
|
|
|
19834
19834
|
|
|
19835
19835
|
--------------------
|
|
19836
19836
|
|
|
19837
|
+
* ImageStrip.retiming_keys
|
|
19837
19838
|
* MovieStrip.retiming_keys
|
|
19839
|
+
* SceneStrip.retiming_keys
|
|
19840
|
+
* SoundStrip.retiming_keys
|
|
19838
19841
|
|
|
19839
19842
|
:columns: 2
|
|
19840
19843
|
|
|
@@ -23709,6 +23712,7 @@ Property types used in class declarations are all in bpy.props
|
|
|
23709
23712
|
--------------------
|
|
23710
23713
|
|
|
23711
23714
|
* SequenceEditor.sequences
|
|
23715
|
+
* SequenceEditor.strips
|
|
23712
23716
|
|
|
23713
23717
|
:columns: 2
|
|
23714
23718
|
|
|
@@ -78736,8 +78740,11 @@ FileHandler
|
|
|
78736
78740
|
|
|
78737
78741
|
--------------------
|
|
78738
78742
|
|
|
78743
|
+
* ImageStrip.retiming_keys
|
|
78739
78744
|
* MovieStrip.retiming_keys
|
|
78740
78745
|
* RetimingKeys.add
|
|
78746
|
+
* SceneStrip.retiming_keys
|
|
78747
|
+
* SoundStrip.retiming_keys
|
|
78741
78748
|
|
|
78742
78749
|
:columns: 2
|
|
78743
78750
|
|
|
@@ -79664,9 +79671,13 @@ FileHandler
|
|
|
79664
79671
|
--------------------
|
|
79665
79672
|
|
|
79666
79673
|
* bpy.context.active_sequence_strip
|
|
79674
|
+
* bpy.context.active_strip
|
|
79667
79675
|
* bpy.context.selected_editable_sequences
|
|
79676
|
+
* bpy.context.selected_editable_strips
|
|
79668
79677
|
* bpy.context.selected_sequences
|
|
79678
|
+
* bpy.context.selected_strips
|
|
79669
79679
|
* bpy.context.sequences
|
|
79680
|
+
* bpy.context.strips
|
|
79670
79681
|
* AddStrip.input_1
|
|
79671
79682
|
* AddStrip.input_2
|
|
79672
79683
|
* AlphaOverStrip.input_1
|
|
@@ -79682,6 +79693,7 @@ FileHandler
|
|
|
79682
79693
|
* GaussianBlurStrip.input_1
|
|
79683
79694
|
* GlowStrip.input_1
|
|
79684
79695
|
* MetaStrip.sequences
|
|
79696
|
+
* MetaStrip.strips
|
|
79685
79697
|
* MultiplyStrip.input_1
|
|
79686
79698
|
* MultiplyStrip.input_2
|
|
79687
79699
|
* OverDropStrip.input_1
|
|
@@ -79691,6 +79703,8 @@ FileHandler
|
|
|
79691
79703
|
* SequenceEditor.meta_stack
|
|
79692
79704
|
* SequenceEditor.sequences
|
|
79693
79705
|
* SequenceEditor.sequences_all
|
|
79706
|
+
* SequenceEditor.strips
|
|
79707
|
+
* SequenceEditor.strips_all
|
|
79694
79708
|
* SpeedControlStrip.input_1
|
|
79695
79709
|
* Strip.move_to_meta
|
|
79696
79710
|
* Strip.parent_meta
|
|
@@ -100223,6 +100237,7 @@ of the scene and only show nodes of the renderer they are designed for.
|
|
|
100223
100237
|
--------------------
|
|
100224
100238
|
|
|
100225
100239
|
* MetaStrip.sequences
|
|
100240
|
+
* MetaStrip.strips
|
|
100226
100241
|
|
|
100227
100242
|
:columns: 2
|
|
100228
100243
|
|
|
@@ -109089,6 +109104,26 @@ class IDMaterials(bpy_prop_collection[Material], bpy_struct):
|
|
|
109089
109104
|
:rtype: typing.Any
|
|
109090
109105
|
"""
|
|
109091
109106
|
|
|
109107
|
+
@typing.overload
|
|
109108
|
+
def __getitem__(self, key: int | str) -> Material | None:
|
|
109109
|
+
"""
|
|
109110
|
+
|
|
109111
|
+
:param key:
|
|
109112
|
+
:type key: int | str
|
|
109113
|
+
:return:
|
|
109114
|
+
:rtype: Material | None
|
|
109115
|
+
"""
|
|
109116
|
+
|
|
109117
|
+
@typing.overload
|
|
109118
|
+
def __getitem__(self, key: slice) -> list[Material | None, ...]:
|
|
109119
|
+
"""
|
|
109120
|
+
|
|
109121
|
+
:param key:
|
|
109122
|
+
:type key: slice
|
|
109123
|
+
:return:
|
|
109124
|
+
:rtype: list[Material | None, ...]
|
|
109125
|
+
"""
|
|
109126
|
+
|
|
109092
109127
|
class IDOverrideLibraryProperties(
|
|
109093
109128
|
bpy_prop_collection[IDOverrideLibraryProperty], bpy_struct
|
|
109094
109129
|
):
|
|
@@ -114041,63 +114076,30 @@ class XrUserPaths(bpy_prop_collection[XrUserPath], bpy_struct):
|
|
|
114041
114076
|
class bpy_prop_collection_idprop:
|
|
114042
114077
|
"""built-in class used for user defined collections."""
|
|
114043
114078
|
|
|
114044
|
-
def
|
|
114045
|
-
"""
|
|
114046
|
-
(matches Python's string find function of the same name).
|
|
114079
|
+
def add(self) -> typing.Any:
|
|
114080
|
+
"""This is a function to add a new item to a collection.
|
|
114047
114081
|
|
|
114048
|
-
|
|
114049
|
-
|
|
114050
|
-
:return: index of the key.
|
|
114051
|
-
:rtype: int
|
|
114052
|
-
"""
|
|
114053
|
-
|
|
114054
|
-
def foreach_get(self, attr, seq):
|
|
114055
|
-
"""This is a function to give fast access to attributes within a collection.
|
|
114056
|
-
|
|
114057
|
-
:param attr:
|
|
114058
|
-
:param seq:
|
|
114059
|
-
"""
|
|
114060
|
-
|
|
114061
|
-
def foreach_set(self, attr, seq):
|
|
114062
|
-
"""This is a function to give fast access to attributes within a collection.
|
|
114063
|
-
|
|
114064
|
-
:param attr:
|
|
114065
|
-
:param seq:
|
|
114066
|
-
"""
|
|
114067
|
-
|
|
114068
|
-
def get(self, key: str | None, default: typing.Any | None = None):
|
|
114069
|
-
"""Returns the value of the item assigned to key or default when not found
|
|
114070
|
-
(matches Python's dictionary function of the same name).
|
|
114071
|
-
|
|
114072
|
-
:param key: The identifier for the collection member.
|
|
114073
|
-
:type key: str | None
|
|
114074
|
-
:param default: Optional argument for the value to return if
|
|
114075
|
-
key is not found.
|
|
114076
|
-
:type default: typing.Any | None
|
|
114082
|
+
:return: A newly created item.
|
|
114083
|
+
:rtype: typing.Any
|
|
114077
114084
|
"""
|
|
114078
114085
|
|
|
114079
|
-
def
|
|
114080
|
-
"""
|
|
114081
|
-
(matching Python's dict.items() functionality).
|
|
114082
|
-
|
|
114083
|
-
:return: (key, value) pairs for each member of this collection.
|
|
114084
|
-
:rtype: list[tuple[str, bpy_struct]]
|
|
114085
|
-
"""
|
|
114086
|
+
def clear(self):
|
|
114087
|
+
"""This is a function to remove all items from a collection."""
|
|
114086
114088
|
|
|
114087
|
-
def
|
|
114088
|
-
"""
|
|
114089
|
-
(matching Python's dict.keys() functionality).
|
|
114089
|
+
def move(self, src_index: int | None, dst_index: int | None):
|
|
114090
|
+
"""This is a function to move an item in a collection.
|
|
114090
114091
|
|
|
114091
|
-
|
|
114092
|
-
|
|
114092
|
+
:param src_index: Source item index.
|
|
114093
|
+
:type src_index: int | None
|
|
114094
|
+
:param dst_index: Destination item index.
|
|
114095
|
+
:type dst_index: int | None
|
|
114093
114096
|
"""
|
|
114094
114097
|
|
|
114095
|
-
def
|
|
114096
|
-
"""
|
|
114097
|
-
(matching Python's dict.values() functionality).
|
|
114098
|
+
def remove(self, index: int | None):
|
|
114099
|
+
"""This is a function to remove an item from a collection.
|
|
114098
114100
|
|
|
114099
|
-
|
|
114100
|
-
|
|
114101
|
+
:param index: Index of the item to be removed.
|
|
114102
|
+
:type index: int | None
|
|
114101
114103
|
"""
|
|
114102
114104
|
|
|
114103
114105
|
class wmOwnerIDs(bpy_prop_collection[wmOwnerID], bpy_struct):
|
|
@@ -114869,7 +114871,31 @@ This is used, for example, on a ActionKeyframeStrip to look up the ActionChannel
|
|
|
114869
114871
|
:type: int
|
|
114870
114872
|
"""
|
|
114871
114873
|
|
|
114872
|
-
|
|
114874
|
+
identifier: str
|
|
114875
|
+
""" Used when connecting an Action to a data-block, to find the correct slot handle. This is the display name, prefixed by two characters determined by the slot's ID type
|
|
114876
|
+
|
|
114877
|
+
:type: str
|
|
114878
|
+
"""
|
|
114879
|
+
|
|
114880
|
+
name_display: str
|
|
114881
|
+
""" Name of the slot, for display in the user interface. This name combined with the slot's data-block type is unique within its Action
|
|
114882
|
+
|
|
114883
|
+
:type: str
|
|
114884
|
+
"""
|
|
114885
|
+
|
|
114886
|
+
select: bool
|
|
114887
|
+
""" Selection state of the slot
|
|
114888
|
+
|
|
114889
|
+
:type: bool
|
|
114890
|
+
"""
|
|
114891
|
+
|
|
114892
|
+
show_expanded: bool
|
|
114893
|
+
""" Expanded state of the slot
|
|
114894
|
+
|
|
114895
|
+
:type: bool
|
|
114896
|
+
"""
|
|
114897
|
+
|
|
114898
|
+
target_id_type: typing.Literal[
|
|
114873
114899
|
"ACTION",
|
|
114874
114900
|
"ARMATURE",
|
|
114875
114901
|
"BRUSH",
|
|
@@ -114911,41 +114937,17 @@ This is used, for example, on a ActionKeyframeStrip to look up the ActionChannel
|
|
|
114911
114937
|
"WORLD",
|
|
114912
114938
|
"UNSPECIFIED",
|
|
114913
114939
|
]
|
|
114914
|
-
""" Type of data-block that
|
|
114940
|
+
""" Type of data-block that this slot is intended to animate
|
|
114915
114941
|
|
|
114916
114942
|
:type: typing.Literal['ACTION','ARMATURE','BRUSH','CACHEFILE','CAMERA','COLLECTION','CURVE','CURVES','FONT','GREASEPENCIL','GREASEPENCIL_V3','IMAGE','KEY','LATTICE','LIBRARY','LIGHT','LIGHT_PROBE','LINESTYLE','MASK','MATERIAL','MESH','META','MOVIECLIP','NODETREE','OBJECT','PAINTCURVE','PALETTE','PARTICLE','POINTCLOUD','SCENE','SCREEN','SOUND','SPEAKER','TEXT','TEXTURE','VOLUME','WINDOWMANAGER','WORKSPACE','WORLD','UNSPECIFIED']
|
|
114917
114943
|
"""
|
|
114918
114944
|
|
|
114919
|
-
|
|
114945
|
+
target_id_type_icon: int
|
|
114920
114946
|
"""
|
|
114921
114947
|
|
|
114922
114948
|
:type: int
|
|
114923
114949
|
"""
|
|
114924
114950
|
|
|
114925
|
-
identifier: str
|
|
114926
|
-
""" Used when connecting an Action to a data-block, to find the correct slot handle. This is the display name, prefixed by two characters determined by the slot's ID type
|
|
114927
|
-
|
|
114928
|
-
:type: str
|
|
114929
|
-
"""
|
|
114930
|
-
|
|
114931
|
-
name_display: str
|
|
114932
|
-
""" Name of the slot, for display in the user interface. This name combined with the slot's data-block type is unique within its Action
|
|
114933
|
-
|
|
114934
|
-
:type: str
|
|
114935
|
-
"""
|
|
114936
|
-
|
|
114937
|
-
select: bool
|
|
114938
|
-
""" Selection state of the slot
|
|
114939
|
-
|
|
114940
|
-
:type: bool
|
|
114941
|
-
"""
|
|
114942
|
-
|
|
114943
|
-
show_expanded: bool
|
|
114944
|
-
""" Expanded state of the slot
|
|
114945
|
-
|
|
114946
|
-
:type: bool
|
|
114947
|
-
"""
|
|
114948
|
-
|
|
114949
114951
|
@classmethod
|
|
114950
114952
|
def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
|
|
114951
114953
|
"""
|
|
@@ -117339,6 +117341,24 @@ class BlendData(bpy_struct):
|
|
|
117339
117341
|
:rtype: typing.Any
|
|
117340
117342
|
"""
|
|
117341
117343
|
|
|
117344
|
+
def file_path_map(
|
|
117345
|
+
self,
|
|
117346
|
+
subset: collections.abc.Sequence | None = None,
|
|
117347
|
+
key_types: set[str] | None = None,
|
|
117348
|
+
include_libraries: bool | None = False,
|
|
117349
|
+
) -> dict:
|
|
117350
|
+
"""Returns a mapping of all ID data-blocks in current bpy.data to a set of all file paths used by them.For list of valid set members for key_types, see: `bpy.types.KeyingSetPath.id_type`.
|
|
117351
|
+
|
|
117352
|
+
:param subset: When given, only these data-blocks and their used file paths will be included as keys/values in the map.
|
|
117353
|
+
:type subset: collections.abc.Sequence | None
|
|
117354
|
+
:param key_types: When given, filter the keys mapped by ID types. Ignored if subset is also given.
|
|
117355
|
+
:type key_types: set[str] | None
|
|
117356
|
+
:param include_libraries: Include library file paths of linked data. False by default.
|
|
117357
|
+
:type include_libraries: bool | None
|
|
117358
|
+
:return: dictionary of `bpy.types.ID` instances, with sets of file path strings as their values.
|
|
117359
|
+
:rtype: dict
|
|
117360
|
+
"""
|
|
117361
|
+
|
|
117342
117362
|
def orphans_purge(self):
|
|
117343
117363
|
"""Remove (delete) all IDs with no user.
|
|
117344
117364
|
|
|
@@ -132792,6 +132812,30 @@ Returns a tuple of the data-block, data path to the property, and array index.
|
|
|
132792
132812
|
:type: AnyType | None
|
|
132793
132813
|
"""
|
|
132794
132814
|
|
|
132815
|
+
active_strip: Strip | None
|
|
132816
|
+
"""
|
|
132817
|
+
|
|
132818
|
+
:type: Strip | None
|
|
132819
|
+
"""
|
|
132820
|
+
|
|
132821
|
+
strips: list[Strip]
|
|
132822
|
+
"""
|
|
132823
|
+
|
|
132824
|
+
:type: list[Strip]
|
|
132825
|
+
"""
|
|
132826
|
+
|
|
132827
|
+
selected_strips: list[Strip]
|
|
132828
|
+
"""
|
|
132829
|
+
|
|
132830
|
+
:type: list[Strip]
|
|
132831
|
+
"""
|
|
132832
|
+
|
|
132833
|
+
selected_editable_strips: list[Strip]
|
|
132834
|
+
"""
|
|
132835
|
+
|
|
132836
|
+
:type: list[Strip]
|
|
132837
|
+
"""
|
|
132838
|
+
|
|
132795
132839
|
edit_text: Text | None
|
|
132796
132840
|
"""
|
|
132797
132841
|
|
|
@@ -151173,6 +151217,12 @@ class GeometryNodeInputNamedLayerSelection(
|
|
|
151173
151217
|
class GeometryNodeInputNormal(GeometryNode, NodeInternal, Node, bpy_struct):
|
|
151174
151218
|
"""Retrieve a unit length vector indicating the direction pointing away from the geometry at each element"""
|
|
151175
151219
|
|
|
151220
|
+
legacy_corner_normals: bool
|
|
151221
|
+
""" Always use face normals for the face corner domain, matching old behavior of the node
|
|
151222
|
+
|
|
151223
|
+
:type: bool
|
|
151224
|
+
"""
|
|
151225
|
+
|
|
151176
151226
|
@classmethod
|
|
151177
151227
|
def is_registered_node_type(cls) -> bool:
|
|
151178
151228
|
"""True if a registered node type
|
|
@@ -165586,6 +165636,12 @@ class ImageStrip(Strip, bpy_struct):
|
|
|
165586
165636
|
:type: StripProxy
|
|
165587
165637
|
"""
|
|
165588
165638
|
|
|
165639
|
+
retiming_keys: RetimingKeys
|
|
165640
|
+
"""
|
|
165641
|
+
|
|
165642
|
+
:type: RetimingKeys
|
|
165643
|
+
"""
|
|
165644
|
+
|
|
165589
165645
|
stereo_3d_format: Stereo3dFormat
|
|
165590
165646
|
""" Settings for stereo 3D
|
|
165591
165647
|
|
|
@@ -176041,6 +176097,12 @@ class MetaStrip(Strip, bpy_struct):
|
|
|
176041
176097
|
"""
|
|
176042
176098
|
|
|
176043
176099
|
sequences: StripsMeta
|
|
176100
|
+
""" (Deprecated: Replaced by '.strips') Strips nested in meta strip
|
|
176101
|
+
|
|
176102
|
+
:type: StripsMeta
|
|
176103
|
+
"""
|
|
176104
|
+
|
|
176105
|
+
strips: StripsMeta
|
|
176044
176106
|
""" Strips nested in meta strip
|
|
176045
176107
|
|
|
176046
176108
|
:type: StripsMeta
|
|
@@ -198372,6 +198434,12 @@ class SceneStrip(Strip, bpy_struct):
|
|
|
198372
198434
|
:type: StripProxy
|
|
198373
198435
|
"""
|
|
198374
198436
|
|
|
198437
|
+
retiming_keys: RetimingKeys
|
|
198438
|
+
"""
|
|
198439
|
+
|
|
198440
|
+
:type: RetimingKeys
|
|
198441
|
+
"""
|
|
198442
|
+
|
|
198375
198443
|
scene: Scene | None
|
|
198376
198444
|
""" Scene that this sequence uses
|
|
198377
198445
|
|
|
@@ -199121,13 +199189,13 @@ class SequenceEditor(bpy_struct):
|
|
|
199121
199189
|
"""
|
|
199122
199190
|
|
|
199123
199191
|
sequences: StripsTopLevel
|
|
199124
|
-
""" Top-level strips only
|
|
199192
|
+
""" (Deprecated: Replaced by '.strips') Top-level strips only
|
|
199125
199193
|
|
|
199126
199194
|
:type: StripsTopLevel
|
|
199127
199195
|
"""
|
|
199128
199196
|
|
|
199129
199197
|
sequences_all: bpy_prop_collection[Strip]
|
|
199130
|
-
""" All strips, recursively including those inside metastrips
|
|
199198
|
+
""" (Deprecated: Replaced by '.strips_all') All strips, recursively including those inside metastrips
|
|
199131
199199
|
|
|
199132
199200
|
:type: bpy_prop_collection[Strip]
|
|
199133
199201
|
"""
|
|
@@ -199144,6 +199212,18 @@ class SequenceEditor(bpy_struct):
|
|
|
199144
199212
|
:type: bool
|
|
199145
199213
|
"""
|
|
199146
199214
|
|
|
199215
|
+
strips: StripsTopLevel
|
|
199216
|
+
""" Top-level strips only
|
|
199217
|
+
|
|
199218
|
+
:type: StripsTopLevel
|
|
199219
|
+
"""
|
|
199220
|
+
|
|
199221
|
+
strips_all: bpy_prop_collection[Strip]
|
|
199222
|
+
""" All strips, recursively including those inside metastrips
|
|
199223
|
+
|
|
199224
|
+
:type: bpy_prop_collection[Strip]
|
|
199225
|
+
"""
|
|
199226
|
+
|
|
199147
199227
|
use_cache_composite: bool
|
|
199148
199228
|
""" Cache intermediate composited images, for faster tweaking of stacked strips at the cost of memory usage
|
|
199149
199229
|
|
|
@@ -208188,6 +208268,12 @@ class SoundStrip(Strip, bpy_struct):
|
|
|
208188
208268
|
:type: float
|
|
208189
208269
|
"""
|
|
208190
208270
|
|
|
208271
|
+
retiming_keys: RetimingKeys
|
|
208272
|
+
"""
|
|
208273
|
+
|
|
208274
|
+
:type: RetimingKeys
|
|
208275
|
+
"""
|
|
208276
|
+
|
|
208191
208277
|
show_waveform: bool
|
|
208192
208278
|
""" Display the audio waveform inside the strip
|
|
208193
208279
|
|
|
@@ -232803,6 +232889,8 @@ CLIP_PT_active_mask_point: bl_ui.space_clip.CLIP_PT_active_mask_point
|
|
|
232803
232889
|
|
|
232804
232890
|
CLIP_PT_active_mask_spline: bl_ui.space_clip.CLIP_PT_active_mask_spline
|
|
232805
232891
|
|
|
232892
|
+
CLIP_PT_animation: bl_ui.space_clip.CLIP_PT_animation
|
|
232893
|
+
|
|
232806
232894
|
CLIP_PT_annotation: bl_ui.space_clip.CLIP_PT_annotation
|
|
232807
232895
|
|
|
232808
232896
|
CLIP_PT_camera_presets: bl_ui.space_clip.CLIP_PT_camera_presets
|
|
@@ -232821,6 +232909,8 @@ CLIP_PT_marker_display: bl_ui.space_clip.CLIP_PT_marker_display
|
|
|
232821
232909
|
|
|
232822
232910
|
CLIP_PT_mask: bl_ui.space_clip.CLIP_PT_mask
|
|
232823
232911
|
|
|
232912
|
+
CLIP_PT_mask_animation: bl_ui.space_clip.CLIP_PT_mask_animation
|
|
232913
|
+
|
|
232824
232914
|
CLIP_PT_mask_display: bl_ui.space_clip.CLIP_PT_mask_display
|
|
232825
232915
|
|
|
232826
232916
|
CLIP_PT_mask_layers: bl_ui.space_clip.CLIP_PT_mask_layers
|
|
@@ -233443,6 +233533,8 @@ IMAGE_PT_image_properties: bl_ui.space_image.IMAGE_PT_image_properties
|
|
|
233443
233533
|
|
|
233444
233534
|
IMAGE_PT_mask: bl_ui.space_image.IMAGE_PT_mask
|
|
233445
233535
|
|
|
233536
|
+
IMAGE_PT_mask_animation: bl_ui.space_image.IMAGE_PT_mask_animation
|
|
233537
|
+
|
|
233446
233538
|
IMAGE_PT_mask_display: bl_ui.space_image.IMAGE_PT_mask_display
|
|
233447
233539
|
|
|
233448
233540
|
IMAGE_PT_mask_layers: bl_ui.space_image.IMAGE_PT_mask_layers
|
|
@@ -233559,6 +233651,8 @@ MATERIAL_PT_gpencil_fillcolor: bl_ui.properties_material_gpencil.MATERIAL_PT_gpe
|
|
|
233559
233651
|
|
|
233560
233652
|
MATERIAL_PT_gpencil_material_presets: bl_ui.properties_material_gpencil.MATERIAL_PT_gpencil_material_presets
|
|
233561
233653
|
|
|
233654
|
+
MATERIAL_PT_gpencil_preview: bl_ui.properties_material_gpencil.MATERIAL_PT_gpencil_preview
|
|
233655
|
+
|
|
233562
233656
|
MATERIAL_PT_gpencil_settings: bl_ui.properties_material_gpencil.MATERIAL_PT_gpencil_settings
|
|
233563
233657
|
|
|
233564
233658
|
MATERIAL_PT_gpencil_slots: bl_ui.properties_material_gpencil.MATERIAL_PT_gpencil_slots
|
bpy/utils/__init__.pyi
CHANGED
|
@@ -197,12 +197,13 @@ def register_class(
|
|
|
197
197
|
| bpy.types.RenderEngine
|
|
198
198
|
| bpy.types.AssetShelf
|
|
199
199
|
| bpy.types.FileHandler
|
|
200
|
+
| bpy.types.PropertyGroup
|
|
200
201
|
],
|
|
201
202
|
):
|
|
202
203
|
"""Register a subclass of a Blender type class.
|
|
203
204
|
|
|
204
205
|
:param cls: Registerable Blender class type.
|
|
205
|
-
:type cls: type[bpy.types.Panel | bpy.types.UIList | bpy.types.Menu | bpy.types.Header | bpy.types.Operator | bpy.types.KeyingSetInfo | bpy.types.RenderEngine | bpy.types.AssetShelf | bpy.types.FileHandler]
|
|
206
|
+
:type cls: type[bpy.types.Panel | bpy.types.UIList | bpy.types.Menu | bpy.types.Header | bpy.types.Operator | bpy.types.KeyingSetInfo | bpy.types.RenderEngine | bpy.types.AssetShelf | bpy.types.FileHandler | bpy.types.PropertyGroup]
|
|
206
207
|
"""
|
|
207
208
|
|
|
208
209
|
def register_classes_factory(classes):
|
|
@@ -385,6 +386,7 @@ def unregister_class(
|
|
|
385
386
|
| bpy.types.RenderEngine
|
|
386
387
|
| bpy.types.AssetShelf
|
|
387
388
|
| bpy.types.FileHandler
|
|
389
|
+
| bpy.types.PropertyGroup
|
|
388
390
|
],
|
|
389
391
|
):
|
|
390
392
|
"""Unload the Python class from blender.
|
|
@@ -392,7 +394,7 @@ def unregister_class(
|
|
|
392
394
|
:param cls: Blender type class,
|
|
393
395
|
see `bpy.utils.register_class` for classes which can
|
|
394
396
|
be registered.
|
|
395
|
-
:type cls: type[bpy.types.Panel | bpy.types.UIList | bpy.types.Menu | bpy.types.Header | bpy.types.Operator | bpy.types.KeyingSetInfo | bpy.types.RenderEngine | bpy.types.AssetShelf | bpy.types.FileHandler]
|
|
397
|
+
:type cls: type[bpy.types.Panel | bpy.types.UIList | bpy.types.Menu | bpy.types.Header | bpy.types.Operator | bpy.types.KeyingSetInfo | bpy.types.RenderEngine | bpy.types.AssetShelf | bpy.types.FileHandler | bpy.types.PropertyGroup]
|
|
396
398
|
"""
|
|
397
399
|
|
|
398
400
|
def unregister_cli_command(handle):
|
|
@@ -100,7 +100,7 @@ bl_text_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
|
100
100
|
bl_text_utils/external_editor/__init__.pyi,sha256=9i4t4dLw6lYydq8d5O-VCtghlkS1MuaypeDD0dNVodI,117
|
|
101
101
|
bl_ui/__init__.pyi,sha256=1r51D8PicbD-QVUctmIy1-HlvGww8Neh3VIkKpkM5b4,6876
|
|
102
102
|
bl_ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
103
|
-
bl_ui/anim/__init__.pyi,sha256=
|
|
103
|
+
bl_ui/anim/__init__.pyi,sha256=QyZprkGrf0hlIBcJc20TCUwHHBmRG76RdqJtDlsAP4c,876
|
|
104
104
|
bl_ui/asset_shelf/__init__.pyi,sha256=t-xDmFic0fqVPdMcY7iFrprYEpNNmJeEN4XhPUx_m9w,763
|
|
105
105
|
bl_ui/generic_ui_list/__init__.pyi,sha256=E9S37L1rZLNoVKSC_Rc2_lZ7O_-8j3U6FujiN5i0t24,4205
|
|
106
106
|
bl_ui/node_add_menu/__init__.pyi,sha256=47u8vW3h1ub07M_kPJfQ1pbEdHeckMek5HSTwfYR7f8,1148
|
|
@@ -130,9 +130,9 @@ bl_ui/properties_data_speaker/__init__.pyi,sha256=YRayS4IxkfcvwOAJlqfSL4kjzBcaqo
|
|
|
130
130
|
bl_ui/properties_data_volume/__init__.pyi,sha256=w6ct8kb74x8X0l1vLq6Ymq-fzezD387sQv-lBH7wohM,7115
|
|
131
131
|
bl_ui/properties_freestyle/__init__.pyi,sha256=JxNJb9q2e8hRqNb7ynucmV5GKCG7y_HdQJgc9z9Th8w,22822
|
|
132
132
|
bl_ui/properties_grease_pencil_common/__init__.pyi,sha256=LQ6kY4XcaeHZdUr4Wr-vmQQerZ6VStZlX6mt8jltOc4,8859
|
|
133
|
-
bl_ui/properties_mask_common/__init__.pyi,sha256
|
|
133
|
+
bl_ui/properties_mask_common/__init__.pyi,sha256=TStuByqFZ24UxTzymKnQZFIrHjxcx__sUgUMvqgTRYc,6048
|
|
134
134
|
bl_ui/properties_material/__init__.pyi,sha256=J3GrRdWFeh4p5w2qKtC5Dwz0XF301ATcsCPcV4kXWe0,13499
|
|
135
|
-
bl_ui/properties_material_gpencil/__init__.pyi,sha256=
|
|
135
|
+
bl_ui/properties_material_gpencil/__init__.pyi,sha256=nzPF77aPdfB82IJ0Gt5kXMy8Lcsu5m2MmhR_uyUwEIY,8590
|
|
136
136
|
bl_ui/properties_object/__init__.pyi,sha256=8j-f7nIklQcDr8gIfbaHQzZBbfT9DpTDy3g02ZEWtbI,14680
|
|
137
137
|
bl_ui/properties_output/__init__.pyi,sha256=1fkDdDyAz2lTcSUnef8fai-1hTw9ztgvJsafPT_8vcU,13760
|
|
138
138
|
bl_ui/properties_paint_common/__init__.pyi,sha256=INYsmz0kr7GuYAv9v8p-b6taRlrd782PhlFh3zXtE38,7982
|
|
@@ -147,17 +147,17 @@ bl_ui/properties_physics_rigidbody/__init__.pyi,sha256=mihnVbJEe3H_xDQlmCNz_oI09
|
|
|
147
147
|
bl_ui/properties_physics_rigidbody_constraint/__init__.pyi,sha256=GzRt03C-kNNLxnQHCV4VKIGl0JITScWRyadNWcaVQo8,11342
|
|
148
148
|
bl_ui/properties_physics_softbody/__init__.pyi,sha256=YU3C0AeOCWqB9f9YjVSH8F4FmAlBQN-yjzAu60ynsgk,11590
|
|
149
149
|
bl_ui/properties_render/__init__.pyi,sha256=9W1lg0hQZ-6kK808v4bRMB5wQ9vE5LORtBJ3434YE6g,33878
|
|
150
|
-
bl_ui/properties_scene/__init__.pyi,sha256=
|
|
150
|
+
bl_ui/properties_scene/__init__.pyi,sha256=3r2nEsJ7Y1xqzVnz5kLVdlBw1zl1krHKrvyuhvcGXiA,12587
|
|
151
151
|
bl_ui/properties_texture/__init__.pyi,sha256=8d7ZCVj0-wZLdtj3Fzan96sCP4p_TZg0C_NoQILGo-A,21060
|
|
152
152
|
bl_ui/properties_view_layer/__init__.pyi,sha256=TovT-zfWqw63JTXntcJbzKJ_72lSMfQI6BVuyEcPYK4,9243
|
|
153
153
|
bl_ui/properties_workspace/__init__.pyi,sha256=ssIg71Vro4yRSS2302fKnsWRhyjBZtSyY59dOg71z1w,3463
|
|
154
154
|
bl_ui/properties_world/__init__.pyi,sha256=2BvXUUUI6BdaA61DKNR3xNGGLSiK5kfeHW25x-s4p7w,9145
|
|
155
|
-
bl_ui/space_clip/__init__.pyi,sha256=
|
|
155
|
+
bl_ui/space_clip/__init__.pyi,sha256=xWGyDkY-cqgl5TKk4r6Rf-cA79V1fWjFVfreeQVfUps,46259
|
|
156
156
|
bl_ui/space_console/__init__.pyi,sha256=jHE-NegnXq5WiuRTy89jw6hkYwLAjwEJryGzPJ7GrZw,3273
|
|
157
157
|
bl_ui/space_dopesheet/__init__.pyi,sha256=1VTtwpoxDb56GB8pt93MAhdybZbLzeWX7Im9VNYLwLg,18072
|
|
158
158
|
bl_ui/space_filebrowser/__init__.pyi,sha256=mFlZd3CLqrkdD-_nftH3A8f1hVHwHeGUvWBFEpIIoaM,19466
|
|
159
159
|
bl_ui/space_graph/__init__.pyi,sha256=cO21vtPuhxnj57ylVGmpJFDbsPIttY0i7Hjep_kLTOo,10987
|
|
160
|
-
bl_ui/space_image/__init__.pyi,sha256=
|
|
160
|
+
bl_ui/space_image/__init__.pyi,sha256=23C8BkJeKsV3enUja85AYm0weN8I0RzQT3HsotbjHuE,45208
|
|
161
161
|
bl_ui/space_info/__init__.pyi,sha256=u0Bz7_HxRJrOKh0Ae7M0PvcA_H0_qI9dkcN_MW2SJa0,3285
|
|
162
162
|
bl_ui/space_nla/__init__.pyi,sha256=uT7nGRBlJlDS-wYZGGGuMs17DK-_XsYoa1qkop7ZVyM,9535
|
|
163
163
|
bl_ui/space_node/__init__.pyi,sha256=sHP77K93twJEnel9dlQFAMjCBhLpC58LS6oK96OP1xo,17979
|
|
@@ -219,7 +219,7 @@ bpy/ops/cycles/__init__.pyi,sha256=TzurmelE8U7FLjghhDWt-0HBU-cyTALEWTfG4taUCSI,1
|
|
|
219
219
|
bpy/ops/dpaint/__init__.pyi,sha256=LhNcaKIZxU6RVVV3Am5d-0r3fVmTqc_UbXwM53yPFCQ,1555
|
|
220
220
|
bpy/ops/ed/__init__.pyi,sha256=XrnkDR-2DzjfrqGDmMjiI0ZoYJmnUdX6yGdtpePIAis,7102
|
|
221
221
|
bpy/ops/export_anim/__init__.pyi,sha256=wyCP8IO0cjr0ixNFGfFblD8ASLG4tQ-l2v3a9UnHAlw,2027
|
|
222
|
-
bpy/ops/export_scene/__init__.pyi,sha256=
|
|
222
|
+
bpy/ops/export_scene/__init__.pyi,sha256=1mZzNHNdWBwIOyslTrxTQn9Z6BqNp0ZlVblvJmKBW8M,40066
|
|
223
223
|
bpy/ops/extensions/__init__.pyi,sha256=GtWfFBmoeA2PoRiMqdgYu7cuSXJuVRnLgFpOa-B3M5E,12748
|
|
224
224
|
bpy/ops/file/__init__.pyi,sha256=EwxedztM5v4x6oQd7FV0VbAHAtRKChgHTMuhkHUDDQ8,19260
|
|
225
225
|
bpy/ops/fluid/__init__.pyi,sha256=toNBTcKttDwaWx21Nzf2HNBWKT7vZh8IDcIR2nG_ad4,3191
|
|
@@ -228,7 +228,7 @@ bpy/ops/geometry/__init__.pyi,sha256=5E3W4rVQTQmgHc8p8Adr9EHk-VsTrhwYbCvchw4Ax7c
|
|
|
228
228
|
bpy/ops/gizmogroup/__init__.pyi,sha256=lsDnIxuI4uIqJJEiLNmKUuMq2uqlc6HQAqDHY3T9tf8,1262
|
|
229
229
|
bpy/ops/gpencil/__init__.pyi,sha256=cqeFGa_2tSDBDSWhsWVQVZx5BhHs08wiW4And1rhfVE,4832
|
|
230
230
|
bpy/ops/graph/__init__.pyi,sha256=LxlhLzlxAjlrVyfx09PY74t15-khJK0tiasNQyYUqw4,41703
|
|
231
|
-
bpy/ops/grease_pencil/__init__.pyi,sha256=
|
|
231
|
+
bpy/ops/grease_pencil/__init__.pyi,sha256=iL2Mbb1OtW7ooGB-Jws1Y5EsFp6ZjzI5OW0SSs4KXrE,61674
|
|
232
232
|
bpy/ops/image/__init__.pyi,sha256=GiNPnZRmVUdtFmuckOxdV55Po_2ul_qda5wU2fFrm6U,52466
|
|
233
233
|
bpy/ops/import_anim/__init__.pyi,sha256=aE1pDcT6TlridpXwg7tF-E3tXLcm83n7j1vVgn_-g7A,3046
|
|
234
234
|
bpy/ops/import_curve/__init__.pyi,sha256=sDhKpg3cI-y0NYuUo8ey3jb3h-KKergdPUDKlQ-C2iI,485
|
|
@@ -276,9 +276,9 @@ bpy/ops/wm/__init__.pyi,sha256=vNXQGtWFHxjk_ft3OeWStjne67NsOtRXjBtFWbP-jOA,21593
|
|
|
276
276
|
bpy/ops/workspace/__init__.pyi,sha256=BHvDV5CcVBnuKaL8akhm-Es7VcGUjf3jGFTbfx5YHCU,1983
|
|
277
277
|
bpy/ops/world/__init__.pyi,sha256=pBV8EDA8HoWovDSul6mxkF7Mt6N3PQWuukRhkw3dBr8,601
|
|
278
278
|
bpy/path/__init__.pyi,sha256=emlV7ocbsOuOSMzxJXr6ldKRk2-_K0DWlKc3Ylt5dsU,5484
|
|
279
|
-
bpy/props/__init__.pyi,sha256=
|
|
280
|
-
bpy/types/__init__.pyi,sha256=
|
|
281
|
-
bpy/utils/__init__.pyi,sha256=
|
|
279
|
+
bpy/props/__init__.pyi,sha256=ZldUQ1MIMYkmYB0PpIP7HwwzMGpVB4rM3KeZOqV54sU,35236
|
|
280
|
+
bpy/types/__init__.pyi,sha256=UfALt4biDslJ3Ehg2kCREzbuK0_QBCEn25FOBzx9LRE,5421068
|
|
281
|
+
bpy/utils/__init__.pyi,sha256=0xYpOGROz80lrcCe4nko-nEkU-lsKJV09rjES5JIu7I,14765
|
|
282
282
|
bpy/utils/previews/__init__.pyi,sha256=AsbDN4vRLbSTZ7_S_4LqmI1sJmV_8NnqDt1QfBdH94Y,2280
|
|
283
283
|
bpy/utils/units/__init__.pyi,sha256=QuXx22JjmObRmP_KcdoqOlDSvVtXZHeK5nTIvwjcUnI,2645
|
|
284
284
|
bpy_extras/__init__.pyi,sha256=wejK55NeAEGsAzM9psNhBokX9H0DBihwOdNQ5XlCHB4,968
|
|
@@ -312,7 +312,7 @@ freestyle/functions/__init__.pyi,sha256=sEPnGHwZm8XBlfE7CKLros3CKJlAh1h1FI74nBTE
|
|
|
312
312
|
freestyle/predicates/__init__.pyi,sha256=TI-9arpIRbq7ePsxHS-d-4iIj54uHMp-ZyGhPVODMPg,13461
|
|
313
313
|
freestyle/shaders/__init__.pyi,sha256=4a-rY8mkkIcsnIvYGcP8YgAULdJENDJnncju2CjhQVg,24014
|
|
314
314
|
freestyle/types/__init__.pyi,sha256=Dmb8LokYlO2lCfmDwPX5MwwpnHHSRaXU2t6Nu37Rzjg,100200
|
|
315
|
-
freestyle/utils/__init__.pyi,sha256=
|
|
315
|
+
freestyle/utils/__init__.pyi,sha256=DdX3Qj2yTIu8jXdOAnf_9yKhJ5AQFnS_zVvSAdTfBpU,5108
|
|
316
316
|
freestyle/utils/ContextFunctions/__init__.pyi,sha256=fPDfiBEjpoqXQhBhmHJ6WxG9oLMItwQ32MxKQz_c9_I,3445
|
|
317
317
|
gpu/__init__.pyi,sha256=Q-AbyJO85pPYcwXNWtvgAhFGGJ6OnnHrlsXQxur9jhs,7999
|
|
318
318
|
gpu/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -340,7 +340,7 @@ keyingsets_builtins/__init__.pyi,sha256=FmSnRj8eAiQ_O-X_-kAHM_a8rCv_HZBrjXLXDRss
|
|
|
340
340
|
keyingsets_builtins/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
341
341
|
keyingsets_utils/__init__.pyi,sha256=UpGuAqOVl6bmy3rffJhqFS8ZKhUtAV-MfVyuuHtqXQI,770
|
|
342
342
|
keyingsets_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
343
|
-
mathutils/__init__.pyi,sha256=
|
|
343
|
+
mathutils/__init__.pyi,sha256=I80TgzGwK0Xvj-9lrikpgylvmC5DiE6PYt0NTpKXCgg,89255
|
|
344
344
|
mathutils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
345
345
|
mathutils/bvhtree/__init__.pyi,sha256=UtzuOlaUjgPwVQZnDiZhPrzgrFmgpyVY7z9WqoZzNsI,4933
|
|
346
346
|
mathutils/geometry/__init__.pyi,sha256=q6y5a8T54ZNoIlqkfjx2nZ8iF7G-uHfeFrN7SJqrapc,23278
|
|
@@ -359,7 +359,7 @@ rna_prop_ui/__init__.pyi,sha256=lShhkbbeJ_ANi2dy4J4HIkyp1HZrMqCfhcf8QpAQsj0,1281
|
|
|
359
359
|
rna_prop_ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
360
360
|
rna_xml/__init__.pyi,sha256=idYsAZj-_egBKMA2pQl2P9IoNhZxXIkBSALFuq-ylO8,577
|
|
361
361
|
rna_xml/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
362
|
-
fake_bpy_module-
|
|
363
|
-
fake_bpy_module-
|
|
364
|
-
fake_bpy_module-
|
|
365
|
-
fake_bpy_module-
|
|
362
|
+
fake_bpy_module-20250122.dist-info/METADATA,sha256=fPjqv8Pup5DUQsI-jxyx-82Kl0D8w4P23Z7b4rEi6Vg,7289
|
|
363
|
+
fake_bpy_module-20250122.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
|
364
|
+
fake_bpy_module-20250122.dist-info/top_level.txt,sha256=SZm3DVRKif7dFSjYKiIIg3_7uqjIwRAwOnCIcT4hRNM,500
|
|
365
|
+
fake_bpy_module-20250122.dist-info/RECORD,,
|
freestyle/utils/__init__.pyi
CHANGED
|
@@ -124,7 +124,7 @@ def material_from_fedge(fe):
|
|
|
124
124
|
"""get the diffuse RGBA color from an FEdge"""
|
|
125
125
|
|
|
126
126
|
def normal_at_I0D(it): ...
|
|
127
|
-
def pairwise(iterable, types={
|
|
127
|
+
def pairwise(iterable, types={StrokeVertexIterator, Stroke}):
|
|
128
128
|
"""Yields a tuple containing the previous and current object"""
|
|
129
129
|
|
|
130
130
|
def rgb_to_bw(r, g, b):
|
mathutils/__init__.pyi
CHANGED
|
@@ -348,13 +348,13 @@ class Color:
|
|
|
348
348
|
"""
|
|
349
349
|
|
|
350
350
|
@typing.overload
|
|
351
|
-
def __setitem__(self, key: slice, value: collections.abc.Iterable[float] |
|
|
351
|
+
def __setitem__(self, key: slice, value: collections.abc.Iterable[float] | Color):
|
|
352
352
|
"""
|
|
353
353
|
|
|
354
354
|
:param key:
|
|
355
355
|
:type key: slice
|
|
356
356
|
:param value:
|
|
357
|
-
:type value: collections.abc.Iterable[float] |
|
|
357
|
+
:type value: collections.abc.Iterable[float] | Color
|
|
358
358
|
"""
|
|
359
359
|
|
|
360
360
|
class Euler:
|
|
@@ -527,13 +527,13 @@ class Euler:
|
|
|
527
527
|
"""
|
|
528
528
|
|
|
529
529
|
@typing.overload
|
|
530
|
-
def __setitem__(self, key: slice, value: collections.abc.Iterable[float]):
|
|
530
|
+
def __setitem__(self, key: slice, value: collections.abc.Iterable[float] | Euler):
|
|
531
531
|
"""
|
|
532
532
|
|
|
533
533
|
:param key:
|
|
534
534
|
:type key: slice
|
|
535
535
|
:param value:
|
|
536
|
-
:type value: collections.abc.Iterable[float]
|
|
536
|
+
:type value: collections.abc.Iterable[float] | Euler
|
|
537
537
|
"""
|
|
538
538
|
|
|
539
539
|
class Matrix:
|
|
@@ -1005,14 +1005,15 @@ class Matrix:
|
|
|
1005
1005
|
def __setitem__(
|
|
1006
1006
|
self,
|
|
1007
1007
|
key: slice,
|
|
1008
|
-
value: collections.abc.Iterable[Vector | collections.abc.Iterable[float]]
|
|
1008
|
+
value: collections.abc.Iterable[Vector | collections.abc.Iterable[float]]
|
|
1009
|
+
| Matrix,
|
|
1009
1010
|
):
|
|
1010
1011
|
"""
|
|
1011
1012
|
|
|
1012
1013
|
:param key:
|
|
1013
1014
|
:type key: slice
|
|
1014
1015
|
:param value:
|
|
1015
|
-
:type value: collections.abc.Iterable[Vector | collections.abc.Iterable[float]]
|
|
1016
|
+
:type value: collections.abc.Iterable[Vector | collections.abc.Iterable[float]] | Matrix
|
|
1016
1017
|
"""
|
|
1017
1018
|
|
|
1018
1019
|
def __len__(self) -> int:
|
|
@@ -1429,13 +1430,15 @@ class Quaternion:
|
|
|
1429
1430
|
"""
|
|
1430
1431
|
|
|
1431
1432
|
@typing.overload
|
|
1432
|
-
def __setitem__(
|
|
1433
|
+
def __setitem__(
|
|
1434
|
+
self, key: slice, value: collections.abc.Iterable[float] | Quaternion
|
|
1435
|
+
):
|
|
1433
1436
|
"""
|
|
1434
1437
|
|
|
1435
1438
|
:param key:
|
|
1436
1439
|
:type key: slice
|
|
1437
1440
|
:param value:
|
|
1438
|
-
:type value: collections.abc.Iterable[float]
|
|
1441
|
+
:type value: collections.abc.Iterable[float] | Quaternion
|
|
1439
1442
|
"""
|
|
1440
1443
|
|
|
1441
1444
|
def __add__(
|
|
@@ -3966,13 +3969,13 @@ class Vector:
|
|
|
3966
3969
|
"""
|
|
3967
3970
|
|
|
3968
3971
|
@typing.overload
|
|
3969
|
-
def __setitem__(self, key: slice, value: collections.abc.Iterable[float]):
|
|
3972
|
+
def __setitem__(self, key: slice, value: collections.abc.Iterable[float] | Vector):
|
|
3970
3973
|
"""
|
|
3971
3974
|
|
|
3972
3975
|
:param key:
|
|
3973
3976
|
:type key: slice
|
|
3974
3977
|
:param value:
|
|
3975
|
-
:type value: collections.abc.Iterable[float]
|
|
3978
|
+
:type value: collections.abc.Iterable[float] | Vector
|
|
3976
3979
|
"""
|
|
3977
3980
|
|
|
3978
3981
|
def __neg__(self) -> typing_extensions.Self:
|
|
File without changes
|
|
File without changes
|