fake-bpy-module 20250209__py3-none-any.whl → 20250211__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.
- bpy/ops/__init__.pyi +9 -3
- bpy/ops/sequencer/__init__.pyi +2 -10
- bpy/types/__init__.pyi +296 -223
- {fake_bpy_module-20250209.dist-info → fake_bpy_module-20250211.dist-info}/METADATA +1 -1
- {fake_bpy_module-20250209.dist-info → fake_bpy_module-20250211.dist-info}/RECORD +7 -7
- {fake_bpy_module-20250209.dist-info → fake_bpy_module-20250211.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20250209.dist-info → fake_bpy_module-20250211.dist-info}/top_level.txt +0 -0
bpy/ops/__init__.pyi
CHANGED
|
@@ -62,12 +62,14 @@ It is possible to override context members that the operator sees, so that they
|
|
|
62
62
|
act on specified rather than the selected or active data, or to execute an
|
|
63
63
|
operator in the different part of the user interface.
|
|
64
64
|
|
|
65
|
-
The context overrides are passed as
|
|
66
|
-
member names in bpy.context
|
|
65
|
+
The context overrides are passed in as keyword arguments,
|
|
66
|
+
with keywords matching the context member names in bpy.context
|
|
67
|
+
|
|
68
|
+
.
|
|
67
69
|
For example to override bpy.context.active_object
|
|
68
70
|
|
|
69
71
|
,
|
|
70
|
-
you would pass
|
|
72
|
+
you would pass active_object=object
|
|
71
73
|
|
|
72
74
|
to bpy.types.Context.temp_override.
|
|
73
75
|
|
|
@@ -75,6 +77,10 @@ you would pass {'active_object': object}
|
|
|
75
77
|
You will nearly always want to use a copy of the actual current context as basis
|
|
76
78
|
(otherwise, you'll have to find and gather all needed data yourself).
|
|
77
79
|
|
|
80
|
+
[NOTE]
|
|
81
|
+
Context members are names which Blender uses for data access,
|
|
82
|
+
overrides do not extend to overriding methods or any Python specific functionality.
|
|
83
|
+
|
|
78
84
|
```../examples/bpy.ops.1.py```
|
|
79
85
|
|
|
80
86
|
|
bpy/ops/sequencer/__init__.pyi
CHANGED
|
@@ -28,7 +28,6 @@ def change_effect_type(
|
|
|
28
28
|
"ALPHA_UNDER",
|
|
29
29
|
"GAMMA_CROSS",
|
|
30
30
|
"MULTIPLY",
|
|
31
|
-
"OVER_DROP",
|
|
32
31
|
"WIPE",
|
|
33
32
|
"GLOW",
|
|
34
33
|
"TRANSFORM",
|
|
@@ -69,9 +68,6 @@ def change_effect_type(
|
|
|
69
68
|
MULTIPLY
|
|
70
69
|
Multiply -- Multiply effect strip type.
|
|
71
70
|
|
|
72
|
-
OVER_DROP
|
|
73
|
-
Alpha Over Drop -- Alpha Over Drop effect strip type.
|
|
74
|
-
|
|
75
71
|
WIPE
|
|
76
72
|
Wipe -- Wipe effect strip type.
|
|
77
73
|
|
|
@@ -101,7 +97,7 @@ def change_effect_type(
|
|
|
101
97
|
|
|
102
98
|
COLORMIX
|
|
103
99
|
Color Mix.
|
|
104
|
-
:type type: typing.Literal['CROSS','ADD','SUBTRACT','ALPHA_OVER','ALPHA_UNDER','GAMMA_CROSS','MULTIPLY','
|
|
100
|
+
:type type: typing.Literal['CROSS','ADD','SUBTRACT','ALPHA_OVER','ALPHA_UNDER','GAMMA_CROSS','MULTIPLY','WIPE','GLOW','TRANSFORM','COLOR','SPEED','MULTICAM','ADJUSTMENT','GAUSSIAN_BLUR','TEXT','COLORMIX'] | None
|
|
105
101
|
"""
|
|
106
102
|
|
|
107
103
|
def change_path(
|
|
@@ -343,7 +339,6 @@ def effect_strip_add(
|
|
|
343
339
|
"ALPHA_UNDER",
|
|
344
340
|
"GAMMA_CROSS",
|
|
345
341
|
"MULTIPLY",
|
|
346
|
-
"OVER_DROP",
|
|
347
342
|
"WIPE",
|
|
348
343
|
"GLOW",
|
|
349
344
|
"TRANSFORM",
|
|
@@ -391,9 +386,6 @@ def effect_strip_add(
|
|
|
391
386
|
MULTIPLY
|
|
392
387
|
Multiply -- Multiply effect strip type.
|
|
393
388
|
|
|
394
|
-
OVER_DROP
|
|
395
|
-
Alpha Over Drop -- Alpha Over Drop effect strip type.
|
|
396
|
-
|
|
397
389
|
WIPE
|
|
398
390
|
Wipe -- Wipe effect strip type.
|
|
399
391
|
|
|
@@ -423,7 +415,7 @@ def effect_strip_add(
|
|
|
423
415
|
|
|
424
416
|
COLORMIX
|
|
425
417
|
Color Mix.
|
|
426
|
-
:type type: typing.Literal['CROSS','ADD','SUBTRACT','ALPHA_OVER','ALPHA_UNDER','GAMMA_CROSS','MULTIPLY','
|
|
418
|
+
:type type: typing.Literal['CROSS','ADD','SUBTRACT','ALPHA_OVER','ALPHA_UNDER','GAMMA_CROSS','MULTIPLY','WIPE','GLOW','TRANSFORM','COLOR','SPEED','MULTICAM','ADJUSTMENT','GAUSSIAN_BLUR','TEXT','COLORMIX'] | None
|
|
427
419
|
:param frame_start: Start Frame, Start frame of the sequence strip
|
|
428
420
|
:type frame_start: int | None
|
|
429
421
|
:param frame_end: End Frame, End frame for the color strip
|
bpy/types/__init__.pyi
CHANGED
|
@@ -139,6 +139,14 @@
|
|
|
139
139
|
--------------------
|
|
140
140
|
|
|
141
141
|
* bpy_struct.id_data
|
|
142
|
+
* GreasePencilTreeNode.name
|
|
143
|
+
* GreasePencilTreeNode.hide
|
|
144
|
+
* GreasePencilTreeNode.lock
|
|
145
|
+
* GreasePencilTreeNode.select
|
|
146
|
+
* GreasePencilTreeNode.use_onion_skinning
|
|
147
|
+
* GreasePencilTreeNode.use_masks
|
|
148
|
+
* GreasePencilTreeNode.channel_color
|
|
149
|
+
* GreasePencilTreeNode.parent_group
|
|
142
150
|
|
|
143
151
|
:columns: 2
|
|
144
152
|
|
|
@@ -168,14 +176,15 @@
|
|
|
168
176
|
* bpy_struct.rna_ancestors
|
|
169
177
|
* bpy_struct.type_recast
|
|
170
178
|
* bpy_struct.values
|
|
179
|
+
* GreasePencilTreeNode.bl_rna_get_subclass
|
|
180
|
+
* GreasePencilTreeNode.bl_rna_get_subclass_py
|
|
171
181
|
|
|
172
182
|
:columns: 2
|
|
173
183
|
|
|
174
184
|
|
|
175
185
|
--------------------
|
|
176
186
|
|
|
177
|
-
*
|
|
178
|
-
* GreasePencilLayerGroup.parent_group
|
|
187
|
+
* GreasePencilTreeNode.parent_group
|
|
179
188
|
* GreasePencilv3.layer_groups
|
|
180
189
|
* GreasePencilv3LayerGroup.active
|
|
181
190
|
* GreasePencilv3LayerGroup.move
|
|
@@ -13770,93 +13779,6 @@ Property types used in class declarations are all in bpy.props
|
|
|
13770
13779
|
:columns: 2
|
|
13771
13780
|
|
|
13772
13781
|
|
|
13773
|
-
--------------------
|
|
13774
|
-
|
|
13775
|
-
* bpy_struct.id_data
|
|
13776
|
-
* Strip.name
|
|
13777
|
-
* Strip.type
|
|
13778
|
-
* Strip.select
|
|
13779
|
-
* Strip.select_left_handle
|
|
13780
|
-
* Strip.select_right_handle
|
|
13781
|
-
* Strip.mute
|
|
13782
|
-
* Strip.lock
|
|
13783
|
-
* Strip.frame_final_duration
|
|
13784
|
-
* Strip.frame_duration
|
|
13785
|
-
* Strip.frame_start
|
|
13786
|
-
* Strip.frame_final_start
|
|
13787
|
-
* Strip.frame_final_end
|
|
13788
|
-
* Strip.frame_offset_start
|
|
13789
|
-
* Strip.frame_offset_end
|
|
13790
|
-
* Strip.channel
|
|
13791
|
-
* Strip.use_linear_modifiers
|
|
13792
|
-
* Strip.blend_type
|
|
13793
|
-
* Strip.blend_alpha
|
|
13794
|
-
* Strip.effect_fader
|
|
13795
|
-
* Strip.use_default_fade
|
|
13796
|
-
* Strip.color_tag
|
|
13797
|
-
* Strip.modifiers
|
|
13798
|
-
* Strip.use_cache_raw
|
|
13799
|
-
* Strip.use_cache_preprocessed
|
|
13800
|
-
* Strip.use_cache_composite
|
|
13801
|
-
* Strip.override_cache_settings
|
|
13802
|
-
* Strip.show_retiming_keys
|
|
13803
|
-
* EffectStrip.use_deinterlace
|
|
13804
|
-
* EffectStrip.alpha_mode
|
|
13805
|
-
* EffectStrip.use_flip_x
|
|
13806
|
-
* EffectStrip.use_flip_y
|
|
13807
|
-
* EffectStrip.use_float
|
|
13808
|
-
* EffectStrip.use_reverse_frames
|
|
13809
|
-
* EffectStrip.color_multiply
|
|
13810
|
-
* EffectStrip.multiply_alpha
|
|
13811
|
-
* EffectStrip.color_saturation
|
|
13812
|
-
* EffectStrip.strobe
|
|
13813
|
-
* EffectStrip.transform
|
|
13814
|
-
* EffectStrip.crop
|
|
13815
|
-
* EffectStrip.use_proxy
|
|
13816
|
-
* EffectStrip.proxy
|
|
13817
|
-
|
|
13818
|
-
:columns: 2
|
|
13819
|
-
|
|
13820
|
-
|
|
13821
|
-
--------------------
|
|
13822
|
-
|
|
13823
|
-
* bpy_struct.as_pointer
|
|
13824
|
-
* bpy_struct.driver_add
|
|
13825
|
-
* bpy_struct.driver_remove
|
|
13826
|
-
* bpy_struct.get
|
|
13827
|
-
* bpy_struct.id_properties_clear
|
|
13828
|
-
* bpy_struct.id_properties_ensure
|
|
13829
|
-
* bpy_struct.id_properties_ui
|
|
13830
|
-
* bpy_struct.is_property_hidden
|
|
13831
|
-
* bpy_struct.is_property_overridable_library
|
|
13832
|
-
* bpy_struct.is_property_readonly
|
|
13833
|
-
* bpy_struct.is_property_set
|
|
13834
|
-
* bpy_struct.items
|
|
13835
|
-
* bpy_struct.keyframe_delete
|
|
13836
|
-
* bpy_struct.keyframe_insert
|
|
13837
|
-
* bpy_struct.keys
|
|
13838
|
-
* bpy_struct.path_from_id
|
|
13839
|
-
* bpy_struct.path_resolve
|
|
13840
|
-
* bpy_struct.pop
|
|
13841
|
-
* bpy_struct.property_overridable_library_set
|
|
13842
|
-
* bpy_struct.property_unset
|
|
13843
|
-
* bpy_struct.rna_ancestors
|
|
13844
|
-
* bpy_struct.type_recast
|
|
13845
|
-
* bpy_struct.values
|
|
13846
|
-
* Strip.strip_elem_from_frame
|
|
13847
|
-
* Strip.swap
|
|
13848
|
-
* Strip.move_to_meta
|
|
13849
|
-
* Strip.parent_meta
|
|
13850
|
-
* Strip.invalidate_cache
|
|
13851
|
-
* Strip.split
|
|
13852
|
-
* Strip.bl_rna_get_subclass
|
|
13853
|
-
* Strip.bl_rna_get_subclass_py
|
|
13854
|
-
* EffectStrip.bl_rna_get_subclass
|
|
13855
|
-
* EffectStrip.bl_rna_get_subclass_py
|
|
13856
|
-
|
|
13857
|
-
:columns: 2
|
|
13858
|
-
|
|
13859
|
-
|
|
13860
13782
|
--------------------
|
|
13861
13783
|
|
|
13862
13784
|
* bpy_struct.id_data
|
|
@@ -18319,6 +18241,42 @@ Property types used in class declarations are all in bpy.props
|
|
|
18319
18241
|
:columns: 2
|
|
18320
18242
|
|
|
18321
18243
|
|
|
18244
|
+
--------------------
|
|
18245
|
+
|
|
18246
|
+
* bpy_struct.id_data
|
|
18247
|
+
|
|
18248
|
+
:columns: 2
|
|
18249
|
+
|
|
18250
|
+
|
|
18251
|
+
--------------------
|
|
18252
|
+
|
|
18253
|
+
* bpy_struct.as_pointer
|
|
18254
|
+
* bpy_struct.driver_add
|
|
18255
|
+
* bpy_struct.driver_remove
|
|
18256
|
+
* bpy_struct.get
|
|
18257
|
+
* bpy_struct.id_properties_clear
|
|
18258
|
+
* bpy_struct.id_properties_ensure
|
|
18259
|
+
* bpy_struct.id_properties_ui
|
|
18260
|
+
* bpy_struct.is_property_hidden
|
|
18261
|
+
* bpy_struct.is_property_overridable_library
|
|
18262
|
+
* bpy_struct.is_property_readonly
|
|
18263
|
+
* bpy_struct.is_property_set
|
|
18264
|
+
* bpy_struct.items
|
|
18265
|
+
* bpy_struct.keyframe_delete
|
|
18266
|
+
* bpy_struct.keyframe_insert
|
|
18267
|
+
* bpy_struct.keys
|
|
18268
|
+
* bpy_struct.path_from_id
|
|
18269
|
+
* bpy_struct.path_resolve
|
|
18270
|
+
* bpy_struct.pop
|
|
18271
|
+
* bpy_struct.property_overridable_library_set
|
|
18272
|
+
* bpy_struct.property_unset
|
|
18273
|
+
* bpy_struct.rna_ancestors
|
|
18274
|
+
* bpy_struct.type_recast
|
|
18275
|
+
* bpy_struct.values
|
|
18276
|
+
|
|
18277
|
+
:columns: 2
|
|
18278
|
+
|
|
18279
|
+
|
|
18322
18280
|
--------------------
|
|
18323
18281
|
|
|
18324
18282
|
* Preferences.apps
|
|
@@ -48645,6 +48603,14 @@ Shared Enum Types <bpy_types_enum_items/index>
|
|
|
48645
48603
|
--------------------
|
|
48646
48604
|
|
|
48647
48605
|
* bpy_struct.id_data
|
|
48606
|
+
* GreasePencilTreeNode.name
|
|
48607
|
+
* GreasePencilTreeNode.hide
|
|
48608
|
+
* GreasePencilTreeNode.lock
|
|
48609
|
+
* GreasePencilTreeNode.select
|
|
48610
|
+
* GreasePencilTreeNode.use_onion_skinning
|
|
48611
|
+
* GreasePencilTreeNode.use_masks
|
|
48612
|
+
* GreasePencilTreeNode.channel_color
|
|
48613
|
+
* GreasePencilTreeNode.parent_group
|
|
48648
48614
|
|
|
48649
48615
|
:columns: 2
|
|
48650
48616
|
|
|
@@ -48674,6 +48640,8 @@ Shared Enum Types <bpy_types_enum_items/index>
|
|
|
48674
48640
|
* bpy_struct.rna_ancestors
|
|
48675
48641
|
* bpy_struct.type_recast
|
|
48676
48642
|
* bpy_struct.values
|
|
48643
|
+
* GreasePencilTreeNode.bl_rna_get_subclass
|
|
48644
|
+
* GreasePencilTreeNode.bl_rna_get_subclass_py
|
|
48677
48645
|
|
|
48678
48646
|
:columns: 2
|
|
48679
48647
|
|
|
@@ -90013,6 +89981,102 @@ This example script prints the vertices and UVs for each polygon, assumes the ac
|
|
|
90013
89981
|
:columns: 2
|
|
90014
89982
|
|
|
90015
89983
|
|
|
89984
|
+
--------------------
|
|
89985
|
+
|
|
89986
|
+
* bpy_struct.as_pointer
|
|
89987
|
+
* bpy_struct.driver_add
|
|
89988
|
+
* bpy_struct.driver_remove
|
|
89989
|
+
* bpy_struct.get
|
|
89990
|
+
* bpy_struct.id_properties_clear
|
|
89991
|
+
* bpy_struct.id_properties_ensure
|
|
89992
|
+
* bpy_struct.id_properties_ui
|
|
89993
|
+
* bpy_struct.is_property_hidden
|
|
89994
|
+
* bpy_struct.is_property_overridable_library
|
|
89995
|
+
* bpy_struct.is_property_readonly
|
|
89996
|
+
* bpy_struct.is_property_set
|
|
89997
|
+
* bpy_struct.items
|
|
89998
|
+
* bpy_struct.keyframe_delete
|
|
89999
|
+
* bpy_struct.keyframe_insert
|
|
90000
|
+
* bpy_struct.keys
|
|
90001
|
+
* bpy_struct.path_from_id
|
|
90002
|
+
* bpy_struct.path_resolve
|
|
90003
|
+
* bpy_struct.pop
|
|
90004
|
+
* bpy_struct.property_overridable_library_set
|
|
90005
|
+
* bpy_struct.property_unset
|
|
90006
|
+
* bpy_struct.rna_ancestors
|
|
90007
|
+
* bpy_struct.type_recast
|
|
90008
|
+
* bpy_struct.values
|
|
90009
|
+
* Node.socket_value_update
|
|
90010
|
+
* Node.is_registered_node_type
|
|
90011
|
+
* Node.poll
|
|
90012
|
+
* Node.poll_instance
|
|
90013
|
+
* Node.update
|
|
90014
|
+
* Node.insert_link
|
|
90015
|
+
* Node.init
|
|
90016
|
+
* Node.copy
|
|
90017
|
+
* Node.free
|
|
90018
|
+
* Node.draw_buttons
|
|
90019
|
+
* Node.draw_buttons_ext
|
|
90020
|
+
* Node.draw_label
|
|
90021
|
+
* Node.debug_zone_body_lazy_function_graph
|
|
90022
|
+
* Node.debug_zone_lazy_function_graph
|
|
90023
|
+
* Node.poll
|
|
90024
|
+
* Node.bl_rna_get_subclass
|
|
90025
|
+
* Node.bl_rna_get_subclass_py
|
|
90026
|
+
* NodeInternal.poll
|
|
90027
|
+
* NodeInternal.poll_instance
|
|
90028
|
+
* NodeInternal.update
|
|
90029
|
+
* NodeInternal.draw_buttons
|
|
90030
|
+
* NodeInternal.draw_buttons_ext
|
|
90031
|
+
* NodeInternal.bl_rna_get_subclass
|
|
90032
|
+
* NodeInternal.bl_rna_get_subclass_py
|
|
90033
|
+
* GeometryNode.poll
|
|
90034
|
+
* GeometryNode.bl_rna_get_subclass
|
|
90035
|
+
* GeometryNode.bl_rna_get_subclass_py
|
|
90036
|
+
|
|
90037
|
+
:columns: 2
|
|
90038
|
+
|
|
90039
|
+
|
|
90040
|
+
--------------------
|
|
90041
|
+
|
|
90042
|
+
* bpy_struct.id_data
|
|
90043
|
+
* Node.type
|
|
90044
|
+
* Node.location
|
|
90045
|
+
* Node.location_absolute
|
|
90046
|
+
* Node.width
|
|
90047
|
+
* Node.height
|
|
90048
|
+
* Node.dimensions
|
|
90049
|
+
* Node.name
|
|
90050
|
+
* Node.label
|
|
90051
|
+
* Node.inputs
|
|
90052
|
+
* Node.outputs
|
|
90053
|
+
* Node.internal_links
|
|
90054
|
+
* Node.parent
|
|
90055
|
+
* Node.warning_propagation
|
|
90056
|
+
* Node.use_custom_color
|
|
90057
|
+
* Node.color
|
|
90058
|
+
* Node.color_tag
|
|
90059
|
+
* Node.select
|
|
90060
|
+
* Node.show_options
|
|
90061
|
+
* Node.show_preview
|
|
90062
|
+
* Node.hide
|
|
90063
|
+
* Node.mute
|
|
90064
|
+
* Node.show_texture
|
|
90065
|
+
* Node.bl_idname
|
|
90066
|
+
* Node.bl_label
|
|
90067
|
+
* Node.bl_description
|
|
90068
|
+
* Node.bl_icon
|
|
90069
|
+
* Node.bl_static_type
|
|
90070
|
+
* Node.bl_width_default
|
|
90071
|
+
* Node.bl_width_min
|
|
90072
|
+
* Node.bl_width_max
|
|
90073
|
+
* Node.bl_height_default
|
|
90074
|
+
* Node.bl_height_min
|
|
90075
|
+
* Node.bl_height_max
|
|
90076
|
+
|
|
90077
|
+
:columns: 2
|
|
90078
|
+
|
|
90079
|
+
|
|
90016
90080
|
--------------------
|
|
90017
90081
|
|
|
90018
90082
|
* bpy_struct.as_pointer
|
|
@@ -99868,6 +99932,8 @@ from a search field, this can be done using bpy.types.Operator.invoke_search_pop
|
|
|
99868
99932
|
* GeometryNodeImageInfo.output_template
|
|
99869
99933
|
* GeometryNodeImageTexture.input_template
|
|
99870
99934
|
* GeometryNodeImageTexture.output_template
|
|
99935
|
+
* GeometryNodeImportCSV.input_template
|
|
99936
|
+
* GeometryNodeImportCSV.output_template
|
|
99871
99937
|
* GeometryNodeImportOBJ.input_template
|
|
99872
99938
|
* GeometryNodeImportOBJ.output_template
|
|
99873
99939
|
* GeometryNodeImportPLY.input_template
|
|
@@ -101060,8 +101126,6 @@ from a search field, this can be done using bpy.types.Operator.invoke_search_pop
|
|
|
101060
101126
|
* MetaStrip.strips
|
|
101061
101127
|
* MultiplyStrip.input_1
|
|
101062
101128
|
* MultiplyStrip.input_2
|
|
101063
|
-
* OverDropStrip.input_1
|
|
101064
|
-
* OverDropStrip.input_2
|
|
101065
101129
|
* SequenceEditor.active_strip
|
|
101066
101130
|
* SequenceEditor.display_stack
|
|
101067
101131
|
* SequenceEditor.meta_stack
|
|
@@ -114675,7 +114739,6 @@ class StripsMeta(bpy_prop_collection[Strip], bpy_struct):
|
|
|
114675
114739
|
"ALPHA_UNDER",
|
|
114676
114740
|
"GAMMA_CROSS",
|
|
114677
114741
|
"MULTIPLY",
|
|
114678
|
-
"OVER_DROP",
|
|
114679
114742
|
"WIPE",
|
|
114680
114743
|
"GLOW",
|
|
114681
114744
|
"TRANSFORM",
|
|
@@ -114700,7 +114763,7 @@ class StripsMeta(bpy_prop_collection[Strip], bpy_struct):
|
|
|
114700
114763
|
:param name: Name for the new strip
|
|
114701
114764
|
:type name: str
|
|
114702
114765
|
:param type: Type, type for the new strip
|
|
114703
|
-
:type type: typing.Literal['CROSS','ADD','SUBTRACT','ALPHA_OVER','ALPHA_UNDER','GAMMA_CROSS','MULTIPLY','
|
|
114766
|
+
:type type: typing.Literal['CROSS','ADD','SUBTRACT','ALPHA_OVER','ALPHA_UNDER','GAMMA_CROSS','MULTIPLY','WIPE','GLOW','TRANSFORM','COLOR','SPEED','MULTICAM','ADJUSTMENT','GAUSSIAN_BLUR','TEXT','COLORMIX'] | None
|
|
114704
114767
|
:param channel: Channel, The channel for the new strip
|
|
114705
114768
|
:type channel: int | None
|
|
114706
114769
|
:param frame_start: The start frame for the new strip
|
|
@@ -114917,7 +114980,6 @@ class StripsTopLevel(bpy_prop_collection[Strip], bpy_struct):
|
|
|
114917
114980
|
"ALPHA_UNDER",
|
|
114918
114981
|
"GAMMA_CROSS",
|
|
114919
114982
|
"MULTIPLY",
|
|
114920
|
-
"OVER_DROP",
|
|
114921
114983
|
"WIPE",
|
|
114922
114984
|
"GLOW",
|
|
114923
114985
|
"TRANSFORM",
|
|
@@ -114942,7 +115004,7 @@ class StripsTopLevel(bpy_prop_collection[Strip], bpy_struct):
|
|
|
114942
115004
|
:param name: Name for the new strip
|
|
114943
115005
|
:type name: str
|
|
114944
115006
|
:param type: Type, type for the new strip
|
|
114945
|
-
:type type: typing.Literal['CROSS','ADD','SUBTRACT','ALPHA_OVER','ALPHA_UNDER','GAMMA_CROSS','MULTIPLY','
|
|
115007
|
+
:type type: typing.Literal['CROSS','ADD','SUBTRACT','ALPHA_OVER','ALPHA_UNDER','GAMMA_CROSS','MULTIPLY','WIPE','GLOW','TRANSFORM','COLOR','SPEED','MULTICAM','ADJUSTMENT','GAUSSIAN_BLUR','TEXT','COLORMIX'] | None
|
|
114946
115008
|
:param channel: Channel, The channel for the new strip
|
|
114947
115009
|
:type channel: int | None
|
|
114948
115010
|
:param frame_start: The start frame for the new strip
|
|
@@ -151439,6 +151501,59 @@ class GeometryNodeImageTexture(GeometryNode, NodeInternal, Node, bpy_struct):
|
|
|
151439
151501
|
:rtype: typing.Any
|
|
151440
151502
|
"""
|
|
151441
151503
|
|
|
151504
|
+
class GeometryNodeImportCSV(GeometryNode, NodeInternal, Node, bpy_struct):
|
|
151505
|
+
"""Import geometry from an CSV file"""
|
|
151506
|
+
|
|
151507
|
+
@classmethod
|
|
151508
|
+
def is_registered_node_type(cls) -> bool:
|
|
151509
|
+
"""True if a registered node type
|
|
151510
|
+
|
|
151511
|
+
:return: Result
|
|
151512
|
+
:rtype: bool
|
|
151513
|
+
"""
|
|
151514
|
+
|
|
151515
|
+
@classmethod
|
|
151516
|
+
def input_template(cls, index: int | None) -> NodeInternalSocketTemplate:
|
|
151517
|
+
"""Input socket template
|
|
151518
|
+
|
|
151519
|
+
:param index: Index
|
|
151520
|
+
:type index: int | None
|
|
151521
|
+
:return: result
|
|
151522
|
+
:rtype: NodeInternalSocketTemplate
|
|
151523
|
+
"""
|
|
151524
|
+
|
|
151525
|
+
@classmethod
|
|
151526
|
+
def output_template(cls, index: int | None) -> NodeInternalSocketTemplate:
|
|
151527
|
+
"""Output socket template
|
|
151528
|
+
|
|
151529
|
+
:param index: Index
|
|
151530
|
+
:type index: int | None
|
|
151531
|
+
:return: result
|
|
151532
|
+
:rtype: NodeInternalSocketTemplate
|
|
151533
|
+
"""
|
|
151534
|
+
|
|
151535
|
+
@classmethod
|
|
151536
|
+
def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
|
|
151537
|
+
"""
|
|
151538
|
+
|
|
151539
|
+
:param id: The RNA type identifier.
|
|
151540
|
+
:type id: str | None
|
|
151541
|
+
:param default:
|
|
151542
|
+
:return: The RNA type or default when not found.
|
|
151543
|
+
:rtype: Struct
|
|
151544
|
+
"""
|
|
151545
|
+
|
|
151546
|
+
@classmethod
|
|
151547
|
+
def bl_rna_get_subclass_py(cls, id: str | None, default=None) -> typing.Any:
|
|
151548
|
+
"""
|
|
151549
|
+
|
|
151550
|
+
:param id: The RNA type identifier.
|
|
151551
|
+
:type id: str | None
|
|
151552
|
+
:param default:
|
|
151553
|
+
:return: The class or default when not found.
|
|
151554
|
+
:rtype: typing.Any
|
|
151555
|
+
"""
|
|
151556
|
+
|
|
151442
151557
|
class GeometryNodeImportOBJ(GeometryNode, NodeInternal, Node, bpy_struct):
|
|
151443
151558
|
"""Import geometry from an OBJ file"""
|
|
151444
151559
|
|
|
@@ -161791,7 +161906,7 @@ class GreasePencilLatticeModifier(Modifier, bpy_struct):
|
|
|
161791
161906
|
:rtype: typing.Any
|
|
161792
161907
|
"""
|
|
161793
161908
|
|
|
161794
|
-
class GreasePencilLayer(bpy_struct):
|
|
161909
|
+
class GreasePencilLayer(GreasePencilTreeNode, bpy_struct):
|
|
161795
161910
|
"""Collection of related drawings"""
|
|
161796
161911
|
|
|
161797
161912
|
blend_mode: typing.Literal[
|
|
@@ -161814,24 +161929,12 @@ class GreasePencilLayer(bpy_struct):
|
|
|
161814
161929
|
:type: GreasePencilFrames
|
|
161815
161930
|
"""
|
|
161816
161931
|
|
|
161817
|
-
hide: bool
|
|
161818
|
-
""" Set layer visibility
|
|
161819
|
-
|
|
161820
|
-
:type: bool
|
|
161821
|
-
"""
|
|
161822
|
-
|
|
161823
161932
|
ignore_locked_materials: bool
|
|
161824
161933
|
""" Allow editing strokes even if they use locked materials
|
|
161825
161934
|
|
|
161826
161935
|
:type: bool
|
|
161827
161936
|
"""
|
|
161828
161937
|
|
|
161829
|
-
lock: bool
|
|
161830
|
-
""" Protect layer from further editing and/or frame changes
|
|
161831
|
-
|
|
161832
|
-
:type: bool
|
|
161833
|
-
"""
|
|
161834
|
-
|
|
161835
161938
|
lock_frame: bool
|
|
161836
161939
|
""" Lock current frame displayed by layer
|
|
161837
161940
|
|
|
@@ -161856,12 +161959,6 @@ class GreasePencilLayer(bpy_struct):
|
|
|
161856
161959
|
:type: mathutils.Matrix
|
|
161857
161960
|
"""
|
|
161858
161961
|
|
|
161859
|
-
name: str
|
|
161860
|
-
""" Layer name
|
|
161861
|
-
|
|
161862
|
-
:type: str
|
|
161863
|
-
"""
|
|
161864
|
-
|
|
161865
161962
|
opacity: float
|
|
161866
161963
|
""" Layer Opacity
|
|
161867
161964
|
|
|
@@ -161880,12 +161977,6 @@ class GreasePencilLayer(bpy_struct):
|
|
|
161880
161977
|
:type: str
|
|
161881
161978
|
"""
|
|
161882
161979
|
|
|
161883
|
-
parent_group: GreasePencilLayerGroup
|
|
161884
|
-
""" The parent layer group this layer is part of
|
|
161885
|
-
|
|
161886
|
-
:type: GreasePencilLayerGroup
|
|
161887
|
-
"""
|
|
161888
|
-
|
|
161889
161980
|
pass_index: int
|
|
161890
161981
|
""" Index number for the "Layer Index" pass
|
|
161891
161982
|
|
|
@@ -161910,12 +162001,6 @@ class GreasePencilLayer(bpy_struct):
|
|
|
161910
162001
|
:type: mathutils.Vector
|
|
161911
162002
|
"""
|
|
161912
162003
|
|
|
161913
|
-
select: bool
|
|
161914
|
-
""" Layer is selected for editing in the Dope Sheet
|
|
161915
|
-
|
|
161916
|
-
:type: bool
|
|
161917
|
-
"""
|
|
161918
|
-
|
|
161919
162004
|
tint_color: mathutils.Color
|
|
161920
162005
|
""" Color for tinting stroke colors
|
|
161921
162006
|
|
|
@@ -161940,18 +162025,6 @@ class GreasePencilLayer(bpy_struct):
|
|
|
161940
162025
|
:type: bool
|
|
161941
162026
|
"""
|
|
161942
162027
|
|
|
161943
|
-
use_masks: bool
|
|
161944
|
-
""" The visibility of drawings on this layer is affected by the layers in its masks list
|
|
161945
|
-
|
|
161946
|
-
:type: bool
|
|
161947
|
-
"""
|
|
161948
|
-
|
|
161949
|
-
use_onion_skinning: bool
|
|
161950
|
-
""" Display onion skins before and after the current frame
|
|
161951
|
-
|
|
161952
|
-
:type: bool
|
|
161953
|
-
"""
|
|
161954
|
-
|
|
161955
162028
|
use_viewlayer_masks: bool
|
|
161956
162029
|
""" Include the mask layers when rendering the view-layer
|
|
161957
162030
|
|
|
@@ -162002,7 +162075,7 @@ class GreasePencilLayer(bpy_struct):
|
|
|
162002
162075
|
:rtype: typing.Any
|
|
162003
162076
|
"""
|
|
162004
162077
|
|
|
162005
|
-
class GreasePencilLayerGroup(bpy_struct):
|
|
162078
|
+
class GreasePencilLayerGroup(GreasePencilTreeNode, bpy_struct):
|
|
162006
162079
|
"""Group of Grease Pencil layers"""
|
|
162007
162080
|
|
|
162008
162081
|
color_tag: typing.Literal[
|
|
@@ -162021,48 +162094,12 @@ class GreasePencilLayerGroup(bpy_struct):
|
|
|
162021
162094
|
:type: typing.Literal['NONE','COLOR1','COLOR2','COLOR3','COLOR4','COLOR5','COLOR6','COLOR7','COLOR8']
|
|
162022
162095
|
"""
|
|
162023
162096
|
|
|
162024
|
-
hide: bool
|
|
162025
|
-
""" Set layer group visibility
|
|
162026
|
-
|
|
162027
|
-
:type: bool
|
|
162028
|
-
"""
|
|
162029
|
-
|
|
162030
162097
|
is_expanded: bool
|
|
162031
162098
|
""" The layer groups is expanded in the UI
|
|
162032
162099
|
|
|
162033
162100
|
:type: bool
|
|
162034
162101
|
"""
|
|
162035
162102
|
|
|
162036
|
-
lock: bool
|
|
162037
|
-
""" Protect group from further editing and/or frame changes
|
|
162038
|
-
|
|
162039
|
-
:type: bool
|
|
162040
|
-
"""
|
|
162041
|
-
|
|
162042
|
-
name: str
|
|
162043
|
-
""" Group name
|
|
162044
|
-
|
|
162045
|
-
:type: str
|
|
162046
|
-
"""
|
|
162047
|
-
|
|
162048
|
-
parent_group: typing_extensions.Self
|
|
162049
|
-
""" The parent group this group is part of
|
|
162050
|
-
|
|
162051
|
-
:type: typing_extensions.Self
|
|
162052
|
-
"""
|
|
162053
|
-
|
|
162054
|
-
use_masks: bool
|
|
162055
|
-
""" The visibility of drawings in the layers in this group is affected by the layers in the masks lists
|
|
162056
|
-
|
|
162057
|
-
:type: bool
|
|
162058
|
-
"""
|
|
162059
|
-
|
|
162060
|
-
use_onion_skinning: bool
|
|
162061
|
-
""" Display onion skins before and after the current frame
|
|
162062
|
-
|
|
162063
|
-
:type: bool
|
|
162064
|
-
"""
|
|
162065
|
-
|
|
162066
162103
|
@classmethod
|
|
162067
162104
|
def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
|
|
162068
162105
|
"""
|
|
@@ -164839,6 +164876,79 @@ class GreasePencilTintModifier(Modifier, bpy_struct):
|
|
|
164839
164876
|
:rtype: typing.Any
|
|
164840
164877
|
"""
|
|
164841
164878
|
|
|
164879
|
+
class GreasePencilTreeNode(bpy_struct):
|
|
164880
|
+
"""Grease Pencil node in the layer tree. Either a layer or a group"""
|
|
164881
|
+
|
|
164882
|
+
channel_color: mathutils.Color
|
|
164883
|
+
""" Color of the channel in the dope sheet
|
|
164884
|
+
|
|
164885
|
+
:type: mathutils.Color
|
|
164886
|
+
"""
|
|
164887
|
+
|
|
164888
|
+
hide: bool
|
|
164889
|
+
""" Set tree node visibility
|
|
164890
|
+
|
|
164891
|
+
:type: bool
|
|
164892
|
+
"""
|
|
164893
|
+
|
|
164894
|
+
lock: bool
|
|
164895
|
+
""" Protect tree node from editing
|
|
164896
|
+
|
|
164897
|
+
:type: bool
|
|
164898
|
+
"""
|
|
164899
|
+
|
|
164900
|
+
name: str
|
|
164901
|
+
""" The name of the tree node
|
|
164902
|
+
|
|
164903
|
+
:type: str
|
|
164904
|
+
"""
|
|
164905
|
+
|
|
164906
|
+
parent_group: GreasePencilLayerGroup
|
|
164907
|
+
""" The parent group of this layer tree node
|
|
164908
|
+
|
|
164909
|
+
:type: GreasePencilLayerGroup
|
|
164910
|
+
"""
|
|
164911
|
+
|
|
164912
|
+
select: bool
|
|
164913
|
+
""" Tree node is selected
|
|
164914
|
+
|
|
164915
|
+
:type: bool
|
|
164916
|
+
"""
|
|
164917
|
+
|
|
164918
|
+
use_masks: bool
|
|
164919
|
+
""" The visibility of drawings in this tree node is affected by the layers in the masks list
|
|
164920
|
+
|
|
164921
|
+
:type: bool
|
|
164922
|
+
"""
|
|
164923
|
+
|
|
164924
|
+
use_onion_skinning: bool
|
|
164925
|
+
""" Display onion skins before and after the current frame
|
|
164926
|
+
|
|
164927
|
+
:type: bool
|
|
164928
|
+
"""
|
|
164929
|
+
|
|
164930
|
+
@classmethod
|
|
164931
|
+
def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
|
|
164932
|
+
"""
|
|
164933
|
+
|
|
164934
|
+
:param id: The RNA type identifier.
|
|
164935
|
+
:type id: str | None
|
|
164936
|
+
:param default:
|
|
164937
|
+
:return: The RNA type or default when not found.
|
|
164938
|
+
:rtype: Struct
|
|
164939
|
+
"""
|
|
164940
|
+
|
|
164941
|
+
@classmethod
|
|
164942
|
+
def bl_rna_get_subclass_py(cls, id: str | None, default=None) -> typing.Any:
|
|
164943
|
+
"""
|
|
164944
|
+
|
|
164945
|
+
:param id: The RNA type identifier.
|
|
164946
|
+
:type id: str | None
|
|
164947
|
+
:param default:
|
|
164948
|
+
:return: The class or default when not found.
|
|
164949
|
+
:rtype: typing.Any
|
|
164950
|
+
"""
|
|
164951
|
+
|
|
164842
164952
|
class GreasePencilWeightAngleModifier(Modifier, bpy_struct):
|
|
164843
164953
|
"""Calculate Vertex Weight dynamically"""
|
|
164844
164954
|
|
|
@@ -166690,13 +166800,21 @@ class Image(ID, bpy_struct):
|
|
|
166690
166800
|
:type quality: int | None
|
|
166691
166801
|
"""
|
|
166692
166802
|
|
|
166693
|
-
def save(
|
|
166803
|
+
def save(
|
|
166804
|
+
self,
|
|
166805
|
+
*,
|
|
166806
|
+
filepath: str = "",
|
|
166807
|
+
quality: int | None = 0,
|
|
166808
|
+
save_copy: bool | None = False,
|
|
166809
|
+
):
|
|
166694
166810
|
"""Save image
|
|
166695
166811
|
|
|
166696
166812
|
:param filepath: Output path, uses image data-block filepath if not specified
|
|
166697
166813
|
:type filepath: str
|
|
166698
166814
|
:param quality: Quality, Quality for image formats that support lossy compression, uses default quality if not specified
|
|
166699
166815
|
:type quality: int | None
|
|
166816
|
+
:param save_copy: Save Copy, Save the image as a copy, without updating current image's filepath
|
|
166817
|
+
:type save_copy: bool | None
|
|
166700
166818
|
"""
|
|
166701
166819
|
|
|
166702
166820
|
def pack(self, *, data: str = "", data_len: int | None = 0):
|
|
@@ -189059,49 +189177,6 @@ class OperatorStrokeElement(PropertyGroup, bpy_struct):
|
|
|
189059
189177
|
:rtype: typing.Any
|
|
189060
189178
|
"""
|
|
189061
189179
|
|
|
189062
|
-
class OverDropStrip(EffectStrip, Strip, bpy_struct):
|
|
189063
|
-
"""Over Drop Strip"""
|
|
189064
|
-
|
|
189065
|
-
input_1: Strip
|
|
189066
|
-
""" First input for the effect strip
|
|
189067
|
-
|
|
189068
|
-
:type: Strip
|
|
189069
|
-
"""
|
|
189070
|
-
|
|
189071
|
-
input_2: Strip
|
|
189072
|
-
""" Second input for the effect strip
|
|
189073
|
-
|
|
189074
|
-
:type: Strip
|
|
189075
|
-
"""
|
|
189076
|
-
|
|
189077
|
-
input_count: int
|
|
189078
|
-
"""
|
|
189079
|
-
|
|
189080
|
-
:type: int
|
|
189081
|
-
"""
|
|
189082
|
-
|
|
189083
|
-
@classmethod
|
|
189084
|
-
def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
|
|
189085
|
-
"""
|
|
189086
|
-
|
|
189087
|
-
:param id: The RNA type identifier.
|
|
189088
|
-
:type id: str | None
|
|
189089
|
-
:param default:
|
|
189090
|
-
:return: The RNA type or default when not found.
|
|
189091
|
-
:rtype: Struct
|
|
189092
|
-
"""
|
|
189093
|
-
|
|
189094
|
-
@classmethod
|
|
189095
|
-
def bl_rna_get_subclass_py(cls, id: str | None, default=None) -> typing.Any:
|
|
189096
|
-
"""
|
|
189097
|
-
|
|
189098
|
-
:param id: The RNA type identifier.
|
|
189099
|
-
:type id: str | None
|
|
189100
|
-
:param default:
|
|
189101
|
-
:return: The class or default when not found.
|
|
189102
|
-
:rtype: typing.Any
|
|
189103
|
-
"""
|
|
189104
|
-
|
|
189105
189180
|
class PARTICLE_UL_particle_systems(UIList, bpy_struct):
|
|
189106
189181
|
def draw_item(
|
|
189107
189182
|
self,
|
|
@@ -214835,11 +214910,10 @@ class Strip(bpy_struct):
|
|
|
214835
214910
|
"ALPHA_OVER",
|
|
214836
214911
|
"ALPHA_UNDER",
|
|
214837
214912
|
"GAMMA_CROSS",
|
|
214838
|
-
"OVER_DROP",
|
|
214839
214913
|
]
|
|
214840
214914
|
""" Method for controlling how the strip combines with other strips
|
|
214841
214915
|
|
|
214842
|
-
:type: typing.Literal['REPLACE','CROSS','DARKEN','MULTIPLY','BURN','LINEAR_BURN','LIGHTEN','SCREEN','DODGE','ADD','OVERLAY','SOFT_LIGHT','HARD_LIGHT','VIVID_LIGHT','LINEAR_LIGHT','PIN_LIGHT','DIFFERENCE','EXCLUSION','SUBTRACT','HUE','SATURATION','COLOR','VALUE','ALPHA_OVER','ALPHA_UNDER','GAMMA_CROSS'
|
|
214916
|
+
:type: typing.Literal['REPLACE','CROSS','DARKEN','MULTIPLY','BURN','LINEAR_BURN','LIGHTEN','SCREEN','DODGE','ADD','OVERLAY','SOFT_LIGHT','HARD_LIGHT','VIVID_LIGHT','LINEAR_LIGHT','PIN_LIGHT','DIFFERENCE','EXCLUSION','SUBTRACT','HUE','SATURATION','COLOR','VALUE','ALPHA_OVER','ALPHA_UNDER','GAMMA_CROSS']
|
|
214843
214917
|
"""
|
|
214844
214918
|
|
|
214845
214919
|
channel: int
|
|
@@ -214971,7 +215045,6 @@ class Strip(bpy_struct):
|
|
|
214971
215045
|
"ALPHA_UNDER",
|
|
214972
215046
|
"GAMMA_CROSS",
|
|
214973
215047
|
"MULTIPLY",
|
|
214974
|
-
"OVER_DROP",
|
|
214975
215048
|
"WIPE",
|
|
214976
215049
|
"GLOW",
|
|
214977
215050
|
"TRANSFORM",
|
|
@@ -214985,7 +215058,7 @@ class Strip(bpy_struct):
|
|
|
214985
215058
|
]
|
|
214986
215059
|
"""
|
|
214987
215060
|
|
|
214988
|
-
:type: typing.Literal['IMAGE','META','SCENE','MOVIE','MOVIECLIP','MASK','SOUND','CROSS','ADD','SUBTRACT','ALPHA_OVER','ALPHA_UNDER','GAMMA_CROSS','MULTIPLY','
|
|
215061
|
+
:type: typing.Literal['IMAGE','META','SCENE','MOVIE','MOVIECLIP','MASK','SOUND','CROSS','ADD','SUBTRACT','ALPHA_OVER','ALPHA_UNDER','GAMMA_CROSS','MULTIPLY','WIPE','GLOW','TRANSFORM','COLOR','SPEED','MULTICAM','ADJUSTMENT','GAUSSIAN_BLUR','TEXT','COLORMIX']
|
|
214989
215062
|
"""
|
|
214990
215063
|
|
|
214991
215064
|
use_cache_composite: bool
|
|
@@ -198,7 +198,7 @@ bpy/app/icons/__init__.pyi,sha256=w18Xn9y0T54WlpHyhC3_y8a3Lq9kuo3U72Bu7wOY41A,92
|
|
|
198
198
|
bpy/app/timers/__init__.pyi,sha256=vtrATRAmkTfP1CknievwpOCC19cPOMowyLTE6Ie9GSg,2126
|
|
199
199
|
bpy/app/translations/__init__.pyi,sha256=rrUs88RJakTJ8IZzE7oRunD_HqLByX5tqmLSrQ_e8dQ,7007
|
|
200
200
|
bpy/msgbus/__init__.pyi,sha256=e9cmp_Wq7FA5pDTQQJ2s0_I84bEJMu8J-5Lu5gNoClM,2954
|
|
201
|
-
bpy/ops/__init__.pyi,sha256=
|
|
201
|
+
bpy/ops/__init__.pyi,sha256=4UAWi3R0nS5cOHanhW0V32u2JGu11U2vIaEJ6dv0LnE,5559
|
|
202
202
|
bpy/ops/action/__init__.pyi,sha256=LBNWtp-Nd2C-ae5OK4WTxg-ztiufJ4OLan-f6W7EJXo,18645
|
|
203
203
|
bpy/ops/anim/__init__.pyi,sha256=VM6kJF9mPnpDINvcVqrf-fEHlSRzn-P1vmCPvK8KDwA,24980
|
|
204
204
|
bpy/ops/armature/__init__.pyi,sha256=k6XyBQsnS9j-7cKqfmN4qYVyhv9gQVwX45g-3DJ8jro,20909
|
|
@@ -259,7 +259,7 @@ bpy/ops/screen/__init__.pyi,sha256=6WbfNAHRE24NwTHuUyk6pfZAROdMzIn5V_hjYq3rVLQ,1
|
|
|
259
259
|
bpy/ops/script/__init__.pyi,sha256=LPFPi3ovQdpV5IVlMnJpo9K3i88q1t6cFnoXnfiJ5HA,978
|
|
260
260
|
bpy/ops/sculpt/__init__.pyi,sha256=VzEVUPbe_HnfrYblaeM7zvA45ocxqGiIQgyIigz9ja4,47060
|
|
261
261
|
bpy/ops/sculpt_curves/__init__.pyi,sha256=jDglkug-tn6Esxo-_DrILnCkifpWfQ82x9JE_q0PW-c,2849
|
|
262
|
-
bpy/ops/sequencer/__init__.pyi,sha256=
|
|
262
|
+
bpy/ops/sequencer/__init__.pyi,sha256=UuFJ-EkUCro9cr6zlOAyxeauPpcRSRYx6746-yKETDk,78125
|
|
263
263
|
bpy/ops/sound/__init__.pyi,sha256=kz9Sk9QCN0lUszJ6sShcwBSj7azOAne3SMADKG3i15c,16929
|
|
264
264
|
bpy/ops/spreadsheet/__init__.pyi,sha256=q_4fYPoBC6g61Pw7Mz71PQB93vYHxk661B18CvIkguA,1360
|
|
265
265
|
bpy/ops/surface/__init__.pyi,sha256=OD-_jQEOIHzb89OaZ4JLMZlnP7-s4jbY4a2DpI9bA_I,10315
|
|
@@ -277,7 +277,7 @@ bpy/ops/workspace/__init__.pyi,sha256=BHvDV5CcVBnuKaL8akhm-Es7VcGUjf3jGFTbfx5YHC
|
|
|
277
277
|
bpy/ops/world/__init__.pyi,sha256=pBV8EDA8HoWovDSul6mxkF7Mt6N3PQWuukRhkw3dBr8,601
|
|
278
278
|
bpy/path/__init__.pyi,sha256=emlV7ocbsOuOSMzxJXr6ldKRk2-_K0DWlKc3Ylt5dsU,5484
|
|
279
279
|
bpy/props/__init__.pyi,sha256=Ky1J5ndL8p_pvAaQakudyKKVynbr1NxXvzoN-5E9_I0,35237
|
|
280
|
-
bpy/types/__init__.pyi,sha256=
|
|
280
|
+
bpy/types/__init__.pyi,sha256=ebz-7VOUrYXPy4_tox_nb0BaK6pduFJXej6BPx43WZQ,5469441
|
|
281
281
|
bpy/utils/__init__.pyi,sha256=y7dfOaWh9PE_q0Qs8gEKOm71RQuMZI0wQ1B07DCDHF4,14909
|
|
282
282
|
bpy/utils/previews/__init__.pyi,sha256=AsbDN4vRLbSTZ7_S_4LqmI1sJmV_8NnqDt1QfBdH94Y,2280
|
|
283
283
|
bpy/utils/units/__init__.pyi,sha256=QuXx22JjmObRmP_KcdoqOlDSvVtXZHeK5nTIvwjcUnI,2645
|
|
@@ -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-20250211.dist-info/METADATA,sha256=xmfYl67Sl_3ekSWguudxKNFJj9OAGxiQfespyWhXxjw,7429
|
|
363
|
+
fake_bpy_module-20250211.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
|
364
|
+
fake_bpy_module-20250211.dist-info/top_level.txt,sha256=SZm3DVRKif7dFSjYKiIIg3_7uqjIwRAwOnCIcT4hRNM,500
|
|
365
|
+
fake_bpy_module-20250211.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|