fake-bpy-module 20250326__py3-none-any.whl → 20250328__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/node_add_menu_compositor/__init__.pyi +26 -0
- bpy/app/translations/__init__.pyi +2 -2
- bpy/ops/__init__.pyi +13 -3
- bpy/ops/sequencer/__init__.pyi +1 -1
- bpy/props/__init__.pyi +2 -2
- bpy/types/__init__.pyi +31 -19
- bpy/utils/__init__.pyi +8 -2
- {fake_bpy_module-20250326.dist-info → fake_bpy_module-20250328.dist-info}/METADATA +1 -1
- {fake_bpy_module-20250326.dist-info → fake_bpy_module-20250328.dist-info}/RECORD +12 -12
- freestyle/utils/__init__.pyi +1 -1
- {fake_bpy_module-20250326.dist-info → fake_bpy_module-20250328.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20250326.dist-info → fake_bpy_module-20250328.dist-info}/top_level.txt +0 -0
|
@@ -316,6 +316,32 @@ class NODE_MT_category_compositor_output(bpy.types.Menu):
|
|
|
316
316
|
:param context:
|
|
317
317
|
"""
|
|
318
318
|
|
|
319
|
+
class NODE_MT_category_compositor_texture(bpy.types.Menu):
|
|
320
|
+
bl_idname: typing.Any
|
|
321
|
+
bl_label: typing.Any
|
|
322
|
+
bl_rna: typing.Any
|
|
323
|
+
id_data: typing.Any
|
|
324
|
+
|
|
325
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
326
|
+
"""
|
|
327
|
+
|
|
328
|
+
:return: The RNA type or default when not found.
|
|
329
|
+
:rtype: bpy.types.Struct
|
|
330
|
+
"""
|
|
331
|
+
|
|
332
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
333
|
+
"""
|
|
334
|
+
|
|
335
|
+
:return: The class or default when not found.
|
|
336
|
+
:rtype: typing.Any
|
|
337
|
+
"""
|
|
338
|
+
|
|
339
|
+
def draw(self, _context):
|
|
340
|
+
"""
|
|
341
|
+
|
|
342
|
+
:param _context:
|
|
343
|
+
"""
|
|
344
|
+
|
|
319
345
|
class NODE_MT_category_compositor_tracking(bpy.types.Menu):
|
|
320
346
|
bl_idname: typing.Any
|
|
321
347
|
bl_label: typing.Any
|
|
@@ -11,7 +11,7 @@ If you are a regular add-on, you should only bother about contexts member,
|
|
|
11
11
|
and the register/unregister functions! The pgettext family of functions
|
|
12
12
|
should only be used in rare, specific cases (like e.g. complex "composited" UI strings...).
|
|
13
13
|
|
|
14
|
-
To add translations to your
|
|
14
|
+
To add translations to your Python script, you must define a dictionary formatted like that:
|
|
15
15
|
{locale: {msg_key: msg_translation, ...}, ...}
|
|
16
16
|
|
|
17
17
|
where:
|
|
@@ -43,7 +43,7 @@ bpy.app.translations.unregister(__name__)
|
|
|
43
43
|
The Manage UI translations
|
|
44
44
|
|
|
45
45
|
add-on has several functions to help you collect strings to translate, and
|
|
46
|
-
generate the needed
|
|
46
|
+
generate the needed Python code (the translation dictionary), as well as optional intermediary po files
|
|
47
47
|
if you want some... See
|
|
48
48
|
How to Translate Blender and
|
|
49
49
|
Using i18n in Blender Code
|
bpy/ops/__init__.pyi
CHANGED
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
--------------------
|
|
4
4
|
|
|
5
|
-
Provides
|
|
6
|
-
C
|
|
5
|
+
Provides Python access to calling operators, this includes operators written in
|
|
6
|
+
C++, Python or macros.
|
|
7
7
|
|
|
8
8
|
Only keyword arguments can be used to pass operator properties.
|
|
9
9
|
|
|
@@ -20,6 +20,16 @@ Common return values are {'FINISHED'}
|
|
|
20
20
|
meaning that the operator execution was aborted without making any changes or
|
|
21
21
|
saving an undo history entry.
|
|
22
22
|
|
|
23
|
+
If operator was cancelled but there wasn't any reports from it with {'ERROR'}
|
|
24
|
+
|
|
25
|
+
type,
|
|
26
|
+
it will just return {'CANCELLED'}
|
|
27
|
+
|
|
28
|
+
without raising any exceptions.
|
|
29
|
+
If it had error reports, then it will raise a RuntimeError
|
|
30
|
+
|
|
31
|
+
including all report messages.
|
|
32
|
+
|
|
23
33
|
Calling an operator in the wrong context will raise a RuntimeError
|
|
24
34
|
|
|
25
35
|
,
|
|
@@ -30,7 +40,7 @@ Note that the operator ID (bl_idname) in this example is mesh.subdivide
|
|
|
30
40
|
,
|
|
31
41
|
bpy.ops
|
|
32
42
|
|
|
33
|
-
is just the access path for
|
|
43
|
+
is just the access path for Python.
|
|
34
44
|
|
|
35
45
|
|
|
36
46
|
--------------------
|
bpy/ops/sequencer/__init__.pyi
CHANGED
|
@@ -1256,7 +1256,7 @@ def retiming_key_add(
|
|
|
1256
1256
|
def retiming_key_delete(
|
|
1257
1257
|
execution_context: int | str | None = None, undo: bool | None = None
|
|
1258
1258
|
):
|
|
1259
|
-
"""Delete selected
|
|
1259
|
+
"""Delete selected retiming keys from the sequencer
|
|
1260
1260
|
|
|
1261
1261
|
:type execution_context: int | str | None
|
|
1262
1262
|
:type undo: bool | None
|
bpy/props/__init__.pyi
CHANGED
|
@@ -10,7 +10,7 @@ All parameters to these functions must be passed as keywords.
|
|
|
10
10
|
Custom properties can be added to any subclass of an ID,
|
|
11
11
|
Bone and PoseBone.
|
|
12
12
|
|
|
13
|
-
These properties can be animated, accessed by the user interface and
|
|
13
|
+
These properties can be animated, accessed by the user interface and Python
|
|
14
14
|
like Blender's existing properties.
|
|
15
15
|
|
|
16
16
|
[WARNING]
|
|
@@ -24,7 +24,7 @@ When accessing external non-Blender data, thread safety mechanisms should be con
|
|
|
24
24
|
|
|
25
25
|
--------------------
|
|
26
26
|
|
|
27
|
-
A common use of custom properties is for
|
|
27
|
+
A common use of custom properties is for Python based Operator
|
|
28
28
|
classes. Test this code by running it in the text editor, or by clicking the
|
|
29
29
|
button in the 3D View-port's Tools panel. The latter will show the properties
|
|
30
30
|
in the Redo panel and allow you to change them.
|
bpy/types/__init__.pyi
CHANGED
|
@@ -3221,7 +3221,7 @@
|
|
|
3221
3221
|
--------------------
|
|
3222
3222
|
|
|
3223
3223
|
The mesh data is accessed in object mode and intended for compact storage,
|
|
3224
|
-
for more flexible mesh editing from
|
|
3224
|
+
for more flexible mesh editing from Python see bmesh.
|
|
3225
3225
|
|
|
3226
3226
|
Blender stores 4 main arrays to define mesh geometry.
|
|
3227
3227
|
|
|
@@ -3230,7 +3230,8 @@ Blender stores 4 main arrays to define mesh geometry.
|
|
|
3230
3230
|
* Mesh.loops (reference a single vertex and edge)
|
|
3231
3231
|
* Mesh.polygons: (reference a range of loops)
|
|
3232
3232
|
|
|
3233
|
-
Each polygon references a slice in the loop array, this way,
|
|
3233
|
+
Each polygon references a slice in the loop array, this way,
|
|
3234
|
+
polygons do not store vertices or corner data such as UVs directly,
|
|
3234
3235
|
only a reference to loops that the polygon uses.
|
|
3235
3236
|
|
|
3236
3237
|
Mesh.loops, Mesh.uv_layers Mesh.vertex_colors are all aligned so the same polygon loop
|
|
@@ -10884,13 +10885,15 @@ Notice the 'CATEGORY_MT_name' in Menu.bl_idname, this is a naming
|
|
|
10884
10885
|
convention for menus.
|
|
10885
10886
|
|
|
10886
10887
|
[NOTE]
|
|
10887
|
-
Menu subclasses must be registered before referencing them from
|
|
10888
|
+
Menu subclasses must be registered before referencing them from Blender.
|
|
10888
10889
|
|
|
10889
10890
|
[NOTE]
|
|
10890
|
-
Menus have their
|
|
10891
|
-
'EXEC_REGION_WIN' rather than '
|
|
10891
|
+
Menus have their UILayout.operator_context initialized as
|
|
10892
|
+
'EXEC_REGION_WIN' rather than 'INVOKE_REGION_WIN' (see Execution Context <operator-execution_context>).
|
|
10892
10893
|
If the operator context needs to initialize inputs from the
|
|
10893
10894
|
Operator.invoke function, then this needs to be explicitly set.
|
|
10895
|
+
When a menu is added to UI elements such as a panel or header,
|
|
10896
|
+
the operator execution context will be inherited from them.
|
|
10894
10897
|
|
|
10895
10898
|
```../examples/bpy.types.Menu.py```
|
|
10896
10899
|
|
|
@@ -29602,7 +29605,7 @@ This script is the UIList subclass used to show material slots, with a bunch of
|
|
|
29602
29605
|
Notice the name of the class, this naming convention is similar as the one for panels or menus.
|
|
29603
29606
|
|
|
29604
29607
|
[NOTE]
|
|
29605
|
-
UIList subclasses must be registered for
|
|
29608
|
+
UIList subclasses must be registered for Blender to use them.
|
|
29606
29609
|
|
|
29607
29610
|
```../examples/bpy.types.UIList.1.py```
|
|
29608
29611
|
|
|
@@ -39790,18 +39793,18 @@ database.
|
|
|
39790
39793
|
|
|
39791
39794
|
PropertyGroups are the base class for dynamically defined sets of properties.
|
|
39792
39795
|
|
|
39793
|
-
They can be used to extend existing
|
|
39794
|
-
be animated, accessed from the user interface and from
|
|
39796
|
+
They can be used to extend existing Blender data with your own types which can
|
|
39797
|
+
be animated, accessed from the user interface and from Python.
|
|
39795
39798
|
|
|
39796
39799
|
[NOTE]
|
|
39797
|
-
The values assigned to
|
|
39798
|
-
definitions are not, this means whenever you load
|
|
39800
|
+
The values assigned to Blender data are saved to disk but the class
|
|
39801
|
+
definitions are not, this means whenever you load Blender the class needs
|
|
39799
39802
|
to be registered too.
|
|
39800
39803
|
This is best done by creating an add-on which loads on startup and registers
|
|
39801
39804
|
your properties.
|
|
39802
39805
|
|
|
39803
39806
|
[NOTE]
|
|
39804
|
-
PropertyGroups must be registered before assigning them to
|
|
39807
|
+
PropertyGroups must be registered before assigning them to Blender data.
|
|
39805
39808
|
|
|
39806
39809
|
Property types used in class declarations are all in bpy.props
|
|
39807
39810
|
|
|
@@ -51937,7 +51940,7 @@ Notice the 'CATEGORY_PT_name' Panel.bl_idname, this is a naming
|
|
|
51937
51940
|
convention for panels.
|
|
51938
51941
|
|
|
51939
51942
|
[NOTE]
|
|
51940
|
-
Panel subclasses must be registered for
|
|
51943
|
+
Panel subclasses must be registered for Blender to use them.
|
|
51941
51944
|
|
|
51942
51945
|
```../examples/bpy.types.Panel.py```
|
|
51943
51946
|
|
|
@@ -69583,7 +69586,7 @@ meaning that operator execution was aborted without making any changes, and
|
|
|
69583
69586
|
that no undo step will created (see next example for more info about undo).
|
|
69584
69587
|
|
|
69585
69588
|
[NOTE]
|
|
69586
|
-
Operator subclasses must be registered before accessing them from
|
|
69589
|
+
Operator subclasses must be registered before accessing them from Blender.
|
|
69587
69590
|
|
|
69588
69591
|
```../examples/bpy.types.Operator.py```
|
|
69589
69592
|
|
|
@@ -69643,12 +69646,19 @@ execute().
|
|
|
69643
69646
|
Some operators don't have an execute() function, removing the ability to be
|
|
69644
69647
|
repeated from a script or macro.
|
|
69645
69648
|
|
|
69649
|
+
When an operator is called via bpy.ops, the execution context depends
|
|
69650
|
+
on the argument provided to bpy.ops. By default, it uses execute().
|
|
69651
|
+
When an operator is activated from a button or menu item, it follows
|
|
69652
|
+
the setting in UILayout.operator_context. In most cases, invoke() is used.
|
|
69653
|
+
Running an operator via a key shortcut always uses invoke(),
|
|
69654
|
+
and this behavior cannot be changed.
|
|
69655
|
+
|
|
69646
69656
|
This example shows how to define an operator which gets mouse input to
|
|
69647
69657
|
execute a function and that this operator can be invoked or executed from
|
|
69648
|
-
the
|
|
69658
|
+
the Python API.
|
|
69649
69659
|
|
|
69650
69660
|
Also notice this operator defines its own properties, these are different
|
|
69651
|
-
to typical class properties because
|
|
69661
|
+
to typical class properties because Blender registers them with the
|
|
69652
69662
|
operator, to use as arguments when called, saved for operator undo/redo and
|
|
69653
69663
|
automatically added into the user interface.
|
|
69654
69664
|
|
|
@@ -69721,7 +69731,7 @@ Notice __init__()
|
|
|
69721
69731
|
For other operator types they are not useful but for modal operators they will
|
|
69722
69732
|
be called before the Operator.invoke and after the operator finishes.
|
|
69723
69733
|
Also see the
|
|
69724
|
-
class construction and destruction section <info_overview_class_construction_destruction
|
|
69734
|
+
class construction and destruction section <info_overview_class_construction_destruction>.
|
|
69725
69735
|
|
|
69726
69736
|
```../examples/bpy.types.Operator.6.py```
|
|
69727
69737
|
|
|
@@ -105623,7 +105633,7 @@ class bpy_struct[_GenericType1]:
|
|
|
105623
105633
|
options=set(),
|
|
105624
105634
|
keytype: str | None = "KEYFRAME",
|
|
105625
105635
|
) -> bool:
|
|
105626
|
-
"""Insert a keyframe on the property given, adding fcurves and animation data when necessary.This is the most simple example of inserting a keyframe from
|
|
105636
|
+
"""Insert a keyframe on the property given, adding fcurves and animation data when necessary.This is the most simple example of inserting a keyframe from Python.Note that when keying data paths which contain nested properties this must be
|
|
105627
105637
|
done from the `ID` subclass, in this case the `Armature` rather
|
|
105628
105638
|
than the bone.
|
|
105629
105639
|
|
|
@@ -166431,7 +166441,7 @@ class ID(bpy_struct):
|
|
|
166431
166441
|
"""
|
|
166432
166442
|
|
|
166433
166443
|
def user_clear(self):
|
|
166434
|
-
"""Clear the user count of a data-block so its not saved, on reload the data will be removedThis function is for advanced use only, misuse can crash
|
|
166444
|
+
"""Clear the user count of a data-block so its not saved, on reload the data will be removedThis function is for advanced use only, misuse can crash Blender since the user
|
|
166435
166445
|
count is used to prevent data being removed when it is used.
|
|
166436
166446
|
|
|
166437
166447
|
"""
|
|
@@ -225656,7 +225666,7 @@ class UILayout(bpy_struct):
|
|
|
225656
225666
|
"""
|
|
225657
225667
|
|
|
225658
225668
|
operator_context: bpy._typing.rna_enums.OperatorContextItems
|
|
225659
|
-
"""
|
|
225669
|
+
""" Typically set to 'INVOKE_REGION_WIN', except some cases in `bpy.types.Menu` when it's set to 'EXEC_REGION_WIN'.
|
|
225660
225670
|
|
|
225661
225671
|
:type: bpy._typing.rna_enums.OperatorContextItems
|
|
225662
225672
|
"""
|
|
@@ -236135,6 +236145,8 @@ NODE_MT_category_compositor_mask: bl_ui.node_add_menu_compositor.NODE_MT_categor
|
|
|
236135
236145
|
|
|
236136
236146
|
NODE_MT_category_compositor_output: bl_ui.node_add_menu_compositor.NODE_MT_category_compositor_output
|
|
236137
236147
|
|
|
236148
|
+
NODE_MT_category_compositor_texture: bl_ui.node_add_menu_compositor.NODE_MT_category_compositor_texture
|
|
236149
|
+
|
|
236138
236150
|
NODE_MT_category_compositor_tracking: bl_ui.node_add_menu_compositor.NODE_MT_category_compositor_tracking
|
|
236139
236151
|
|
|
236140
236152
|
NODE_MT_category_compositor_transform: bl_ui.node_add_menu_compositor.NODE_MT_category_compositor_transform
|
bpy/utils/__init__.pyi
CHANGED
|
@@ -200,12 +200,15 @@ def register_class(
|
|
|
200
200
|
| bpy.types.FileHandler
|
|
201
201
|
| bpy.types.PropertyGroup
|
|
202
202
|
| bpy.types.AddonPreferences
|
|
203
|
+
| bpy.types.NodeTree
|
|
204
|
+
| bpy.types.Node
|
|
205
|
+
| bpy.types.NodeSocket
|
|
203
206
|
],
|
|
204
207
|
):
|
|
205
208
|
"""Register a subclass of a Blender type class.
|
|
206
209
|
|
|
207
210
|
:param cls: Registerable Blender class type.
|
|
208
|
-
: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 | bpy.types.AddonPreferences]
|
|
211
|
+
: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 | bpy.types.AddonPreferences | bpy.types.NodeTree | bpy.types.Node | bpy.types.NodeSocket]
|
|
209
212
|
"""
|
|
210
213
|
|
|
211
214
|
def register_classes_factory(classes):
|
|
@@ -390,6 +393,9 @@ def unregister_class(
|
|
|
390
393
|
| bpy.types.FileHandler
|
|
391
394
|
| bpy.types.PropertyGroup
|
|
392
395
|
| bpy.types.AddonPreferences
|
|
396
|
+
| bpy.types.NodeTree
|
|
397
|
+
| bpy.types.Node
|
|
398
|
+
| bpy.types.NodeSocket
|
|
393
399
|
],
|
|
394
400
|
):
|
|
395
401
|
"""Unload the Python class from blender.
|
|
@@ -397,7 +403,7 @@ def unregister_class(
|
|
|
397
403
|
:param cls: Blender type class,
|
|
398
404
|
see `bpy.utils.register_class` for classes which can
|
|
399
405
|
be registered.
|
|
400
|
-
: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 | bpy.types.AddonPreferences]
|
|
406
|
+
: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 | bpy.types.AddonPreferences | bpy.types.NodeTree | bpy.types.Node | bpy.types.NodeSocket]
|
|
401
407
|
"""
|
|
402
408
|
|
|
403
409
|
def unregister_cli_command(handle):
|
|
@@ -105,7 +105,7 @@ bl_ui/anim/__init__.pyi,sha256=bxUenrjpr8B1Xz25D9sLo2XuR-pYbvkpgFwnsnBv4So,903
|
|
|
105
105
|
bl_ui/asset_shelf/__init__.pyi,sha256=a1Luz9261xl7H_T1atH9oWX_wkAvoWAhuy3l43vrpME,790
|
|
106
106
|
bl_ui/generic_ui_list/__init__.pyi,sha256=wPk6voYuY-Reey45ueRE36_vABh9g8SbMS7JNIVtPUw,4232
|
|
107
107
|
bl_ui/node_add_menu/__init__.pyi,sha256=PJkKJHijLR0debXhk69hD1dYqR6Reu5070xX92n3xLc,1175
|
|
108
|
-
bl_ui/node_add_menu_compositor/__init__.pyi,sha256=
|
|
108
|
+
bl_ui/node_add_menu_compositor/__init__.pyi,sha256=kUXJiHat5Vx-AAzd_vk83IPZBXOqm8qoMua4buGHqIY,10389
|
|
109
109
|
bl_ui/node_add_menu_geometry/__init__.pyi,sha256=rTr7qm5R5j-NjlyD6BHVIsx8Hd2odCKOQp1eu-vvG28,30302
|
|
110
110
|
bl_ui/node_add_menu_shader/__init__.pyi,sha256=Qwqrc5VmIsiOJK1cAcH42nvjhNBqhLi56Zl_RtBQRI8,6014
|
|
111
111
|
bl_ui/node_add_menu_texture/__init__.pyi,sha256=31td-iGV1FsDFcF3No2aq0YlYKEGXypd2Y0dCt1mPdc,5267
|
|
@@ -197,9 +197,9 @@ bpy/app/__init__.pyi,sha256=rDLfx3HzxNGIixHun4sUA-1fuNUq6bxyQswbTvYeJ9M,8766
|
|
|
197
197
|
bpy/app/handlers/__init__.pyi,sha256=A9IS2EmBskYtGy2aMCX5vxAmTKB3YCuz1hUPZvah8S4,6938
|
|
198
198
|
bpy/app/icons/__init__.pyi,sha256=IxxJA0uPQaBAogv-iZ2jEG-5f6i3X9M-gRjw8jJnL8A,955
|
|
199
199
|
bpy/app/timers/__init__.pyi,sha256=z2vm07XNdNRr9Hi7N82BILPmiLXCzhaml-BrR1orBIo,2153
|
|
200
|
-
bpy/app/translations/__init__.pyi,sha256=
|
|
200
|
+
bpy/app/translations/__init__.pyi,sha256=_Lszhj6YiaxJOuQk3IBpA4Nzs44VV1eq_j-gYxUvkGU,7034
|
|
201
201
|
bpy/msgbus/__init__.pyi,sha256=bZ7i3cT_FIM8gV0y8SESjDg3wCovHI3ZIAlYiSW2A5o,2981
|
|
202
|
-
bpy/ops/__init__.pyi,sha256=
|
|
202
|
+
bpy/ops/__init__.pyi,sha256=iL0igb9hmj_5Ge1rg22l9s383NQlSY6Z24FPWTP6j9Y,5874
|
|
203
203
|
bpy/ops/action/__init__.pyi,sha256=mTwxnCJvbOYwe7oTBQwpBIDV1KVtKy4LGXZ3q7n4Z9E,18672
|
|
204
204
|
bpy/ops/anim/__init__.pyi,sha256=cIJ1ofgeymkB0WnZNfK6Igo2c1gX43SKGwOfsAJCqQk,25133
|
|
205
205
|
bpy/ops/armature/__init__.pyi,sha256=rljv88OGIvV0_Wd3TeRRBghGOvZikghfc5q4HOehvlg,20936
|
|
@@ -261,7 +261,7 @@ bpy/ops/screen/__init__.pyi,sha256=_vR_lKVTHrtPV7MVayr1_K7UHow6yA0WOwBeHeE7n0s,1
|
|
|
261
261
|
bpy/ops/script/__init__.pyi,sha256=vY47KMjOW-njjscvnqnLQjxTbPW4-vghTvMj5jzlmJU,1005
|
|
262
262
|
bpy/ops/sculpt/__init__.pyi,sha256=YJ0vdH_3uWC5YhC0d9qMIGlTSziiKG8-Be3j9ay9Mpo,47267
|
|
263
263
|
bpy/ops/sculpt_curves/__init__.pyi,sha256=mx1sIk4zA2ValmxBpDXO6SJccf-Jpvb7y1pXaWX1EI0,2876
|
|
264
|
-
bpy/ops/sequencer/__init__.pyi,sha256=
|
|
264
|
+
bpy/ops/sequencer/__init__.pyi,sha256=sxvEank1MOyTJdTR0YQIGrsxJYwdywGFVuCzIljxTJI,78320
|
|
265
265
|
bpy/ops/sound/__init__.pyi,sha256=1cAvk2eDLTyU2JrwXd5-AJfPHHFrbv35MZgaer7b6pc,16956
|
|
266
266
|
bpy/ops/spreadsheet/__init__.pyi,sha256=fUC1jInCBtYAyCryFHP_DIOt6pOopof5WxMIdOh1M_4,1387
|
|
267
267
|
bpy/ops/surface/__init__.pyi,sha256=tvTVuqkjV4znlQBD0F2E52tkGnYDttaPQl7sHwyaOSo,10342
|
|
@@ -278,9 +278,9 @@ bpy/ops/wm/__init__.pyi,sha256=26kfx7ZbStGqXaXB2Vj-2lkv7rvp-xfl_jS60y-Doek,21619
|
|
|
278
278
|
bpy/ops/workspace/__init__.pyi,sha256=hXSSQZl7IwVFrxMveYrlSKGWY7BjrsV-cKagPzhuT0w,2010
|
|
279
279
|
bpy/ops/world/__init__.pyi,sha256=9OhY87-WRRLor-4GQJhDiDJG3M9W5s9yFo9x45Iiycs,628
|
|
280
280
|
bpy/path/__init__.pyi,sha256=7-_wXRbyGJSoalxgAiuGAPvcM988qoM5DdQ2A8p1kpk,5507
|
|
281
|
-
bpy/props/__init__.pyi,sha256=
|
|
282
|
-
bpy/types/__init__.pyi,sha256=
|
|
283
|
-
bpy/utils/__init__.pyi,sha256=
|
|
281
|
+
bpy/props/__init__.pyi,sha256=4SYl5qfPLRwe3zGyHowQy_i_mU-gjImdiqidFOHP6Tc,35264
|
|
282
|
+
bpy/types/__init__.pyi,sha256=BmFTWoqbrMn1cxhqhPGY6bJuvIGh_j4_7R4rsM7CetU,5492874
|
|
283
|
+
bpy/utils/__init__.pyi,sha256=eZ-9QlKUFqSE24VSBKRV8QwpQrwgXqjPbr8sdePUmpI,15228
|
|
284
284
|
bpy/utils/previews/__init__.pyi,sha256=RF4ii5Rs-FetM_ZmC0GCpMSiin5evppVj62-CmKK76s,2307
|
|
285
285
|
bpy/utils/units/__init__.pyi,sha256=dc9ZViPAqOap5ZsFfWoI0d6bHdri3pWWiVeRxAaZr-U,2672
|
|
286
286
|
bpy_extras/__init__.pyi,sha256=Vish0mn6IfEYsdv9gWh6VDSpzvOwYavpgAC_PleMtFE,995
|
|
@@ -314,7 +314,7 @@ freestyle/functions/__init__.pyi,sha256=RGdlJWbBctqKBR3p81MsXBk9OWdTuvEoOfBXvxjf
|
|
|
314
314
|
freestyle/predicates/__init__.pyi,sha256=Liq_1krkT25RfeNPeEgvKWkLnWtHCuO9-7vXX3lE71E,13488
|
|
315
315
|
freestyle/shaders/__init__.pyi,sha256=imuo4jXkwaN4dazDARvErEGdn9XuMGlWIKGpnqd3Po0,24041
|
|
316
316
|
freestyle/types/__init__.pyi,sha256=zCVqLakrYPiSTlYVHLg-455C9aPCEo-eeO-0A1fYFYs,100227
|
|
317
|
-
freestyle/utils/__init__.pyi,sha256=
|
|
317
|
+
freestyle/utils/__init__.pyi,sha256=k2JFp4C3DUpnkVgR1B32ZDux08pAcsceSuWBnIEHD9A,5135
|
|
318
318
|
freestyle/utils/ContextFunctions/__init__.pyi,sha256=YvDLJXMxKbbqBS0so4MnfuSN1g4wNAFOXbpW7_g4AR0,3472
|
|
319
319
|
gpu/__init__.pyi,sha256=80Udrv8AAvblVeWgcU709t4PmsX3ShvU2TaWj7qv0uk,8026
|
|
320
320
|
gpu/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -361,7 +361,7 @@ rna_prop_ui/__init__.pyi,sha256=o3yE2C_BSi2O_ZJM_Jao06i6seWMRNQcZaI6keKjpFE,1308
|
|
|
361
361
|
rna_prop_ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
362
362
|
rna_xml/__init__.pyi,sha256=EBP-inpL9KRsjGftcoza9_G_Do5UjXw62eAvuEMoaO0,604
|
|
363
363
|
rna_xml/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
364
|
-
fake_bpy_module-
|
|
365
|
-
fake_bpy_module-
|
|
366
|
-
fake_bpy_module-
|
|
367
|
-
fake_bpy_module-
|
|
364
|
+
fake_bpy_module-20250328.dist-info/METADATA,sha256=yJtWYGwqoEhBLhcopBj_lx6mDlGJ0rs3A9vaA18cSJw,7429
|
|
365
|
+
fake_bpy_module-20250328.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
|
|
366
|
+
fake_bpy_module-20250328.dist-info/top_level.txt,sha256=SZm3DVRKif7dFSjYKiIIg3_7uqjIwRAwOnCIcT4hRNM,500
|
|
367
|
+
fake_bpy_module-20250328.dist-info/RECORD,,
|
freestyle/utils/__init__.pyi
CHANGED
|
@@ -125,7 +125,7 @@ def material_from_fedge(fe):
|
|
|
125
125
|
"""get the diffuse RGBA color from an FEdge"""
|
|
126
126
|
|
|
127
127
|
def normal_at_I0D(it): ...
|
|
128
|
-
def pairwise(iterable, types={
|
|
128
|
+
def pairwise(iterable, types={StrokeVertexIterator, Stroke}):
|
|
129
129
|
"""Yields a tuple containing the previous and current object"""
|
|
130
130
|
|
|
131
131
|
def rgb_to_bw(r, g, b):
|
|
File without changes
|
|
File without changes
|