fake-bpy-module 20250129__py3-none-any.whl → 20250201__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of fake-bpy-module might be problematic. Click here for more details.
- bl_operators/node/__init__.pyi +78 -0
- bpy/_typing/rna_enums/__init__.pyi +3 -3
- bpy/ops/node/__init__.pyi +51 -0
- bpy/ops/ui/__init__.pyi +5 -3
- bpy/ops/wm/__init__.pyi +2 -2
- bpy/props/__init__.pyi +1 -1
- bpy/types/__init__.pyi +18 -4
- {fake_bpy_module-20250129.dist-info → fake_bpy_module-20250201.dist-info}/METADATA +3 -1
- {fake_bpy_module-20250129.dist-info → fake_bpy_module-20250201.dist-info}/RECORD +11 -11
- {fake_bpy_module-20250129.dist-info → fake_bpy_module-20250201.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20250129.dist-info → fake_bpy_module-20250201.dist-info}/top_level.txt +0 -0
bl_operators/node/__init__.pyi
CHANGED
|
@@ -322,6 +322,84 @@ class NODE_OT_tree_path_parent(bpy.types.Operator):
|
|
|
322
322
|
:param context:
|
|
323
323
|
"""
|
|
324
324
|
|
|
325
|
+
class NODE_OT_viewer_shortcut_get(bpy.types.Operator):
|
|
326
|
+
"""Activate a specific compositor viewer node using 1,2,..,9 keys"""
|
|
327
|
+
|
|
328
|
+
bl_idname: typing.Any
|
|
329
|
+
bl_label: typing.Any
|
|
330
|
+
bl_options: typing.Any
|
|
331
|
+
bl_rna: typing.Any
|
|
332
|
+
id_data: typing.Any
|
|
333
|
+
|
|
334
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
335
|
+
"""
|
|
336
|
+
|
|
337
|
+
:return: The RNA type or default when not found.
|
|
338
|
+
:rtype: bpy.types.Struct
|
|
339
|
+
"""
|
|
340
|
+
|
|
341
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
342
|
+
"""
|
|
343
|
+
|
|
344
|
+
:return: The class or default when not found.
|
|
345
|
+
:rtype: typing.Any
|
|
346
|
+
"""
|
|
347
|
+
|
|
348
|
+
def execute(self, context):
|
|
349
|
+
"""
|
|
350
|
+
|
|
351
|
+
:param context:
|
|
352
|
+
"""
|
|
353
|
+
|
|
354
|
+
@classmethod
|
|
355
|
+
def poll(cls, context):
|
|
356
|
+
"""
|
|
357
|
+
|
|
358
|
+
:param context:
|
|
359
|
+
"""
|
|
360
|
+
|
|
361
|
+
class NODE_OT_viewer_shortcut_set(bpy.types.Operator):
|
|
362
|
+
"""Create a compositor viewer shortcut for the selected node by pressing ctrl+1,2,..9"""
|
|
363
|
+
|
|
364
|
+
bl_idname: typing.Any
|
|
365
|
+
bl_label: typing.Any
|
|
366
|
+
bl_options: typing.Any
|
|
367
|
+
bl_rna: typing.Any
|
|
368
|
+
id_data: typing.Any
|
|
369
|
+
|
|
370
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
371
|
+
"""
|
|
372
|
+
|
|
373
|
+
:return: The RNA type or default when not found.
|
|
374
|
+
:rtype: bpy.types.Struct
|
|
375
|
+
"""
|
|
376
|
+
|
|
377
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
378
|
+
"""
|
|
379
|
+
|
|
380
|
+
:return: The class or default when not found.
|
|
381
|
+
:rtype: typing.Any
|
|
382
|
+
"""
|
|
383
|
+
|
|
384
|
+
def execute(self, context):
|
|
385
|
+
"""
|
|
386
|
+
|
|
387
|
+
:param context:
|
|
388
|
+
"""
|
|
389
|
+
|
|
390
|
+
def get_connected_viewer(self, node):
|
|
391
|
+
"""
|
|
392
|
+
|
|
393
|
+
:param node:
|
|
394
|
+
"""
|
|
395
|
+
|
|
396
|
+
@classmethod
|
|
397
|
+
def poll(cls, context):
|
|
398
|
+
"""
|
|
399
|
+
|
|
400
|
+
:param context:
|
|
401
|
+
"""
|
|
402
|
+
|
|
325
403
|
class NodeAddOperator:
|
|
326
404
|
def create_node(self, context, node_type):
|
|
327
405
|
"""
|
|
@@ -2023,9 +2023,9 @@ type NodeClampItems = typing.Literal[
|
|
|
2023
2023
|
"RANGE", # Range.Constrain value between min and max, swapping arguments when min > max.
|
|
2024
2024
|
]
|
|
2025
2025
|
type NodeCombsepColorItems = typing.Literal[
|
|
2026
|
-
"RGB", # RGB.Use RGB color processing.
|
|
2027
|
-
"HSV", # HSV.Use HSV color processing.
|
|
2028
|
-
"HSL", # HSL.Use HSL color processing.
|
|
2026
|
+
"RGB", # RGB.Use RGB (Red, Green, Blue) color processing.
|
|
2027
|
+
"HSV", # HSV.Use HSV (Hue, Saturation, Value) color processing.
|
|
2028
|
+
"HSL", # HSL.Use HSL (Hue, Saturation, Lightness) color processing.
|
|
2029
2029
|
]
|
|
2030
2030
|
type NodeCompareOperationItems = typing.Literal[
|
|
2031
2031
|
"LESS_THAN", # Less Than.True when the first input is smaller than second input.
|
bpy/ops/node/__init__.pyi
CHANGED
|
@@ -24,6 +24,27 @@ def add_collection(
|
|
|
24
24
|
:type session_uid: int | None
|
|
25
25
|
"""
|
|
26
26
|
|
|
27
|
+
def add_color(
|
|
28
|
+
execution_context: int | str | None = None,
|
|
29
|
+
undo: bool | None = None,
|
|
30
|
+
/,
|
|
31
|
+
*,
|
|
32
|
+
color: collections.abc.Iterable[float] | None = (0.0, 0.0, 0.0, 0.0),
|
|
33
|
+
gamma: bool | None = False,
|
|
34
|
+
has_alpha: bool | None = False,
|
|
35
|
+
):
|
|
36
|
+
"""Add a color node to the current node editor
|
|
37
|
+
|
|
38
|
+
:type execution_context: int | str | None
|
|
39
|
+
:type undo: bool | None
|
|
40
|
+
:param color: Color, Source color
|
|
41
|
+
:type color: collections.abc.Iterable[float] | None
|
|
42
|
+
:param gamma: Gamma Corrected, The source color is gamma corrected
|
|
43
|
+
:type gamma: bool | None
|
|
44
|
+
:param has_alpha: Has Alpha, The source color contains an Alpha component
|
|
45
|
+
:type has_alpha: bool | None
|
|
46
|
+
"""
|
|
47
|
+
|
|
27
48
|
def add_file(
|
|
28
49
|
execution_context: int | str | None = None,
|
|
29
50
|
undo: bool | None = None,
|
|
@@ -1701,3 +1722,33 @@ def viewer_border(
|
|
|
1701
1722
|
:param wait_for_input: Wait for Input
|
|
1702
1723
|
:type wait_for_input: bool | None
|
|
1703
1724
|
"""
|
|
1725
|
+
|
|
1726
|
+
def viewer_shortcut_get(
|
|
1727
|
+
execution_context: int | str | None = None,
|
|
1728
|
+
undo: bool | None = None,
|
|
1729
|
+
/,
|
|
1730
|
+
*,
|
|
1731
|
+
viewer_index: int | None = 0,
|
|
1732
|
+
):
|
|
1733
|
+
"""Activate a specific compositor viewer node using 1,2,..,9 keys
|
|
1734
|
+
|
|
1735
|
+
:type execution_context: int | str | None
|
|
1736
|
+
:type undo: bool | None
|
|
1737
|
+
:param viewer_index: Viewer Index, Index corresponding to the shortcut, e.g. number key 1 corresponds to index 1 etc..
|
|
1738
|
+
:type viewer_index: int | None
|
|
1739
|
+
"""
|
|
1740
|
+
|
|
1741
|
+
def viewer_shortcut_set(
|
|
1742
|
+
execution_context: int | str | None = None,
|
|
1743
|
+
undo: bool | None = None,
|
|
1744
|
+
/,
|
|
1745
|
+
*,
|
|
1746
|
+
viewer_index: int | None = 0,
|
|
1747
|
+
):
|
|
1748
|
+
"""Create a compositor viewer shortcut for the selected node by pressing ctrl+1,2,..9
|
|
1749
|
+
|
|
1750
|
+
:type execution_context: int | str | None
|
|
1751
|
+
:type undo: bool | None
|
|
1752
|
+
:param viewer_index: Viewer Index, Index corresponding to the shortcut, e.g. number key 1 corresponds to index 1 etc..
|
|
1753
|
+
:type viewer_index: int | None
|
|
1754
|
+
"""
|
bpy/ops/ui/__init__.pyi
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import typing
|
|
2
2
|
import collections.abc
|
|
3
3
|
import typing_extensions
|
|
4
|
-
import mathutils
|
|
5
4
|
|
|
6
5
|
def assign_default_button(
|
|
7
6
|
execution_context: int | str | None = None, undo: bool | None = None
|
|
@@ -104,17 +103,20 @@ def drop_color(
|
|
|
104
103
|
undo: bool | None = None,
|
|
105
104
|
/,
|
|
106
105
|
*,
|
|
107
|
-
color: collections.abc.
|
|
106
|
+
color: collections.abc.Iterable[float] | None = (0.0, 0.0, 0.0, 0.0),
|
|
108
107
|
gamma: bool | None = False,
|
|
108
|
+
has_alpha: bool | None = False,
|
|
109
109
|
):
|
|
110
110
|
"""Drop colors to buttons
|
|
111
111
|
|
|
112
112
|
:type execution_context: int | str | None
|
|
113
113
|
:type undo: bool | None
|
|
114
114
|
:param color: Color, Source color
|
|
115
|
-
:type color: collections.abc.
|
|
115
|
+
:type color: collections.abc.Iterable[float] | None
|
|
116
116
|
:param gamma: Gamma Corrected, The source color is gamma corrected
|
|
117
117
|
:type gamma: bool | None
|
|
118
|
+
:param has_alpha: Has Alpha, The source color contains an Alpha component
|
|
119
|
+
:type has_alpha: bool | None
|
|
118
120
|
"""
|
|
119
121
|
|
|
120
122
|
def drop_material(
|
bpy/ops/wm/__init__.pyi
CHANGED
|
@@ -5157,7 +5157,7 @@ def usd_export(
|
|
|
5157
5157
|
:type custom_properties_namespace: str
|
|
5158
5158
|
:param author_blender_name: Blender Names, Author USD custom attributes containing the original Blender object and object data names
|
|
5159
5159
|
:type author_blender_name: bool | None
|
|
5160
|
-
:param convert_world_material:
|
|
5160
|
+
:param convert_world_material: World Dome Light, Convert the world material to a USD dome light. Currently works for simple materials, consisting of an environment texture connected to a background shader, with an optional vector multiply of the texture color
|
|
5161
5161
|
:type convert_world_material: bool | None
|
|
5162
5162
|
:param allow_unicode: Allow Unicode, Preserve UTF-8 encoded characters when writing USD prim and property names (requires software utilizing USD 24.03 or greater when opening the resulting files)
|
|
5163
5163
|
:type allow_unicode: bool | None
|
|
@@ -5481,7 +5481,7 @@ def usd_import(
|
|
|
5481
5481
|
:type attr_import_mode: typing.Literal['NONE','USER','ALL'] | None
|
|
5482
5482
|
:param validate_meshes: Validate Meshes, Ensure the data is valid (when disabled, data may be imported which causes crashes displaying or editing)
|
|
5483
5483
|
:type validate_meshes: bool | None
|
|
5484
|
-
:param create_world_material:
|
|
5484
|
+
:param create_world_material: World Dome Light, Convert the first discovered USD dome light to a world background shader
|
|
5485
5485
|
:type create_world_material: bool | None
|
|
5486
5486
|
:param import_defined_only: Defined Primitives Only, Import only defined USD primitives. When disabled this allows importing USD primitives which are not defined, such as those with an override specifier
|
|
5487
5487
|
:type import_defined_only: bool | None
|
bpy/props/__init__.pyi
CHANGED
|
@@ -26,7 +26,7 @@ When accessing external non-Blender data, thread safety mechanisms should be con
|
|
|
26
26
|
|
|
27
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
|
-
button in the 3D
|
|
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.
|
|
31
31
|
|
|
32
32
|
```../examples/bpy.props.1.py```
|
bpy/types/__init__.pyi
CHANGED
|
@@ -83004,7 +83004,7 @@ animation or modifiers into account:
|
|
|
83004
83004
|
|
|
83005
83005
|
* For meshes this is similar to duplicating the source mesh.
|
|
83006
83006
|
* For curves this disables own modifiers, and modifiers of objects used as bevel and taper.
|
|
83007
|
-
* For
|
|
83007
|
+
* For meta-balls this produces an empty mesh since polygonization is done as a modifier evaluation.
|
|
83008
83008
|
|
|
83009
83009
|
When is used on evaluated object all modifiers are taken into account.
|
|
83010
83010
|
|
|
@@ -114824,11 +114824,15 @@ class ActionKeyframeStrip(ActionStrip, bpy_struct):
|
|
|
114824
114824
|
:type: ActionChannelbags
|
|
114825
114825
|
"""
|
|
114826
114826
|
|
|
114827
|
-
def channels(
|
|
114827
|
+
def channels(
|
|
114828
|
+
self, slot_handle: int | None, *, ensure: bool | None = False
|
|
114829
|
+
) -> ActionChannelbag:
|
|
114828
114830
|
"""Find the ActionChannelbag for a specific Slot
|
|
114829
114831
|
|
|
114830
114832
|
:param slot_handle: Slot Handle, Number that identifies a specific action slot
|
|
114831
114833
|
:type slot_handle: int | None
|
|
114834
|
+
:param ensure: Create if necessary, Ensure the channelbag exists for this slot handle, creating it if necessary
|
|
114835
|
+
:type ensure: bool | None
|
|
114832
114836
|
:return: Channels
|
|
114833
114837
|
:rtype: ActionChannelbag
|
|
114834
114838
|
"""
|
|
@@ -131554,7 +131558,7 @@ class CompositorNodeTranslate(CompositorNode, NodeInternal, Node, bpy_struct):
|
|
|
131554
131558
|
"""
|
|
131555
131559
|
|
|
131556
131560
|
wrap_axis: typing.Literal["NONE", "XAXIS", "YAXIS", "BOTH"]
|
|
131557
|
-
"""
|
|
131561
|
+
""" Repeats image on a specific axis
|
|
131558
131562
|
|
|
131559
131563
|
:type: typing.Literal['NONE','XAXIS','YAXIS','BOTH']
|
|
131560
131564
|
"""
|
|
@@ -131842,6 +131846,12 @@ class CompositorNodeVecBlur(CompositorNode, NodeInternal, Node, bpy_struct):
|
|
|
131842
131846
|
class CompositorNodeViewer(CompositorNode, NodeInternal, Node, bpy_struct):
|
|
131843
131847
|
"""Visualize data from inside a node graph, in the image editor or as a backdrop"""
|
|
131844
131848
|
|
|
131849
|
+
ui_shortcut: int
|
|
131850
|
+
"""
|
|
131851
|
+
|
|
131852
|
+
:type: int
|
|
131853
|
+
"""
|
|
131854
|
+
|
|
131845
131855
|
use_alpha: bool
|
|
131846
131856
|
""" Colors are treated alpha premultiplied, or colors output straight (alpha gets set to 1)
|
|
131847
131857
|
|
|
@@ -197743,7 +197753,7 @@ class Scene(ID, bpy_struct):
|
|
|
197743
197753
|
"""
|
|
197744
197754
|
|
|
197745
197755
|
def frame_set(self, frame: int | None, *, subframe: float | None = 0.0):
|
|
197746
|
-
"""Set scene frame updating all objects immediately
|
|
197756
|
+
"""Set scene frame updating all objects and view layers immediately
|
|
197747
197757
|
|
|
197748
197758
|
:param frame: Frame number to set
|
|
197749
197759
|
:type frame: int | None
|
|
@@ -234018,6 +234028,10 @@ NODE_OT_interface_item_remove: bl_operators.node.NODE_OT_interface_item_remove
|
|
|
234018
234028
|
|
|
234019
234029
|
NODE_OT_tree_path_parent: bl_operators.node.NODE_OT_tree_path_parent
|
|
234020
234030
|
|
|
234031
|
+
NODE_OT_viewer_shortcut_get: bl_operators.node.NODE_OT_viewer_shortcut_get
|
|
234032
|
+
|
|
234033
|
+
NODE_OT_viewer_shortcut_set: bl_operators.node.NODE_OT_viewer_shortcut_set
|
|
234034
|
+
|
|
234021
234035
|
NODE_PT_active_node_color: bl_ui.space_node.NODE_PT_active_node_color
|
|
234022
234036
|
|
|
234023
234037
|
NODE_PT_active_node_generic: bl_ui.space_node.NODE_PT_active_node_generic
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.2
|
|
2
2
|
Name: fake-bpy-module
|
|
3
|
-
Version:
|
|
3
|
+
Version: 20250201
|
|
4
4
|
Summary: Collection of the fake Blender Python API module for the code completion.
|
|
5
5
|
Author: nutti
|
|
6
6
|
Author-email: nutti.metro@gmail.com
|
|
@@ -114,6 +114,7 @@ being too big for intelliSense to work.*
|
|
|
114
114
|
|4.0|[https://pypi.org/project/fake-bpy-module-4.0/](https://pypi.org/project/fake-bpy-module-4.0/)|
|
|
115
115
|
|4.1|[https://pypi.org/project/fake-bpy-module-4.1/](https://pypi.org/project/fake-bpy-module-4.1/)|
|
|
116
116
|
|4.2|[https://pypi.org/project/fake-bpy-module-4.2/](https://pypi.org/project/fake-bpy-module-4.2/)|
|
|
117
|
+
|4.3|[https://pypi.org/project/fake-bpy-module-4.3/](https://pypi.org/project/fake-bpy-module-4.3/)|
|
|
117
118
|
|latest|[https://pypi.org/project/fake-bpy-module/](https://pypi.org/project/fake-bpy-module/)|
|
|
118
119
|
||[https://pypi.org/project/fake-bpy-module-latest/](https://pypi.org/project/fake-bpy-module-latest/)|
|
|
119
120
|
|
|
@@ -177,3 +178,4 @@ Support via [GitHub Sponsors](https://github.com/sponsors/nutti)
|
|
|
177
178
|
* [**@UuuNyaa**](https://github.com/UuuNyaa)
|
|
178
179
|
* [**@Road-hog123**](https://github.com/Road-hog123)
|
|
179
180
|
* [**@Andrej730**](https://github.com/Andrej730)
|
|
181
|
+
* [**@ice3**](https://github.com/ice3)
|
|
@@ -69,7 +69,7 @@ bl_operators/geometry_nodes/__init__.pyi,sha256=h0mxRrKeb6_NoRZJUENU2aj_WiN3SHUN
|
|
|
69
69
|
bl_operators/image/__init__.pyi,sha256=YNHvnRdvl9z5DBqDRR23PpFgA94TshQfexGmyYbyzK0,3436
|
|
70
70
|
bl_operators/image_as_planes/__init__.pyi,sha256=msyQ3WObip0mOUVflYsSpneXxgBNKZs_QIPIQDJjuFg,4556
|
|
71
71
|
bl_operators/mesh/__init__.pyi,sha256=jdyChlzXgKrhiw9ROSf8o7YFi3L40p4dBGfTn-vAshU,2412
|
|
72
|
-
bl_operators/node/__init__.pyi,sha256=
|
|
72
|
+
bl_operators/node/__init__.pyi,sha256=8J5P2UkShdfiK18ZJaZTzXNiCbTE8PLDgJPBUDjK8AA,10316
|
|
73
73
|
bl_operators/node_editor/__init__.pyi,sha256=YI0O4rr9UH6VJ4rkOUE55YwqteSKLutqZ5SZQvKD7pA,109
|
|
74
74
|
bl_operators/node_editor/node_functions/__init__.pyi,sha256=8EfnI7vkBtnn2CxIdhEHBEHCzUjI5F6r3wgMoWPo2Dc,527
|
|
75
75
|
bl_operators/object/__init__.pyi,sha256=2MCam5rUDHiwmbRk-vRt6O5xUvdl2kmJYITxR1-IQ4U,11516
|
|
@@ -191,7 +191,7 @@ bmesh/utils/__init__.pyi,sha256=XNhFTqYQPL7ZUvljUTQkN0X_3YCS_RyrOgEzqrQZiDg,6235
|
|
|
191
191
|
bpy/__init__.pyi,sha256=KeQc-X1TjhtunVxLDy0IK0cMmurLmAQm4fX_D__UPJo,464
|
|
192
192
|
bpy/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
193
193
|
bpy/_typing/__init__.pyi,sha256=7bioadpQS-8UKR8TdY1m4MqUFqKVy8h13sPIt28ZUqs,99
|
|
194
|
-
bpy/_typing/rna_enums/__init__.pyi,sha256=
|
|
194
|
+
bpy/_typing/rna_enums/__init__.pyi,sha256=WeU_5jwP5G5xPFkCyKfV2zsXtH5WsasE7I3qlrj48WU,138692
|
|
195
195
|
bpy/app/__init__.pyi,sha256=s6DxbRrXGzFTpAIeczXT4DiCPzeYAKldZFZk4uVR5Yg,8740
|
|
196
196
|
bpy/app/handlers/__init__.pyi,sha256=Gxao8v-gF10WpVRUdswsB4QndzHjO1UtymwrorJef-4,6911
|
|
197
197
|
bpy/app/icons/__init__.pyi,sha256=w18Xn9y0T54WlpHyhC3_y8a3Lq9kuo3U72Bu7wOY41A,928
|
|
@@ -241,7 +241,7 @@ bpy/ops/material/__init__.pyi,sha256=8AhfpDXsCDLZI0UEESadmN8-zfNGEiDblmKobSJLcqA
|
|
|
241
241
|
bpy/ops/mball/__init__.pyi,sha256=VRZZbMhoN6OWmsG-344hmoHQ-_qcjRuisuzJvLxGobI,4155
|
|
242
242
|
bpy/ops/mesh/__init__.pyi,sha256=qE1RpDdjx6k30pAjr1ZWqjR4aoY6_qJ8VVyQk0F8GPA,132596
|
|
243
243
|
bpy/ops/nla/__init__.pyi,sha256=qWBmb8nOy9c6H_rKEjt3spO-TnwPaqJc1meOgDy5uaY,18145
|
|
244
|
-
bpy/ops/node/__init__.pyi,sha256=
|
|
244
|
+
bpy/ops/node/__init__.pyi,sha256=nX6jbMBsyypERuhUpBJ3Y9ML0wNylwyCH_7WgvDdCtI,53668
|
|
245
245
|
bpy/ops/object/__init__.pyi,sha256=r-chJkYsfu2ZUp4KBcamnBl7Od4_LW5zJ76e45lc8u0,168021
|
|
246
246
|
bpy/ops/outliner/__init__.pyi,sha256=la079qCOhk_Bf_FiEtjcNh0jP97X0sY5aPgnAxOT4x0,27743
|
|
247
247
|
bpy/ops/paint/__init__.pyi,sha256=Q-EnWEXXc_RyYXxGY0x4zTQbmNwd4HOaPxashYEWwpk,37665
|
|
@@ -267,17 +267,17 @@ bpy/ops/text/__init__.pyi,sha256=j6wutufMV-p6P1WkAJxrFJWDv3MK-ra691fkR_rdy1s,211
|
|
|
267
267
|
bpy/ops/text_editor/__init__.pyi,sha256=-BquL2tZJRA0PG5_CbDNcfFJ5S2JgVWVWHRGOr-5IKo,635
|
|
268
268
|
bpy/ops/texture/__init__.pyi,sha256=oxKGKHziumZd9yFWYjRNVALiIAgR3-AIlmSnHbhhT1I,1043
|
|
269
269
|
bpy/ops/transform/__init__.pyi,sha256=nFMU9BIC1R0F3vOtG3UJzG06_0bhvpn5WJ7jpB_B3rA,58195
|
|
270
|
-
bpy/ops/ui/__init__.pyi,sha256=
|
|
270
|
+
bpy/ops/ui/__init__.pyi,sha256=kbNC_5Oa5EwzUSkInFS7hgie-vd6CqQ_zIshNh6UIAA,12510
|
|
271
271
|
bpy/ops/uilist/__init__.pyi,sha256=1Vu7qHRYL-MOM5kdcHJLmJwucvveh10t1wbmL_98GEM,1618
|
|
272
272
|
bpy/ops/uv/__init__.pyi,sha256=_PFdsIxNsw5RLzCHmpqA7MnHriWUf0mau2pvYSyj7DQ,45436
|
|
273
273
|
bpy/ops/view2d/__init__.pyi,sha256=bw6xoLUDUWQGk36g4T8THDWpNSH_VX8Pyg_mlGB9Dik,6986
|
|
274
274
|
bpy/ops/view3d/__init__.pyi,sha256=MGiNsaGKtQPLFiSQgEdKlULq2a0Rp6W3vGTub0Hb3p4,30689
|
|
275
|
-
bpy/ops/wm/__init__.pyi,sha256=
|
|
275
|
+
bpy/ops/wm/__init__.pyi,sha256=j7hlRICQ5pqYjsgTQPkJozhTMs4EMBzG6XbGjuLrzDk,215926
|
|
276
276
|
bpy/ops/workspace/__init__.pyi,sha256=BHvDV5CcVBnuKaL8akhm-Es7VcGUjf3jGFTbfx5YHCU,1983
|
|
277
277
|
bpy/ops/world/__init__.pyi,sha256=pBV8EDA8HoWovDSul6mxkF7Mt6N3PQWuukRhkw3dBr8,601
|
|
278
278
|
bpy/path/__init__.pyi,sha256=emlV7ocbsOuOSMzxJXr6ldKRk2-_K0DWlKc3Ylt5dsU,5484
|
|
279
|
-
bpy/props/__init__.pyi,sha256=
|
|
280
|
-
bpy/types/__init__.pyi,sha256=
|
|
279
|
+
bpy/props/__init__.pyi,sha256=Ky1J5ndL8p_pvAaQakudyKKVynbr1NxXvzoN-5E9_I0,35237
|
|
280
|
+
bpy/types/__init__.pyi,sha256=UkGp2Y6Uu332yoKN7CwVq_Y2NV_0qWH7J9aVeUFDbQA,5422990
|
|
281
281
|
bpy/utils/__init__.pyi,sha256=Dwq7WFMz4vZM6bcYjsWYj9mYm1SDnqESf0d0UPX4xPE,14897
|
|
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-20250201.dist-info/METADATA,sha256=kWZKI4Di3bIuakfWrmR8DXkR_3dICYVcHcWPsgunpmI,7429
|
|
363
|
+
fake_bpy_module-20250201.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
|
364
|
+
fake_bpy_module-20250201.dist-info/top_level.txt,sha256=SZm3DVRKif7dFSjYKiIIg3_7uqjIwRAwOnCIcT4hRNM,500
|
|
365
|
+
fake_bpy_module-20250201.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|