fake-bpy-module 20241214__py3-none-any.whl → 20241215__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/properties_data_modifier/__init__.pyi +0 -36
- bpy/types/__init__.pyi +10 -2
- {fake_bpy_module-20241214.dist-info → fake_bpy_module-20241215.dist-info}/METADATA +1 -1
- {fake_bpy_module-20241214.dist-info → fake_bpy_module-20241215.dist-info}/RECORD +9 -9
- freestyle/utils/__init__.pyi +1 -1
- gpu_extras/batch/__init__.pyi +3 -2
- mathutils/__init__.pyi +2 -2
- {fake_bpy_module-20241214.dist-info → fake_bpy_module-20241215.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20241214.dist-info → fake_bpy_module-20241215.dist-info}/top_level.txt +0 -0
|
@@ -37,42 +37,6 @@ class AddModifierMenu(bpy.types.Operator):
|
|
|
37
37
|
:param context:
|
|
38
38
|
"""
|
|
39
39
|
|
|
40
|
-
class DATA_PT_gpencil_modifiers(ModifierButtonsPanel, bpy.types.Panel):
|
|
41
|
-
bl_context: typing.Any
|
|
42
|
-
bl_label: typing.Any
|
|
43
|
-
bl_options: typing.Any
|
|
44
|
-
bl_region_type: typing.Any
|
|
45
|
-
bl_rna: typing.Any
|
|
46
|
-
bl_space_type: typing.Any
|
|
47
|
-
id_data: typing.Any
|
|
48
|
-
|
|
49
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
50
|
-
"""
|
|
51
|
-
|
|
52
|
-
:return: The RNA type or default when not found.
|
|
53
|
-
:rtype: bpy.types.Struct
|
|
54
|
-
"""
|
|
55
|
-
|
|
56
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
57
|
-
"""
|
|
58
|
-
|
|
59
|
-
:return: The class or default when not found.
|
|
60
|
-
:rtype: typing.Any
|
|
61
|
-
"""
|
|
62
|
-
|
|
63
|
-
def draw(self, _context):
|
|
64
|
-
"""
|
|
65
|
-
|
|
66
|
-
:param _context:
|
|
67
|
-
"""
|
|
68
|
-
|
|
69
|
-
@classmethod
|
|
70
|
-
def poll(cls, context):
|
|
71
|
-
"""
|
|
72
|
-
|
|
73
|
-
:param context:
|
|
74
|
-
"""
|
|
75
|
-
|
|
76
40
|
class DATA_PT_modifiers(ModifierButtonsPanel, bpy.types.Panel):
|
|
77
41
|
bl_context: typing.Any
|
|
78
42
|
bl_label: typing.Any
|
bpy/types/__init__.pyi
CHANGED
|
@@ -8848,6 +8848,7 @@ The USDHookExample
|
|
|
8848
8848
|
* NodeTree.bl_label
|
|
8849
8849
|
* NodeTree.bl_description
|
|
8850
8850
|
* NodeTree.bl_icon
|
|
8851
|
+
* NodeTree.bl_use_group_interface
|
|
8851
8852
|
|
|
8852
8853
|
:columns: 2
|
|
8853
8854
|
|
|
@@ -59565,6 +59566,7 @@ Base class for integrating USD Hydra based renderers.
|
|
|
59565
59566
|
* NodeTree.bl_label
|
|
59566
59567
|
* NodeTree.bl_description
|
|
59567
59568
|
* NodeTree.bl_icon
|
|
59569
|
+
* NodeTree.bl_use_group_interface
|
|
59568
59570
|
|
|
59569
59571
|
:columns: 2
|
|
59570
59572
|
|
|
@@ -87690,6 +87692,7 @@ example of how to create/use filtering/reordering callbacks.
|
|
|
87690
87692
|
* NodeTree.bl_label
|
|
87691
87693
|
* NodeTree.bl_description
|
|
87692
87694
|
* NodeTree.bl_icon
|
|
87695
|
+
* NodeTree.bl_use_group_interface
|
|
87693
87696
|
|
|
87694
87697
|
:columns: 2
|
|
87695
87698
|
|
|
@@ -98109,6 +98112,7 @@ FileHandler
|
|
|
98109
98112
|
* NodeTree.bl_label
|
|
98110
98113
|
* NodeTree.bl_description
|
|
98111
98114
|
* NodeTree.bl_icon
|
|
98115
|
+
* NodeTree.bl_use_group_interface
|
|
98112
98116
|
|
|
98113
98117
|
:columns: 2
|
|
98114
98118
|
|
|
@@ -181107,6 +181111,12 @@ class NodeTree(ID, bpy_struct):
|
|
|
181107
181111
|
:type: str
|
|
181108
181112
|
"""
|
|
181109
181113
|
|
|
181114
|
+
bl_use_group_interface: bool
|
|
181115
|
+
""" Determines the visibility of some UI elements related to node groups
|
|
181116
|
+
|
|
181117
|
+
:type: bool
|
|
181118
|
+
"""
|
|
181119
|
+
|
|
181110
181120
|
color_tag: typing.Literal[
|
|
181111
181121
|
"NONE",
|
|
181112
181122
|
"ATTRIBUTE",
|
|
@@ -232477,8 +232487,6 @@ DATA_PT_geometry_curve_bevel: bl_ui.properties_data_curve.DATA_PT_geometry_curve
|
|
|
232477
232487
|
|
|
232478
232488
|
DATA_PT_geometry_curve_start_end: bl_ui.properties_data_curve.DATA_PT_geometry_curve_start_end
|
|
232479
232489
|
|
|
232480
|
-
DATA_PT_gpencil_modifiers: bl_ui.properties_data_modifier.DATA_PT_gpencil_modifiers
|
|
232481
|
-
|
|
232482
232490
|
DATA_PT_grease_pencil_animation: bl_ui.properties_data_grease_pencil.DATA_PT_grease_pencil_animation
|
|
232483
232491
|
|
|
232484
232492
|
DATA_PT_grease_pencil_attributes: bl_ui.properties_data_grease_pencil.DATA_PT_grease_pencil_attributes
|
|
@@ -123,7 +123,7 @@ bl_ui/properties_data_light/__init__.pyi,sha256=Q4jh6kmNDqhw5u3An4gSPhlPnzMZMUb-
|
|
|
123
123
|
bl_ui/properties_data_lightprobe/__init__.pyi,sha256=micXmIresZ3nptUhIKrsUe7dMYQkTd-H2SMi-kkMysg,10705
|
|
124
124
|
bl_ui/properties_data_mesh/__init__.pyi,sha256=hWBZZPK5TqPdyBAfBdRHRyGNmPbHLDiYGpOpigonZDo,16244
|
|
125
125
|
bl_ui/properties_data_metaball/__init__.pyi,sha256=GTLKKm2LsSSnLGT4axvIaxl6kfRumd5jEbstYckuVhE,4766
|
|
126
|
-
bl_ui/properties_data_modifier/__init__.pyi,sha256=
|
|
126
|
+
bl_ui/properties_data_modifier/__init__.pyi,sha256=6qpCFhrlQZqDXa_RPgar562kHiBiCokFtq5umFJX2ac,6878
|
|
127
127
|
bl_ui/properties_data_pointcloud/__init__.pyi,sha256=k_kGJpcpz11D2Rhs_9kR-P4Rw4SRhi2iC-rau-DxagE,4239
|
|
128
128
|
bl_ui/properties_data_shaderfx/__init__.pyi,sha256=qheRKCM-zgYYTypVdyJrjqgmD1yBXQVlsrlWUwoHsFg,859
|
|
129
129
|
bl_ui/properties_data_speaker/__init__.pyi,sha256=YRayS4IxkfcvwOAJlqfSL4kjzBcaqo3gf-hmM0fcVeo,4857
|
|
@@ -275,7 +275,7 @@ bpy/ops/workspace/__init__.pyi,sha256=BHvDV5CcVBnuKaL8akhm-Es7VcGUjf3jGFTbfx5YHC
|
|
|
275
275
|
bpy/ops/world/__init__.pyi,sha256=pBV8EDA8HoWovDSul6mxkF7Mt6N3PQWuukRhkw3dBr8,601
|
|
276
276
|
bpy/path/__init__.pyi,sha256=N-QNSw3piTmrzrydYRyWab7GFGOh3BsdaS91x4Kf-Cc,5403
|
|
277
277
|
bpy/props/__init__.pyi,sha256=eHzPsDSyDTa92O5TvPpi1yflmxv7vVGW_ZocCqudgw4,31027
|
|
278
|
-
bpy/types/__init__.pyi,sha256=
|
|
278
|
+
bpy/types/__init__.pyi,sha256=xn_6NpN468qRYClgTnYICxwV1NzxTL9gYFHgc9Eb3EU,5401079
|
|
279
279
|
bpy/typing/__init__.pyi,sha256=u2XKjd6ZB1Wjt7JwabxexZdswEZLYR2jQpxzzp6AThg,138679
|
|
280
280
|
bpy/utils/__init__.pyi,sha256=wvjdEDEtBn5bR5pZG7HnW1ZdL_J-IQYvmB7e4AwTW0s,13537
|
|
281
281
|
bpy/utils/previews/__init__.pyi,sha256=AsbDN4vRLbSTZ7_S_4LqmI1sJmV_8NnqDt1QfBdH94Y,2280
|
|
@@ -311,7 +311,7 @@ freestyle/functions/__init__.pyi,sha256=sEPnGHwZm8XBlfE7CKLros3CKJlAh1h1FI74nBTE
|
|
|
311
311
|
freestyle/predicates/__init__.pyi,sha256=TI-9arpIRbq7ePsxHS-d-4iIj54uHMp-ZyGhPVODMPg,13461
|
|
312
312
|
freestyle/shaders/__init__.pyi,sha256=1Ov48B4P7LV3dwjBqHqqqbPFRBZWjENqIDaFb97Qdj0,23835
|
|
313
313
|
freestyle/types/__init__.pyi,sha256=p6WoVuWvAdGxcKMvxz-IrMbZiBTML9cbjgwgj-QnyI8,100051
|
|
314
|
-
freestyle/utils/__init__.pyi,sha256=
|
|
314
|
+
freestyle/utils/__init__.pyi,sha256=lW5JWrilkFTvRmtYoS3hbmWfj2abo2hHsvp4eyGLbcQ,5108
|
|
315
315
|
freestyle/utils/ContextFunctions/__init__.pyi,sha256=fPDfiBEjpoqXQhBhmHJ6WxG9oLMItwQ32MxKQz_c9_I,3445
|
|
316
316
|
gpu/__init__.pyi,sha256=Q-AbyJO85pPYcwXNWtvgAhFGGJ6OnnHrlsXQxur9jhs,7999
|
|
317
317
|
gpu/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -325,7 +325,7 @@ gpu/texture/__init__.pyi,sha256=NWixhD9M2vFrAIWlQDM0Co-CNRiU7BbL7imkSOloHHI,641
|
|
|
325
325
|
gpu/types/__init__.pyi,sha256=3irdUxznJA1-vvflQGps24-pxPBxopb_eOtUkiiw25I,26846
|
|
326
326
|
gpu_extras/__init__.pyi,sha256=oNgtMNheClZ_iCmKSH63hBJ4U0huayOWKil-qPvYHds,213
|
|
327
327
|
gpu_extras/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
328
|
-
gpu_extras/batch/__init__.pyi,sha256=
|
|
328
|
+
gpu_extras/batch/__init__.pyi,sha256=tgSLHYF1sb3LZuu6iJ6l6tNmLCknXid9wy3_L7xp2j8,855
|
|
329
329
|
gpu_extras/presets/__init__.pyi,sha256=XARWkuQ0koiQPC3Cjh2l7D2f9n3IgHRf5Ymd9xKkjBg,1435
|
|
330
330
|
graphviz_export/__init__.pyi,sha256=LBiepSfMSL7Qix8FZ6LYKmbPgu1AHRvRw3yHDDWYrEw,215
|
|
331
331
|
graphviz_export/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -339,7 +339,7 @@ keyingsets_builtins/__init__.pyi,sha256=FmSnRj8eAiQ_O-X_-kAHM_a8rCv_HZBrjXLXDRss
|
|
|
339
339
|
keyingsets_builtins/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
340
340
|
keyingsets_utils/__init__.pyi,sha256=UpGuAqOVl6bmy3rffJhqFS8ZKhUtAV-MfVyuuHtqXQI,770
|
|
341
341
|
keyingsets_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
342
|
-
mathutils/__init__.pyi,sha256=
|
|
342
|
+
mathutils/__init__.pyi,sha256=L4zURTaeuRGKca7u14jBdZEYlUSBwXQwe2QKPpWqA_Y,88319
|
|
343
343
|
mathutils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
344
344
|
mathutils/bvhtree/__init__.pyi,sha256=tnSMnnlM4AUV5BXMVRB8daXeBCc2dt1yF2VhVgx-png,4482
|
|
345
345
|
mathutils/geometry/__init__.pyi,sha256=YU4LyVtd5nl5KJeVsbOcWMNZhJlI9TQWIWJ5V-nrkz0,22182
|
|
@@ -358,7 +358,7 @@ rna_prop_ui/__init__.pyi,sha256=lShhkbbeJ_ANi2dy4J4HIkyp1HZrMqCfhcf8QpAQsj0,1281
|
|
|
358
358
|
rna_prop_ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
359
359
|
rna_xml/__init__.pyi,sha256=idYsAZj-_egBKMA2pQl2P9IoNhZxXIkBSALFuq-ylO8,577
|
|
360
360
|
rna_xml/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
361
|
-
fake_bpy_module-
|
|
362
|
-
fake_bpy_module-
|
|
363
|
-
fake_bpy_module-
|
|
364
|
-
fake_bpy_module-
|
|
361
|
+
fake_bpy_module-20241215.dist-info/METADATA,sha256=qEdzOqZ6VEo9W91NpbjI7ZtVhCwvGTvcrHHtQBy3LWI,7289
|
|
362
|
+
fake_bpy_module-20241215.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
|
363
|
+
fake_bpy_module-20241215.dist-info/top_level.txt,sha256=SZm3DVRKif7dFSjYKiIIg3_7uqjIwRAwOnCIcT4hRNM,500
|
|
364
|
+
fake_bpy_module-20241215.dist-info/RECORD,,
|
freestyle/utils/__init__.pyi
CHANGED
|
@@ -124,7 +124,7 @@ def material_from_fedge(fe):
|
|
|
124
124
|
"""get the diffuse RGBA color from an FEdge"""
|
|
125
125
|
|
|
126
126
|
def normal_at_I0D(it): ...
|
|
127
|
-
def pairwise(iterable, types={
|
|
127
|
+
def pairwise(iterable, types={Stroke, StrokeVertexIterator}):
|
|
128
128
|
"""Yields a tuple containing the previous and current object"""
|
|
129
129
|
|
|
130
130
|
def rgb_to_bw(r, g, b):
|
gpu_extras/batch/__init__.pyi
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
import typing
|
|
2
2
|
import collections.abc
|
|
3
3
|
import typing_extensions
|
|
4
|
+
import bgl
|
|
4
5
|
import gpu.types
|
|
5
6
|
|
|
6
7
|
def batch_for_shader(
|
|
7
8
|
shader: gpu.types.GPUShader,
|
|
8
9
|
type: str,
|
|
9
|
-
content: dict[str,
|
|
10
|
+
content: dict[str, bgl.Buffer],
|
|
10
11
|
*,
|
|
11
12
|
indices=None,
|
|
12
13
|
) -> gpu.types.GPUBatch:
|
|
@@ -18,7 +19,7 @@ def batch_for_shader(
|
|
|
18
19
|
:type type: str
|
|
19
20
|
:param content: Maps the name of the shader attribute with the data to fill the vertex buffer.
|
|
20
21
|
For the dictionary values see documentation for `gpu.types.GPUVertBuf.attr_fill` data argument.
|
|
21
|
-
:type content: dict[str,
|
|
22
|
+
:type content: dict[str, bgl.Buffer]
|
|
22
23
|
:return: compatible batch
|
|
23
24
|
:rtype: gpu.types.GPUBatch
|
|
24
25
|
"""
|
mathutils/__init__.pyi
CHANGED
|
@@ -3872,13 +3872,13 @@ class Vector:
|
|
|
3872
3872
|
:rtype: Quaternion
|
|
3873
3873
|
"""
|
|
3874
3874
|
|
|
3875
|
-
def to_tuple(self, precision: int = -1) -> tuple[float]:
|
|
3875
|
+
def to_tuple(self, precision: int = -1) -> tuple[float, int]:
|
|
3876
3876
|
"""Return this vector as a tuple with.
|
|
3877
3877
|
|
|
3878
3878
|
:param precision: The number to round the value to in [-1, 21].
|
|
3879
3879
|
:type precision: int
|
|
3880
3880
|
:return: the values of the vector rounded by precision
|
|
3881
|
-
:rtype: tuple[float]
|
|
3881
|
+
:rtype: tuple[float, int]
|
|
3882
3882
|
"""
|
|
3883
3883
|
|
|
3884
3884
|
def zero(self):
|
|
File without changes
|
|
File without changes
|