fake-bge-module 20250210__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.
- _bpy_internal/extensions/wheel_manager/__init__.pyi +1 -1
- addon_utils/__init__.pyi +3 -0
- bpy/ops/__init__.pyi +9 -3
- bpy/ops/grease_pencil/__init__.pyi +12 -0
- bpy/ops/sequencer/__init__.pyi +2 -10
- bpy/types/__init__.pyi +297 -224
- {fake_bge_module-20250210.dist-info → fake_bge_module-20250211.dist-info}/METADATA +1 -1
- {fake_bge_module-20250210.dist-info → fake_bge_module-20250211.dist-info}/RECORD +10 -10
- {fake_bge_module-20250210.dist-info → fake_bge_module-20250211.dist-info}/WHEEL +0 -0
- {fake_bge_module-20250210.dist-info → fake_bge_module-20250211.dist-info}/top_level.txt +0 -0
|
@@ -3,7 +3,7 @@ import collections.abc
|
|
|
3
3
|
import typing_extensions
|
|
4
4
|
|
|
5
5
|
def apply_action(
|
|
6
|
-
*, local_dir, local_dir_site_packages, wheel_list, remove_error_fn, debug
|
|
6
|
+
*, local_dir, local_dir_site_packages, wheel_list, error_fn, remove_error_fn, debug
|
|
7
7
|
): ...
|
|
8
8
|
def wheel_list_deduplicate_as_skip_set(wheel_list):
|
|
9
9
|
"""Return all wheel paths to skip."""
|
addon_utils/__init__.pyi
CHANGED
|
@@ -64,6 +64,7 @@ def enable(
|
|
|
64
64
|
def extensions_refresh(
|
|
65
65
|
ensure_wheels: bool = True,
|
|
66
66
|
addon_modules_pending: None | collections.abc.Sequence[str] | None = None,
|
|
67
|
+
handle_error: None | collections.abc.Callable[None] | None = None,
|
|
67
68
|
):
|
|
68
69
|
"""Ensure data relating to extensions is up to date.
|
|
69
70
|
This should be called after extensions on the file-system have changed.
|
|
@@ -73,6 +74,8 @@ def extensions_refresh(
|
|
|
73
74
|
:param addon_modules_pending: Refresh these add-ons by listing their package names, as if they are enabled.
|
|
74
75
|
This is needed so wheels can be setup before the add-on is enabled.
|
|
75
76
|
:type addon_modules_pending: None | collections.abc.Sequence[str] | None
|
|
77
|
+
:param handle_error: Called in the case of an error, taking an exception argument.
|
|
78
|
+
:type handle_error: None | collections.abc.Callable[None] | None
|
|
76
79
|
"""
|
|
77
80
|
|
|
78
81
|
def module_bl_info(mod, *, info_basis=None): ...
|
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
|
|
|
@@ -177,6 +177,15 @@ def delete(execution_context: int | str | None = None, undo: bool | None = None)
|
|
|
177
177
|
:type undo: bool | None
|
|
178
178
|
"""
|
|
179
179
|
|
|
180
|
+
def delete_breakdown(
|
|
181
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
182
|
+
):
|
|
183
|
+
"""Remove breakdown frames generated by interpolating between two Grease Pencil frames
|
|
184
|
+
|
|
185
|
+
:type execution_context: int | str | None
|
|
186
|
+
:type undo: bool | None
|
|
187
|
+
"""
|
|
188
|
+
|
|
180
189
|
def delete_frame(
|
|
181
190
|
execution_context: int | str | None = None,
|
|
182
191
|
undo: bool | None = None,
|
|
@@ -940,6 +949,7 @@ def paste(
|
|
|
940
949
|
undo: bool | None = None,
|
|
941
950
|
/,
|
|
942
951
|
*,
|
|
952
|
+
type: typing.Literal["ACTIVE", "LAYER"] | None = "ACTIVE",
|
|
943
953
|
paste_back: bool | None = False,
|
|
944
954
|
keep_world_transform: bool | None = False,
|
|
945
955
|
):
|
|
@@ -947,6 +957,8 @@ def paste(
|
|
|
947
957
|
|
|
948
958
|
:type execution_context: int | str | None
|
|
949
959
|
:type undo: bool | None
|
|
960
|
+
:param type: Type
|
|
961
|
+
:type type: typing.Literal['ACTIVE','LAYER'] | None
|
|
950
962
|
:param paste_back: Paste on Back, Add pasted strokes behind all strokes
|
|
951
963
|
:type paste_back: bool | None
|
|
952
964
|
:param keep_world_transform: Keep World Transform, Keep the world transform of strokes from the clipboard unchanged
|
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
|
|
@@ -14308,93 +14317,6 @@ Property types used in class declarations are all in bpy.props
|
|
|
14308
14317
|
:columns: 2
|
|
14309
14318
|
|
|
14310
14319
|
|
|
14311
|
-
--------------------
|
|
14312
|
-
|
|
14313
|
-
* bpy_struct.id_data
|
|
14314
|
-
* Strip.name
|
|
14315
|
-
* Strip.type
|
|
14316
|
-
* Strip.select
|
|
14317
|
-
* Strip.select_left_handle
|
|
14318
|
-
* Strip.select_right_handle
|
|
14319
|
-
* Strip.mute
|
|
14320
|
-
* Strip.lock
|
|
14321
|
-
* Strip.frame_final_duration
|
|
14322
|
-
* Strip.frame_duration
|
|
14323
|
-
* Strip.frame_start
|
|
14324
|
-
* Strip.frame_final_start
|
|
14325
|
-
* Strip.frame_final_end
|
|
14326
|
-
* Strip.frame_offset_start
|
|
14327
|
-
* Strip.frame_offset_end
|
|
14328
|
-
* Strip.channel
|
|
14329
|
-
* Strip.use_linear_modifiers
|
|
14330
|
-
* Strip.blend_type
|
|
14331
|
-
* Strip.blend_alpha
|
|
14332
|
-
* Strip.effect_fader
|
|
14333
|
-
* Strip.use_default_fade
|
|
14334
|
-
* Strip.color_tag
|
|
14335
|
-
* Strip.modifiers
|
|
14336
|
-
* Strip.use_cache_raw
|
|
14337
|
-
* Strip.use_cache_preprocessed
|
|
14338
|
-
* Strip.use_cache_composite
|
|
14339
|
-
* Strip.override_cache_settings
|
|
14340
|
-
* Strip.show_retiming_keys
|
|
14341
|
-
* EffectStrip.use_deinterlace
|
|
14342
|
-
* EffectStrip.alpha_mode
|
|
14343
|
-
* EffectStrip.use_flip_x
|
|
14344
|
-
* EffectStrip.use_flip_y
|
|
14345
|
-
* EffectStrip.use_float
|
|
14346
|
-
* EffectStrip.use_reverse_frames
|
|
14347
|
-
* EffectStrip.color_multiply
|
|
14348
|
-
* EffectStrip.multiply_alpha
|
|
14349
|
-
* EffectStrip.color_saturation
|
|
14350
|
-
* EffectStrip.strobe
|
|
14351
|
-
* EffectStrip.transform
|
|
14352
|
-
* EffectStrip.crop
|
|
14353
|
-
* EffectStrip.use_proxy
|
|
14354
|
-
* EffectStrip.proxy
|
|
14355
|
-
|
|
14356
|
-
:columns: 2
|
|
14357
|
-
|
|
14358
|
-
|
|
14359
|
-
--------------------
|
|
14360
|
-
|
|
14361
|
-
* bpy_struct.as_pointer
|
|
14362
|
-
* bpy_struct.driver_add
|
|
14363
|
-
* bpy_struct.driver_remove
|
|
14364
|
-
* bpy_struct.get
|
|
14365
|
-
* bpy_struct.id_properties_clear
|
|
14366
|
-
* bpy_struct.id_properties_ensure
|
|
14367
|
-
* bpy_struct.id_properties_ui
|
|
14368
|
-
* bpy_struct.is_property_hidden
|
|
14369
|
-
* bpy_struct.is_property_overridable_library
|
|
14370
|
-
* bpy_struct.is_property_readonly
|
|
14371
|
-
* bpy_struct.is_property_set
|
|
14372
|
-
* bpy_struct.items
|
|
14373
|
-
* bpy_struct.keyframe_delete
|
|
14374
|
-
* bpy_struct.keyframe_insert
|
|
14375
|
-
* bpy_struct.keys
|
|
14376
|
-
* bpy_struct.path_from_id
|
|
14377
|
-
* bpy_struct.path_resolve
|
|
14378
|
-
* bpy_struct.pop
|
|
14379
|
-
* bpy_struct.property_overridable_library_set
|
|
14380
|
-
* bpy_struct.property_unset
|
|
14381
|
-
* bpy_struct.rna_ancestors
|
|
14382
|
-
* bpy_struct.type_recast
|
|
14383
|
-
* bpy_struct.values
|
|
14384
|
-
* Strip.strip_elem_from_frame
|
|
14385
|
-
* Strip.swap
|
|
14386
|
-
* Strip.move_to_meta
|
|
14387
|
-
* Strip.parent_meta
|
|
14388
|
-
* Strip.invalidate_cache
|
|
14389
|
-
* Strip.split
|
|
14390
|
-
* Strip.bl_rna_get_subclass
|
|
14391
|
-
* Strip.bl_rna_get_subclass_py
|
|
14392
|
-
* EffectStrip.bl_rna_get_subclass
|
|
14393
|
-
* EffectStrip.bl_rna_get_subclass_py
|
|
14394
|
-
|
|
14395
|
-
:columns: 2
|
|
14396
|
-
|
|
14397
|
-
|
|
14398
14320
|
--------------------
|
|
14399
14321
|
|
|
14400
14322
|
* bpy_struct.id_data
|
|
@@ -19173,6 +19095,42 @@ Property types used in class declarations are all in bpy.props
|
|
|
19173
19095
|
:columns: 2
|
|
19174
19096
|
|
|
19175
19097
|
|
|
19098
|
+
--------------------
|
|
19099
|
+
|
|
19100
|
+
* bpy_struct.id_data
|
|
19101
|
+
|
|
19102
|
+
:columns: 2
|
|
19103
|
+
|
|
19104
|
+
|
|
19105
|
+
--------------------
|
|
19106
|
+
|
|
19107
|
+
* bpy_struct.as_pointer
|
|
19108
|
+
* bpy_struct.driver_add
|
|
19109
|
+
* bpy_struct.driver_remove
|
|
19110
|
+
* bpy_struct.get
|
|
19111
|
+
* bpy_struct.id_properties_clear
|
|
19112
|
+
* bpy_struct.id_properties_ensure
|
|
19113
|
+
* bpy_struct.id_properties_ui
|
|
19114
|
+
* bpy_struct.is_property_hidden
|
|
19115
|
+
* bpy_struct.is_property_overridable_library
|
|
19116
|
+
* bpy_struct.is_property_readonly
|
|
19117
|
+
* bpy_struct.is_property_set
|
|
19118
|
+
* bpy_struct.items
|
|
19119
|
+
* bpy_struct.keyframe_delete
|
|
19120
|
+
* bpy_struct.keyframe_insert
|
|
19121
|
+
* bpy_struct.keys
|
|
19122
|
+
* bpy_struct.path_from_id
|
|
19123
|
+
* bpy_struct.path_resolve
|
|
19124
|
+
* bpy_struct.pop
|
|
19125
|
+
* bpy_struct.property_overridable_library_set
|
|
19126
|
+
* bpy_struct.property_unset
|
|
19127
|
+
* bpy_struct.rna_ancestors
|
|
19128
|
+
* bpy_struct.type_recast
|
|
19129
|
+
* bpy_struct.values
|
|
19130
|
+
|
|
19131
|
+
:columns: 2
|
|
19132
|
+
|
|
19133
|
+
|
|
19176
19134
|
--------------------
|
|
19177
19135
|
|
|
19178
19136
|
* Preferences.apps
|
|
@@ -50503,6 +50461,14 @@ Shared Enum Types <bpy_types_enum_items/index>
|
|
|
50503
50461
|
--------------------
|
|
50504
50462
|
|
|
50505
50463
|
* bpy_struct.id_data
|
|
50464
|
+
* GreasePencilTreeNode.name
|
|
50465
|
+
* GreasePencilTreeNode.hide
|
|
50466
|
+
* GreasePencilTreeNode.lock
|
|
50467
|
+
* GreasePencilTreeNode.select
|
|
50468
|
+
* GreasePencilTreeNode.use_onion_skinning
|
|
50469
|
+
* GreasePencilTreeNode.use_masks
|
|
50470
|
+
* GreasePencilTreeNode.channel_color
|
|
50471
|
+
* GreasePencilTreeNode.parent_group
|
|
50506
50472
|
|
|
50507
50473
|
:columns: 2
|
|
50508
50474
|
|
|
@@ -50532,6 +50498,8 @@ Shared Enum Types <bpy_types_enum_items/index>
|
|
|
50532
50498
|
* bpy_struct.rna_ancestors
|
|
50533
50499
|
* bpy_struct.type_recast
|
|
50534
50500
|
* bpy_struct.values
|
|
50501
|
+
* GreasePencilTreeNode.bl_rna_get_subclass
|
|
50502
|
+
* GreasePencilTreeNode.bl_rna_get_subclass_py
|
|
50535
50503
|
|
|
50536
50504
|
:columns: 2
|
|
50537
50505
|
|
|
@@ -93820,6 +93788,102 @@ This example script prints the vertices and UVs for each polygon, assumes the ac
|
|
|
93820
93788
|
:columns: 2
|
|
93821
93789
|
|
|
93822
93790
|
|
|
93791
|
+
--------------------
|
|
93792
|
+
|
|
93793
|
+
* bpy_struct.as_pointer
|
|
93794
|
+
* bpy_struct.driver_add
|
|
93795
|
+
* bpy_struct.driver_remove
|
|
93796
|
+
* bpy_struct.get
|
|
93797
|
+
* bpy_struct.id_properties_clear
|
|
93798
|
+
* bpy_struct.id_properties_ensure
|
|
93799
|
+
* bpy_struct.id_properties_ui
|
|
93800
|
+
* bpy_struct.is_property_hidden
|
|
93801
|
+
* bpy_struct.is_property_overridable_library
|
|
93802
|
+
* bpy_struct.is_property_readonly
|
|
93803
|
+
* bpy_struct.is_property_set
|
|
93804
|
+
* bpy_struct.items
|
|
93805
|
+
* bpy_struct.keyframe_delete
|
|
93806
|
+
* bpy_struct.keyframe_insert
|
|
93807
|
+
* bpy_struct.keys
|
|
93808
|
+
* bpy_struct.path_from_id
|
|
93809
|
+
* bpy_struct.path_resolve
|
|
93810
|
+
* bpy_struct.pop
|
|
93811
|
+
* bpy_struct.property_overridable_library_set
|
|
93812
|
+
* bpy_struct.property_unset
|
|
93813
|
+
* bpy_struct.rna_ancestors
|
|
93814
|
+
* bpy_struct.type_recast
|
|
93815
|
+
* bpy_struct.values
|
|
93816
|
+
* Node.socket_value_update
|
|
93817
|
+
* Node.is_registered_node_type
|
|
93818
|
+
* Node.poll
|
|
93819
|
+
* Node.poll_instance
|
|
93820
|
+
* Node.update
|
|
93821
|
+
* Node.insert_link
|
|
93822
|
+
* Node.init
|
|
93823
|
+
* Node.copy
|
|
93824
|
+
* Node.free
|
|
93825
|
+
* Node.draw_buttons
|
|
93826
|
+
* Node.draw_buttons_ext
|
|
93827
|
+
* Node.draw_label
|
|
93828
|
+
* Node.debug_zone_body_lazy_function_graph
|
|
93829
|
+
* Node.debug_zone_lazy_function_graph
|
|
93830
|
+
* Node.poll
|
|
93831
|
+
* Node.bl_rna_get_subclass
|
|
93832
|
+
* Node.bl_rna_get_subclass_py
|
|
93833
|
+
* NodeInternal.poll
|
|
93834
|
+
* NodeInternal.poll_instance
|
|
93835
|
+
* NodeInternal.update
|
|
93836
|
+
* NodeInternal.draw_buttons
|
|
93837
|
+
* NodeInternal.draw_buttons_ext
|
|
93838
|
+
* NodeInternal.bl_rna_get_subclass
|
|
93839
|
+
* NodeInternal.bl_rna_get_subclass_py
|
|
93840
|
+
* GeometryNode.poll
|
|
93841
|
+
* GeometryNode.bl_rna_get_subclass
|
|
93842
|
+
* GeometryNode.bl_rna_get_subclass_py
|
|
93843
|
+
|
|
93844
|
+
:columns: 2
|
|
93845
|
+
|
|
93846
|
+
|
|
93847
|
+
--------------------
|
|
93848
|
+
|
|
93849
|
+
* bpy_struct.id_data
|
|
93850
|
+
* Node.type
|
|
93851
|
+
* Node.location
|
|
93852
|
+
* Node.location_absolute
|
|
93853
|
+
* Node.width
|
|
93854
|
+
* Node.height
|
|
93855
|
+
* Node.dimensions
|
|
93856
|
+
* Node.name
|
|
93857
|
+
* Node.label
|
|
93858
|
+
* Node.inputs
|
|
93859
|
+
* Node.outputs
|
|
93860
|
+
* Node.internal_links
|
|
93861
|
+
* Node.parent
|
|
93862
|
+
* Node.warning_propagation
|
|
93863
|
+
* Node.use_custom_color
|
|
93864
|
+
* Node.color
|
|
93865
|
+
* Node.color_tag
|
|
93866
|
+
* Node.select
|
|
93867
|
+
* Node.show_options
|
|
93868
|
+
* Node.show_preview
|
|
93869
|
+
* Node.hide
|
|
93870
|
+
* Node.mute
|
|
93871
|
+
* Node.show_texture
|
|
93872
|
+
* Node.bl_idname
|
|
93873
|
+
* Node.bl_label
|
|
93874
|
+
* Node.bl_description
|
|
93875
|
+
* Node.bl_icon
|
|
93876
|
+
* Node.bl_static_type
|
|
93877
|
+
* Node.bl_width_default
|
|
93878
|
+
* Node.bl_width_min
|
|
93879
|
+
* Node.bl_width_max
|
|
93880
|
+
* Node.bl_height_default
|
|
93881
|
+
* Node.bl_height_min
|
|
93882
|
+
* Node.bl_height_max
|
|
93883
|
+
|
|
93884
|
+
:columns: 2
|
|
93885
|
+
|
|
93886
|
+
|
|
93823
93887
|
--------------------
|
|
93824
93888
|
|
|
93825
93889
|
* bpy_struct.as_pointer
|
|
@@ -104092,6 +104156,8 @@ from a search field, this can be done using bpy.types.Operator.invoke_search_pop
|
|
|
104092
104156
|
* GeometryNodeImageInfo.output_template
|
|
104093
104157
|
* GeometryNodeImageTexture.input_template
|
|
104094
104158
|
* GeometryNodeImageTexture.output_template
|
|
104159
|
+
* GeometryNodeImportCSV.input_template
|
|
104160
|
+
* GeometryNodeImportCSV.output_template
|
|
104095
104161
|
* GeometryNodeImportOBJ.input_template
|
|
104096
104162
|
* GeometryNodeImportOBJ.output_template
|
|
104097
104163
|
* GeometryNodeImportPLY.input_template
|
|
@@ -105286,8 +105352,6 @@ from a search field, this can be done using bpy.types.Operator.invoke_search_pop
|
|
|
105286
105352
|
* MetaStrip.strips
|
|
105287
105353
|
* MultiplyStrip.input_1
|
|
105288
105354
|
* MultiplyStrip.input_2
|
|
105289
|
-
* OverDropStrip.input_1
|
|
105290
|
-
* OverDropStrip.input_2
|
|
105291
105355
|
* SequenceEditor.active_strip
|
|
105292
105356
|
* SequenceEditor.display_stack
|
|
105293
105357
|
* SequenceEditor.meta_stack
|
|
@@ -118995,7 +119059,6 @@ class StripsMeta(bpy_prop_collection[Strip], bpy_struct):
|
|
|
118995
119059
|
"ALPHA_UNDER",
|
|
118996
119060
|
"GAMMA_CROSS",
|
|
118997
119061
|
"MULTIPLY",
|
|
118998
|
-
"OVER_DROP",
|
|
118999
119062
|
"WIPE",
|
|
119000
119063
|
"GLOW",
|
|
119001
119064
|
"TRANSFORM",
|
|
@@ -119020,7 +119083,7 @@ class StripsMeta(bpy_prop_collection[Strip], bpy_struct):
|
|
|
119020
119083
|
:param name: Name for the new strip
|
|
119021
119084
|
:type name: str
|
|
119022
119085
|
:param type: Type, type for the new strip
|
|
119023
|
-
:type type: typing.Literal['CROSS','ADD','SUBTRACT','ALPHA_OVER','ALPHA_UNDER','GAMMA_CROSS','MULTIPLY','
|
|
119086
|
+
: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
|
|
119024
119087
|
:param channel: Channel, The channel for the new strip
|
|
119025
119088
|
:type channel: int | None
|
|
119026
119089
|
:param frame_start: The start frame for the new strip
|
|
@@ -119237,7 +119300,6 @@ class StripsTopLevel(bpy_prop_collection[Strip], bpy_struct):
|
|
|
119237
119300
|
"ALPHA_UNDER",
|
|
119238
119301
|
"GAMMA_CROSS",
|
|
119239
119302
|
"MULTIPLY",
|
|
119240
|
-
"OVER_DROP",
|
|
119241
119303
|
"WIPE",
|
|
119242
119304
|
"GLOW",
|
|
119243
119305
|
"TRANSFORM",
|
|
@@ -119262,7 +119324,7 @@ class StripsTopLevel(bpy_prop_collection[Strip], bpy_struct):
|
|
|
119262
119324
|
:param name: Name for the new strip
|
|
119263
119325
|
:type name: str
|
|
119264
119326
|
:param type: Type, type for the new strip
|
|
119265
|
-
:type type: typing.Literal['CROSS','ADD','SUBTRACT','ALPHA_OVER','ALPHA_UNDER','GAMMA_CROSS','MULTIPLY','
|
|
119327
|
+
: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
|
|
119266
119328
|
:param channel: Channel, The channel for the new strip
|
|
119267
119329
|
:type channel: int | None
|
|
119268
119330
|
:param frame_start: The start frame for the new strip
|
|
@@ -157837,6 +157899,59 @@ class GeometryNodeImageTexture(GeometryNode, NodeInternal, Node, bpy_struct):
|
|
|
157837
157899
|
:rtype: typing.Any
|
|
157838
157900
|
"""
|
|
157839
157901
|
|
|
157902
|
+
class GeometryNodeImportCSV(GeometryNode, NodeInternal, Node, bpy_struct):
|
|
157903
|
+
"""Import geometry from an CSV file"""
|
|
157904
|
+
|
|
157905
|
+
@classmethod
|
|
157906
|
+
def is_registered_node_type(cls) -> bool:
|
|
157907
|
+
"""True if a registered node type
|
|
157908
|
+
|
|
157909
|
+
:return: Result
|
|
157910
|
+
:rtype: bool
|
|
157911
|
+
"""
|
|
157912
|
+
|
|
157913
|
+
@classmethod
|
|
157914
|
+
def input_template(cls, index: int | None) -> NodeInternalSocketTemplate:
|
|
157915
|
+
"""Input socket template
|
|
157916
|
+
|
|
157917
|
+
:param index: Index
|
|
157918
|
+
:type index: int | None
|
|
157919
|
+
:return: result
|
|
157920
|
+
:rtype: NodeInternalSocketTemplate
|
|
157921
|
+
"""
|
|
157922
|
+
|
|
157923
|
+
@classmethod
|
|
157924
|
+
def output_template(cls, index: int | None) -> NodeInternalSocketTemplate:
|
|
157925
|
+
"""Output socket template
|
|
157926
|
+
|
|
157927
|
+
:param index: Index
|
|
157928
|
+
:type index: int | None
|
|
157929
|
+
:return: result
|
|
157930
|
+
:rtype: NodeInternalSocketTemplate
|
|
157931
|
+
"""
|
|
157932
|
+
|
|
157933
|
+
@classmethod
|
|
157934
|
+
def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
|
|
157935
|
+
"""
|
|
157936
|
+
|
|
157937
|
+
:param id: The RNA type identifier.
|
|
157938
|
+
:type id: str | None
|
|
157939
|
+
:param default:
|
|
157940
|
+
:return: The RNA type or default when not found.
|
|
157941
|
+
:rtype: Struct
|
|
157942
|
+
"""
|
|
157943
|
+
|
|
157944
|
+
@classmethod
|
|
157945
|
+
def bl_rna_get_subclass_py(cls, id: str | None, default=None) -> typing.Any:
|
|
157946
|
+
"""
|
|
157947
|
+
|
|
157948
|
+
:param id: The RNA type identifier.
|
|
157949
|
+
:type id: str | None
|
|
157950
|
+
:param default:
|
|
157951
|
+
:return: The class or default when not found.
|
|
157952
|
+
:rtype: typing.Any
|
|
157953
|
+
"""
|
|
157954
|
+
|
|
157840
157955
|
class GeometryNodeImportOBJ(GeometryNode, NodeInternal, Node, bpy_struct):
|
|
157841
157956
|
"""Import geometry from an OBJ file"""
|
|
157842
157957
|
|
|
@@ -168189,7 +168304,7 @@ class GreasePencilLatticeModifier(Modifier, bpy_struct):
|
|
|
168189
168304
|
:rtype: typing.Any
|
|
168190
168305
|
"""
|
|
168191
168306
|
|
|
168192
|
-
class GreasePencilLayer(bpy_struct):
|
|
168307
|
+
class GreasePencilLayer(GreasePencilTreeNode, bpy_struct):
|
|
168193
168308
|
"""Collection of related drawings"""
|
|
168194
168309
|
|
|
168195
168310
|
blend_mode: typing.Literal[
|
|
@@ -168212,24 +168327,12 @@ class GreasePencilLayer(bpy_struct):
|
|
|
168212
168327
|
:type: GreasePencilFrames
|
|
168213
168328
|
"""
|
|
168214
168329
|
|
|
168215
|
-
hide: bool
|
|
168216
|
-
""" Set layer visibility
|
|
168217
|
-
|
|
168218
|
-
:type: bool
|
|
168219
|
-
"""
|
|
168220
|
-
|
|
168221
168330
|
ignore_locked_materials: bool
|
|
168222
168331
|
""" Allow editing strokes even if they use locked materials
|
|
168223
168332
|
|
|
168224
168333
|
:type: bool
|
|
168225
168334
|
"""
|
|
168226
168335
|
|
|
168227
|
-
lock: bool
|
|
168228
|
-
""" Protect layer from further editing and/or frame changes
|
|
168229
|
-
|
|
168230
|
-
:type: bool
|
|
168231
|
-
"""
|
|
168232
|
-
|
|
168233
168336
|
lock_frame: bool
|
|
168234
168337
|
""" Lock current frame displayed by layer
|
|
168235
168338
|
|
|
@@ -168254,12 +168357,6 @@ class GreasePencilLayer(bpy_struct):
|
|
|
168254
168357
|
:type: mathutils.Matrix
|
|
168255
168358
|
"""
|
|
168256
168359
|
|
|
168257
|
-
name: str
|
|
168258
|
-
""" Layer name
|
|
168259
|
-
|
|
168260
|
-
:type: str
|
|
168261
|
-
"""
|
|
168262
|
-
|
|
168263
168360
|
opacity: float
|
|
168264
168361
|
""" Layer Opacity
|
|
168265
168362
|
|
|
@@ -168278,12 +168375,6 @@ class GreasePencilLayer(bpy_struct):
|
|
|
168278
168375
|
:type: str
|
|
168279
168376
|
"""
|
|
168280
168377
|
|
|
168281
|
-
parent_group: GreasePencilLayerGroup
|
|
168282
|
-
""" The parent layer group this layer is part of
|
|
168283
|
-
|
|
168284
|
-
:type: GreasePencilLayerGroup
|
|
168285
|
-
"""
|
|
168286
|
-
|
|
168287
168378
|
pass_index: int
|
|
168288
168379
|
""" Index number for the "Layer Index" pass
|
|
168289
168380
|
|
|
@@ -168308,12 +168399,6 @@ class GreasePencilLayer(bpy_struct):
|
|
|
168308
168399
|
:type: mathutils.Vector
|
|
168309
168400
|
"""
|
|
168310
168401
|
|
|
168311
|
-
select: bool
|
|
168312
|
-
""" Layer is selected for editing in the Dope Sheet
|
|
168313
|
-
|
|
168314
|
-
:type: bool
|
|
168315
|
-
"""
|
|
168316
|
-
|
|
168317
168402
|
tint_color: mathutils.Color
|
|
168318
168403
|
""" Color for tinting stroke colors
|
|
168319
168404
|
|
|
@@ -168338,18 +168423,6 @@ class GreasePencilLayer(bpy_struct):
|
|
|
168338
168423
|
:type: bool
|
|
168339
168424
|
"""
|
|
168340
168425
|
|
|
168341
|
-
use_masks: bool
|
|
168342
|
-
""" The visibility of drawings on this layer is affected by the layers in its masks list
|
|
168343
|
-
|
|
168344
|
-
:type: bool
|
|
168345
|
-
"""
|
|
168346
|
-
|
|
168347
|
-
use_onion_skinning: bool
|
|
168348
|
-
""" Display onion skins before and after the current frame
|
|
168349
|
-
|
|
168350
|
-
:type: bool
|
|
168351
|
-
"""
|
|
168352
|
-
|
|
168353
168426
|
use_viewlayer_masks: bool
|
|
168354
168427
|
""" Include the mask layers when rendering the view-layer
|
|
168355
168428
|
|
|
@@ -168400,7 +168473,7 @@ class GreasePencilLayer(bpy_struct):
|
|
|
168400
168473
|
:rtype: typing.Any
|
|
168401
168474
|
"""
|
|
168402
168475
|
|
|
168403
|
-
class GreasePencilLayerGroup(bpy_struct):
|
|
168476
|
+
class GreasePencilLayerGroup(GreasePencilTreeNode, bpy_struct):
|
|
168404
168477
|
"""Group of Grease Pencil layers"""
|
|
168405
168478
|
|
|
168406
168479
|
color_tag: typing.Literal[
|
|
@@ -168419,48 +168492,12 @@ class GreasePencilLayerGroup(bpy_struct):
|
|
|
168419
168492
|
:type: typing.Literal['NONE','COLOR1','COLOR2','COLOR3','COLOR4','COLOR5','COLOR6','COLOR7','COLOR8']
|
|
168420
168493
|
"""
|
|
168421
168494
|
|
|
168422
|
-
hide: bool
|
|
168423
|
-
""" Set layer group visibility
|
|
168424
|
-
|
|
168425
|
-
:type: bool
|
|
168426
|
-
"""
|
|
168427
|
-
|
|
168428
168495
|
is_expanded: bool
|
|
168429
168496
|
""" The layer groups is expanded in the UI
|
|
168430
168497
|
|
|
168431
168498
|
:type: bool
|
|
168432
168499
|
"""
|
|
168433
168500
|
|
|
168434
|
-
lock: bool
|
|
168435
|
-
""" Protect group from further editing and/or frame changes
|
|
168436
|
-
|
|
168437
|
-
:type: bool
|
|
168438
|
-
"""
|
|
168439
|
-
|
|
168440
|
-
name: str
|
|
168441
|
-
""" Group name
|
|
168442
|
-
|
|
168443
|
-
:type: str
|
|
168444
|
-
"""
|
|
168445
|
-
|
|
168446
|
-
parent_group: typing_extensions.Self
|
|
168447
|
-
""" The parent group this group is part of
|
|
168448
|
-
|
|
168449
|
-
:type: typing_extensions.Self
|
|
168450
|
-
"""
|
|
168451
|
-
|
|
168452
|
-
use_masks: bool
|
|
168453
|
-
""" The visibility of drawings in the layers in this group is affected by the layers in the masks lists
|
|
168454
|
-
|
|
168455
|
-
:type: bool
|
|
168456
|
-
"""
|
|
168457
|
-
|
|
168458
|
-
use_onion_skinning: bool
|
|
168459
|
-
""" Display onion skins before and after the current frame
|
|
168460
|
-
|
|
168461
|
-
:type: bool
|
|
168462
|
-
"""
|
|
168463
|
-
|
|
168464
168501
|
@classmethod
|
|
168465
168502
|
def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
|
|
168466
168503
|
"""
|
|
@@ -171237,6 +171274,79 @@ class GreasePencilTintModifier(Modifier, bpy_struct):
|
|
|
171237
171274
|
:rtype: typing.Any
|
|
171238
171275
|
"""
|
|
171239
171276
|
|
|
171277
|
+
class GreasePencilTreeNode(bpy_struct):
|
|
171278
|
+
"""Grease Pencil node in the layer tree. Either a layer or a group"""
|
|
171279
|
+
|
|
171280
|
+
channel_color: mathutils.Color
|
|
171281
|
+
""" Color of the channel in the dope sheet
|
|
171282
|
+
|
|
171283
|
+
:type: mathutils.Color
|
|
171284
|
+
"""
|
|
171285
|
+
|
|
171286
|
+
hide: bool
|
|
171287
|
+
""" Set tree node visibility
|
|
171288
|
+
|
|
171289
|
+
:type: bool
|
|
171290
|
+
"""
|
|
171291
|
+
|
|
171292
|
+
lock: bool
|
|
171293
|
+
""" Protect tree node from editing
|
|
171294
|
+
|
|
171295
|
+
:type: bool
|
|
171296
|
+
"""
|
|
171297
|
+
|
|
171298
|
+
name: str
|
|
171299
|
+
""" The name of the tree node
|
|
171300
|
+
|
|
171301
|
+
:type: str
|
|
171302
|
+
"""
|
|
171303
|
+
|
|
171304
|
+
parent_group: GreasePencilLayerGroup
|
|
171305
|
+
""" The parent group of this layer tree node
|
|
171306
|
+
|
|
171307
|
+
:type: GreasePencilLayerGroup
|
|
171308
|
+
"""
|
|
171309
|
+
|
|
171310
|
+
select: bool
|
|
171311
|
+
""" Tree node is selected
|
|
171312
|
+
|
|
171313
|
+
:type: bool
|
|
171314
|
+
"""
|
|
171315
|
+
|
|
171316
|
+
use_masks: bool
|
|
171317
|
+
""" The visibility of drawings in this tree node is affected by the layers in the masks list
|
|
171318
|
+
|
|
171319
|
+
:type: bool
|
|
171320
|
+
"""
|
|
171321
|
+
|
|
171322
|
+
use_onion_skinning: bool
|
|
171323
|
+
""" Display onion skins before and after the current frame
|
|
171324
|
+
|
|
171325
|
+
:type: bool
|
|
171326
|
+
"""
|
|
171327
|
+
|
|
171328
|
+
@classmethod
|
|
171329
|
+
def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
|
|
171330
|
+
"""
|
|
171331
|
+
|
|
171332
|
+
:param id: The RNA type identifier.
|
|
171333
|
+
:type id: str | None
|
|
171334
|
+
:param default:
|
|
171335
|
+
:return: The RNA type or default when not found.
|
|
171336
|
+
:rtype: Struct
|
|
171337
|
+
"""
|
|
171338
|
+
|
|
171339
|
+
@classmethod
|
|
171340
|
+
def bl_rna_get_subclass_py(cls, id: str | None, default=None) -> typing.Any:
|
|
171341
|
+
"""
|
|
171342
|
+
|
|
171343
|
+
:param id: The RNA type identifier.
|
|
171344
|
+
:type id: str | None
|
|
171345
|
+
:param default:
|
|
171346
|
+
:return: The class or default when not found.
|
|
171347
|
+
:rtype: typing.Any
|
|
171348
|
+
"""
|
|
171349
|
+
|
|
171240
171350
|
class GreasePencilWeightAngleModifier(Modifier, bpy_struct):
|
|
171241
171351
|
"""Calculate Vertex Weight dynamically"""
|
|
171242
171352
|
|
|
@@ -173088,13 +173198,21 @@ class Image(ID, bpy_struct):
|
|
|
173088
173198
|
:type quality: int | None
|
|
173089
173199
|
"""
|
|
173090
173200
|
|
|
173091
|
-
def save(
|
|
173201
|
+
def save(
|
|
173202
|
+
self,
|
|
173203
|
+
*,
|
|
173204
|
+
filepath: str = "",
|
|
173205
|
+
quality: int | None = 0,
|
|
173206
|
+
save_copy: bool | None = False,
|
|
173207
|
+
):
|
|
173092
173208
|
"""Save image
|
|
173093
173209
|
|
|
173094
173210
|
:param filepath: Output path, uses image data-block filepath if not specified
|
|
173095
173211
|
:type filepath: str
|
|
173096
173212
|
:param quality: Quality, Quality for image formats that support lossy compression, uses default quality if not specified
|
|
173097
173213
|
:type quality: int | None
|
|
173214
|
+
:param save_copy: Save Copy, Save the image as a copy, without updating current image's filepath
|
|
173215
|
+
:type save_copy: bool | None
|
|
173098
173216
|
"""
|
|
173099
173217
|
|
|
173100
173218
|
def pack(self, *, data: str = "", data_len: int | None = 0):
|
|
@@ -196441,49 +196559,6 @@ class OrController(Controller, bpy_struct):
|
|
|
196441
196559
|
:rtype: typing.Any
|
|
196442
196560
|
"""
|
|
196443
196561
|
|
|
196444
|
-
class OverDropStrip(EffectStrip, Strip, bpy_struct):
|
|
196445
|
-
"""Over Drop Strip"""
|
|
196446
|
-
|
|
196447
|
-
input_1: Strip
|
|
196448
|
-
""" First input for the effect strip
|
|
196449
|
-
|
|
196450
|
-
:type: Strip
|
|
196451
|
-
"""
|
|
196452
|
-
|
|
196453
|
-
input_2: Strip
|
|
196454
|
-
""" Second input for the effect strip
|
|
196455
|
-
|
|
196456
|
-
:type: Strip
|
|
196457
|
-
"""
|
|
196458
|
-
|
|
196459
|
-
input_count: int
|
|
196460
|
-
"""
|
|
196461
|
-
|
|
196462
|
-
:type: int
|
|
196463
|
-
"""
|
|
196464
|
-
|
|
196465
|
-
@classmethod
|
|
196466
|
-
def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
|
|
196467
|
-
"""
|
|
196468
|
-
|
|
196469
|
-
:param id: The RNA type identifier.
|
|
196470
|
-
:type id: str | None
|
|
196471
|
-
:param default:
|
|
196472
|
-
:return: The RNA type or default when not found.
|
|
196473
|
-
:rtype: Struct
|
|
196474
|
-
"""
|
|
196475
|
-
|
|
196476
|
-
@classmethod
|
|
196477
|
-
def bl_rna_get_subclass_py(cls, id: str | None, default=None) -> typing.Any:
|
|
196478
|
-
"""
|
|
196479
|
-
|
|
196480
|
-
:param id: The RNA type identifier.
|
|
196481
|
-
:type id: str | None
|
|
196482
|
-
:param default:
|
|
196483
|
-
:return: The class or default when not found.
|
|
196484
|
-
:rtype: typing.Any
|
|
196485
|
-
"""
|
|
196486
|
-
|
|
196487
196562
|
class PARTICLE_UL_particle_systems(UIList, bpy_struct):
|
|
196488
196563
|
def draw_item(
|
|
196489
196564
|
self,
|
|
@@ -208566,7 +208641,7 @@ class Scene(ID, bpy_struct):
|
|
|
208566
208641
|
*,
|
|
208567
208642
|
distance: float | None = 1.70141e38,
|
|
208568
208643
|
) -> tuple[bool, mathutils.Vector, mathutils.Vector, int, Object, mathutils.Matrix]:
|
|
208569
|
-
"""Cast a ray onto in
|
|
208644
|
+
"""Cast a ray onto evaluated geometry in world-space
|
|
208570
208645
|
|
|
208571
208646
|
:param depsgraph: The current dependency graph
|
|
208572
208647
|
:type depsgraph: Depsgraph
|
|
@@ -225082,11 +225157,10 @@ class Strip(bpy_struct):
|
|
|
225082
225157
|
"ALPHA_OVER",
|
|
225083
225158
|
"ALPHA_UNDER",
|
|
225084
225159
|
"GAMMA_CROSS",
|
|
225085
|
-
"OVER_DROP",
|
|
225086
225160
|
]
|
|
225087
225161
|
""" Method for controlling how the strip combines with other strips
|
|
225088
225162
|
|
|
225089
|
-
: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'
|
|
225163
|
+
: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']
|
|
225090
225164
|
"""
|
|
225091
225165
|
|
|
225092
225166
|
channel: int
|
|
@@ -225218,7 +225292,6 @@ class Strip(bpy_struct):
|
|
|
225218
225292
|
"ALPHA_UNDER",
|
|
225219
225293
|
"GAMMA_CROSS",
|
|
225220
225294
|
"MULTIPLY",
|
|
225221
|
-
"OVER_DROP",
|
|
225222
225295
|
"WIPE",
|
|
225223
225296
|
"GLOW",
|
|
225224
225297
|
"TRANSFORM",
|
|
@@ -225232,7 +225305,7 @@ class Strip(bpy_struct):
|
|
|
225232
225305
|
]
|
|
225233
225306
|
"""
|
|
225234
225307
|
|
|
225235
|
-
:type: typing.Literal['IMAGE','META','SCENE','MOVIE','MOVIECLIP','MASK','SOUND','CROSS','ADD','SUBTRACT','ALPHA_OVER','ALPHA_UNDER','GAMMA_CROSS','MULTIPLY','
|
|
225308
|
+
: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']
|
|
225236
225309
|
"""
|
|
225237
225310
|
|
|
225238
225311
|
use_cache_composite: bool
|
|
@@ -5,7 +5,7 @@ _bpy_internal/addons/cli/__init__.pyi,sha256=78S0XD4GcfiZ98YrBrms-BCZGj-22RnW-0K
|
|
|
5
5
|
_bpy_internal/extensions/__init__.pyi,sha256=ZGyTE9mr3RLfqj0GTwlGwzvQbp5szHhRlmSz0575T9k,211
|
|
6
6
|
_bpy_internal/extensions/junction_module/__init__.pyi,sha256=ktaqFveW9pjEnfWTl7eDEpqPZ8sk5L7mpDfSZ3wUkyM,944
|
|
7
7
|
_bpy_internal/extensions/stale_file_manager/__init__.pyi,sha256=kxjVoScm3xS7rP0ZGLHHCnk9rQqTxn963J-P6BKtiZE,694
|
|
8
|
-
_bpy_internal/extensions/wheel_manager/__init__.pyi,sha256=
|
|
8
|
+
_bpy_internal/extensions/wheel_manager/__init__.pyi,sha256=4PiSkeTFVHMuOpbvIuk903o8_TwEeEM1k973cZAFZqo,923
|
|
9
9
|
_bpy_internal/freedesktop/__init__.pyi,sha256=UTm4TARyHqwJBil5RwmuxmQz6tvDf6P3PBkIQgXIDd8,771
|
|
10
10
|
_bpy_internal/grease_pencil/__init__.pyi,sha256=59jc9JrMDQUQWZM07gI9dbBQgxuRLxOfMJxd88PsCtY,93
|
|
11
11
|
_bpy_internal/grease_pencil/stroke/__init__.pyi,sha256=wbOuOgMWgSIFlZyat22KvKmLmye99OG5rEbb6CqC-mo,1793
|
|
@@ -13,7 +13,7 @@ _bpy_internal/system_info/__init__.pyi,sha256=cR0YfdA5e1gzPoJPkqRHZUm8ArCVuyulST
|
|
|
13
13
|
_bpy_internal/system_info/text_generate_runtime/__init__.pyi,sha256=KkCIdvrNtqXRvKaojEVaARNyX3CFnj8UCo7B_nKLC0A,86
|
|
14
14
|
_bpy_internal/system_info/url_prefill_runtime/__init__.pyi,sha256=L1cEExq7nGmeqjqhRH6p5yUL4CN6iEQY0wAYLSw2nKw,109
|
|
15
15
|
_bpy_internal/system_info/url_prefill_startup/__init__.pyi,sha256=cL1oQCJ1CvBoUdGEPgZVpxOOJPA7bZUJpzRl8zglcYk,107
|
|
16
|
-
addon_utils/__init__.pyi,sha256=
|
|
16
|
+
addon_utils/__init__.pyi,sha256=do1hilF1ZM0zFLutvkbeENW3Ax0ZXIKjEaPdPljMyWs,3412
|
|
17
17
|
addon_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
18
18
|
animsys_refactor/__init__.pyi,sha256=FVtTS8ep5YY_wxoK9FesObKvYKIffFgmOyS74iuza0s,643
|
|
19
19
|
animsys_refactor/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -225,7 +225,7 @@ bpy/app/icons/__init__.pyi,sha256=w18Xn9y0T54WlpHyhC3_y8a3Lq9kuo3U72Bu7wOY41A,92
|
|
|
225
225
|
bpy/app/timers/__init__.pyi,sha256=vtrATRAmkTfP1CknievwpOCC19cPOMowyLTE6Ie9GSg,2126
|
|
226
226
|
bpy/app/translations/__init__.pyi,sha256=rrUs88RJakTJ8IZzE7oRunD_HqLByX5tqmLSrQ_e8dQ,7007
|
|
227
227
|
bpy/msgbus/__init__.pyi,sha256=e9cmp_Wq7FA5pDTQQJ2s0_I84bEJMu8J-5Lu5gNoClM,2954
|
|
228
|
-
bpy/ops/__init__.pyi,sha256=
|
|
228
|
+
bpy/ops/__init__.pyi,sha256=_4i2lHJ_bmf5dn4SYHZylTetAzZtm5FPhq3hL9DXMh4,5588
|
|
229
229
|
bpy/ops/action/__init__.pyi,sha256=LBNWtp-Nd2C-ae5OK4WTxg-ztiufJ4OLan-f6W7EJXo,18645
|
|
230
230
|
bpy/ops/anim/__init__.pyi,sha256=VM6kJF9mPnpDINvcVqrf-fEHlSRzn-P1vmCPvK8KDwA,24980
|
|
231
231
|
bpy/ops/armature/__init__.pyi,sha256=k6XyBQsnS9j-7cKqfmN4qYVyhv9gQVwX45g-3DJ8jro,20909
|
|
@@ -255,7 +255,7 @@ bpy/ops/geometry/__init__.pyi,sha256=5E3W4rVQTQmgHc8p8Adr9EHk-VsTrhwYbCvchw4Ax7c
|
|
|
255
255
|
bpy/ops/gizmogroup/__init__.pyi,sha256=lsDnIxuI4uIqJJEiLNmKUuMq2uqlc6HQAqDHY3T9tf8,1262
|
|
256
256
|
bpy/ops/gpencil/__init__.pyi,sha256=cqeFGa_2tSDBDSWhsWVQVZx5BhHs08wiW4And1rhfVE,4832
|
|
257
257
|
bpy/ops/graph/__init__.pyi,sha256=LxlhLzlxAjlrVyfx09PY74t15-khJK0tiasNQyYUqw4,41703
|
|
258
|
-
bpy/ops/grease_pencil/__init__.pyi,sha256=
|
|
258
|
+
bpy/ops/grease_pencil/__init__.pyi,sha256=7UMA3MkUlsSmr2HXPYWb8VeHYufNqcvJ2GVp7D-2nO8,62088
|
|
259
259
|
bpy/ops/image/__init__.pyi,sha256=GiNPnZRmVUdtFmuckOxdV55Po_2ul_qda5wU2fFrm6U,52466
|
|
260
260
|
bpy/ops/import_anim/__init__.pyi,sha256=aE1pDcT6TlridpXwg7tF-E3tXLcm83n7j1vVgn_-g7A,3046
|
|
261
261
|
bpy/ops/import_curve/__init__.pyi,sha256=sDhKpg3cI-y0NYuUo8ey3jb3h-KKergdPUDKlQ-C2iI,485
|
|
@@ -287,7 +287,7 @@ bpy/ops/screen/__init__.pyi,sha256=6WbfNAHRE24NwTHuUyk6pfZAROdMzIn5V_hjYq3rVLQ,1
|
|
|
287
287
|
bpy/ops/script/__init__.pyi,sha256=LPFPi3ovQdpV5IVlMnJpo9K3i88q1t6cFnoXnfiJ5HA,978
|
|
288
288
|
bpy/ops/sculpt/__init__.pyi,sha256=VzEVUPbe_HnfrYblaeM7zvA45ocxqGiIQgyIigz9ja4,47060
|
|
289
289
|
bpy/ops/sculpt_curves/__init__.pyi,sha256=jDglkug-tn6Esxo-_DrILnCkifpWfQ82x9JE_q0PW-c,2849
|
|
290
|
-
bpy/ops/sequencer/__init__.pyi,sha256=
|
|
290
|
+
bpy/ops/sequencer/__init__.pyi,sha256=UuFJ-EkUCro9cr6zlOAyxeauPpcRSRYx6746-yKETDk,78125
|
|
291
291
|
bpy/ops/sound/__init__.pyi,sha256=kz9Sk9QCN0lUszJ6sShcwBSj7azOAne3SMADKG3i15c,16929
|
|
292
292
|
bpy/ops/spreadsheet/__init__.pyi,sha256=q_4fYPoBC6g61Pw7Mz71PQB93vYHxk661B18CvIkguA,1360
|
|
293
293
|
bpy/ops/surface/__init__.pyi,sha256=OD-_jQEOIHzb89OaZ4JLMZlnP7-s4jbY4a2DpI9bA_I,10315
|
|
@@ -305,7 +305,7 @@ bpy/ops/workspace/__init__.pyi,sha256=BHvDV5CcVBnuKaL8akhm-Es7VcGUjf3jGFTbfx5YHC
|
|
|
305
305
|
bpy/ops/world/__init__.pyi,sha256=pBV8EDA8HoWovDSul6mxkF7Mt6N3PQWuukRhkw3dBr8,601
|
|
306
306
|
bpy/path/__init__.pyi,sha256=emlV7ocbsOuOSMzxJXr6ldKRk2-_K0DWlKc3Ylt5dsU,5484
|
|
307
307
|
bpy/props/__init__.pyi,sha256=Ky1J5ndL8p_pvAaQakudyKKVynbr1NxXvzoN-5E9_I0,35237
|
|
308
|
-
bpy/types/__init__.pyi,sha256=
|
|
308
|
+
bpy/types/__init__.pyi,sha256=eCfZLQ8oEjpwHXhychk1pBl2i6E7uFTtaTgwTJf0jn0,5702882
|
|
309
309
|
bpy/utils/__init__.pyi,sha256=y7dfOaWh9PE_q0Qs8gEKOm71RQuMZI0wQ1B07DCDHF4,14909
|
|
310
310
|
bpy/utils/previews/__init__.pyi,sha256=AsbDN4vRLbSTZ7_S_4LqmI1sJmV_8NnqDt1QfBdH94Y,2280
|
|
311
311
|
bpy/utils/units/__init__.pyi,sha256=QuXx22JjmObRmP_KcdoqOlDSvVtXZHeK5nTIvwjcUnI,2645
|
|
@@ -387,7 +387,7 @@ rna_prop_ui/__init__.pyi,sha256=lShhkbbeJ_ANi2dy4J4HIkyp1HZrMqCfhcf8QpAQsj0,1281
|
|
|
387
387
|
rna_prop_ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
388
388
|
rna_xml/__init__.pyi,sha256=idYsAZj-_egBKMA2pQl2P9IoNhZxXIkBSALFuq-ylO8,577
|
|
389
389
|
rna_xml/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
390
|
-
fake_bge_module-
|
|
391
|
-
fake_bge_module-
|
|
392
|
-
fake_bge_module-
|
|
393
|
-
fake_bge_module-
|
|
390
|
+
fake_bge_module-20250211.dist-info/METADATA,sha256=YPKhLTaGMIBG5lWaNTugO3hQGpGFy9TMyBA5SbEQw2Y,4872
|
|
391
|
+
fake_bge_module-20250211.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
|
392
|
+
fake_bge_module-20250211.dist-info/top_level.txt,sha256=eE5ylpw84TnTp2h-RCfTJgCBykd4PsHdymQwBM_dVls,544
|
|
393
|
+
fake_bge_module-20250211.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|