fake-bge-module-latest 20241216__py3-none-any.whl → 20241217__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.
- bl_ui/properties_data_modifier/__init__.pyi +0 -36
- bpy/types/__init__.pyi +10 -2
- {fake_bge_module_latest-20241216.dist-info → fake_bge_module_latest-20241217.dist-info}/METADATA +1 -1
- {fake_bge_module_latest-20241216.dist-info → fake_bge_module_latest-20241217.dist-info}/RECORD +7 -7
- freestyle/utils/__init__.pyi +1 -1
- {fake_bge_module_latest-20241216.dist-info → fake_bge_module_latest-20241217.dist-info}/WHEEL +0 -0
- {fake_bge_module_latest-20241216.dist-info → fake_bge_module_latest-20241217.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
|
@@ -9076,6 +9076,7 @@ The USDHookExample
|
|
|
9076
9076
|
* NodeTree.bl_label
|
|
9077
9077
|
* NodeTree.bl_description
|
|
9078
9078
|
* NodeTree.bl_icon
|
|
9079
|
+
* NodeTree.bl_use_group_interface
|
|
9079
9080
|
|
|
9080
9081
|
:columns: 2
|
|
9081
9082
|
|
|
@@ -61971,6 +61972,7 @@ Base class for integrating USD Hydra based renderers.
|
|
|
61971
61972
|
* NodeTree.bl_label
|
|
61972
61973
|
* NodeTree.bl_description
|
|
61973
61974
|
* NodeTree.bl_icon
|
|
61975
|
+
* NodeTree.bl_use_group_interface
|
|
61974
61976
|
|
|
61975
61977
|
:columns: 2
|
|
61976
61978
|
|
|
@@ -91517,6 +91519,7 @@ example of how to create/use filtering/reordering callbacks.
|
|
|
91517
91519
|
* NodeTree.bl_label
|
|
91518
91520
|
* NodeTree.bl_description
|
|
91519
91521
|
* NodeTree.bl_icon
|
|
91522
|
+
* NodeTree.bl_use_group_interface
|
|
91520
91523
|
|
|
91521
91524
|
:columns: 2
|
|
91522
91525
|
|
|
@@ -102278,6 +102281,7 @@ FileHandler
|
|
|
102278
102281
|
* NodeTree.bl_label
|
|
102279
102282
|
* NodeTree.bl_description
|
|
102280
102283
|
* NodeTree.bl_icon
|
|
102284
|
+
* NodeTree.bl_use_group_interface
|
|
102281
102285
|
|
|
102282
102286
|
:columns: 2
|
|
102283
102287
|
|
|
@@ -188026,6 +188030,12 @@ class NodeTree(ID, bpy_struct):
|
|
|
188026
188030
|
:type: str
|
|
188027
188031
|
"""
|
|
188028
188032
|
|
|
188033
|
+
bl_use_group_interface: bool
|
|
188034
|
+
""" Determines the visibility of some UI elements related to node groups
|
|
188035
|
+
|
|
188036
|
+
:type: bool
|
|
188037
|
+
"""
|
|
188038
|
+
|
|
188029
188039
|
color_tag: typing.Literal[
|
|
188030
188040
|
"NONE",
|
|
188031
188041
|
"ATTRIBUTE",
|
|
@@ -242767,8 +242777,6 @@ DATA_PT_geometry_curve_bevel: bl_ui.properties_data_curve.DATA_PT_geometry_curve
|
|
|
242767
242777
|
|
|
242768
242778
|
DATA_PT_geometry_curve_start_end: bl_ui.properties_data_curve.DATA_PT_geometry_curve_start_end
|
|
242769
242779
|
|
|
242770
|
-
DATA_PT_gpencil_modifiers: bl_ui.properties_data_modifier.DATA_PT_gpencil_modifiers
|
|
242771
|
-
|
|
242772
242780
|
DATA_PT_grease_pencil_animation: bl_ui.properties_data_grease_pencil.DATA_PT_grease_pencil_animation
|
|
242773
242781
|
|
|
242774
242782
|
DATA_PT_grease_pencil_attributes: bl_ui.properties_data_grease_pencil.DATA_PT_grease_pencil_attributes
|
{fake_bge_module_latest-20241216.dist-info → fake_bge_module_latest-20241217.dist-info}/RECORD
RENAMED
|
@@ -145,7 +145,7 @@ bl_ui/properties_data_light/__init__.pyi,sha256=Q4jh6kmNDqhw5u3An4gSPhlPnzMZMUb-
|
|
|
145
145
|
bl_ui/properties_data_lightprobe/__init__.pyi,sha256=micXmIresZ3nptUhIKrsUe7dMYQkTd-H2SMi-kkMysg,10705
|
|
146
146
|
bl_ui/properties_data_mesh/__init__.pyi,sha256=hWBZZPK5TqPdyBAfBdRHRyGNmPbHLDiYGpOpigonZDo,16244
|
|
147
147
|
bl_ui/properties_data_metaball/__init__.pyi,sha256=GTLKKm2LsSSnLGT4axvIaxl6kfRumd5jEbstYckuVhE,4766
|
|
148
|
-
bl_ui/properties_data_modifier/__init__.pyi,sha256=
|
|
148
|
+
bl_ui/properties_data_modifier/__init__.pyi,sha256=6qpCFhrlQZqDXa_RPgar562kHiBiCokFtq5umFJX2ac,6878
|
|
149
149
|
bl_ui/properties_data_pointcloud/__init__.pyi,sha256=k_kGJpcpz11D2Rhs_9kR-P4Rw4SRhi2iC-rau-DxagE,4239
|
|
150
150
|
bl_ui/properties_data_shaderfx/__init__.pyi,sha256=qheRKCM-zgYYTypVdyJrjqgmD1yBXQVlsrlWUwoHsFg,859
|
|
151
151
|
bl_ui/properties_data_speaker/__init__.pyi,sha256=YRayS4IxkfcvwOAJlqfSL4kjzBcaqo3gf-hmM0fcVeo,4857
|
|
@@ -300,7 +300,7 @@ bpy/ops/workspace/__init__.pyi,sha256=4qG0-HkVfaGfdBe9QvBCKUox03nb1ZfeV1fz-0b3KJ
|
|
|
300
300
|
bpy/ops/world/__init__.pyi,sha256=ytaDhwJ-K4SbWylChL1za6lvMNM2-RX1S0BR7892Afg,946
|
|
301
301
|
bpy/path/__init__.pyi,sha256=b_M-IUy-VEWMDZJH0bP9P-HHcLLcQo59S1dARRQrP9E,5064
|
|
302
302
|
bpy/props/__init__.pyi,sha256=TfulJGBHgbMIc1aadTzLWiL6Q2NQdeO9Q4_ePasNesU,30717
|
|
303
|
-
bpy/types/__init__.pyi,sha256=
|
|
303
|
+
bpy/types/__init__.pyi,sha256=WbC_crqpVq2zY8rb7tFBTYaPonyT_XkMmbPj2x-jh3w,5628535
|
|
304
304
|
bpy/typing/__init__.pyi,sha256=3KI4vqpVn5OlaoxmsWH9LYKDmNxRYltoP_Jid2cSOnE,139452
|
|
305
305
|
bpy/utils/__init__.pyi,sha256=XXoE6J8aW13NQ-2FvnFORXyNVUFfO8hSno-xfgJ6ZNI,13078
|
|
306
306
|
bpy/utils/previews/__init__.pyi,sha256=XEThA7jxMWet1sPTJ3mmngM6LdAdKiIVSZOKbCsbvzw,2217
|
|
@@ -336,7 +336,7 @@ freestyle/functions/__init__.pyi,sha256=XYveitaHq0iT_FRPa9-h7r_Qz1kuEOknwlIDy5hR
|
|
|
336
336
|
freestyle/predicates/__init__.pyi,sha256=TI-9arpIRbq7ePsxHS-d-4iIj54uHMp-ZyGhPVODMPg,13461
|
|
337
337
|
freestyle/shaders/__init__.pyi,sha256=1Ov48B4P7LV3dwjBqHqqqbPFRBZWjENqIDaFb97Qdj0,23835
|
|
338
338
|
freestyle/types/__init__.pyi,sha256=Gqn4Lt8Z7R3JhDQDF70AhHcWw7v4zE3ot9CUXZAlsds,97165
|
|
339
|
-
freestyle/utils/__init__.pyi,sha256=
|
|
339
|
+
freestyle/utils/__init__.pyi,sha256=CrWHBvKHm2p1i7_ND1rQJLSjutpEx7YANq2OViTvXNs,5077
|
|
340
340
|
freestyle/utils/ContextFunctions/__init__.pyi,sha256=AdK38eLUN8YDE2Y-Am3gNUYxduClt0jmaDbr-WNv_cA,3401
|
|
341
341
|
gpu/__init__.pyi,sha256=Q-AbyJO85pPYcwXNWtvgAhFGGJ6OnnHrlsXQxur9jhs,7999
|
|
342
342
|
gpu/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -383,7 +383,7 @@ rna_prop_ui/__init__.pyi,sha256=lShhkbbeJ_ANi2dy4J4HIkyp1HZrMqCfhcf8QpAQsj0,1281
|
|
|
383
383
|
rna_prop_ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
384
384
|
rna_xml/__init__.pyi,sha256=idYsAZj-_egBKMA2pQl2P9IoNhZxXIkBSALFuq-ylO8,577
|
|
385
385
|
rna_xml/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
386
|
-
fake_bge_module_latest-
|
|
387
|
-
fake_bge_module_latest-
|
|
388
|
-
fake_bge_module_latest-
|
|
389
|
-
fake_bge_module_latest-
|
|
386
|
+
fake_bge_module_latest-20241217.dist-info/METADATA,sha256=Pna_BF1TUg7iBagP9SYJotjQbpiVe89b9iYoeagJ63I,4794
|
|
387
|
+
fake_bge_module_latest-20241217.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
|
388
|
+
fake_bge_module_latest-20241217.dist-info/top_level.txt,sha256=G2g8DM6N1EXHQhWiW_lc0Dp7Tmqpop00oo_f2rdLQOU,520
|
|
389
|
+
fake_bge_module_latest-20241217.dist-info/RECORD,,
|
freestyle/utils/__init__.pyi
CHANGED
|
@@ -123,7 +123,7 @@ def material_from_fedge(fe):
|
|
|
123
123
|
"""get the diffuse RGBA color from an FEdge"""
|
|
124
124
|
|
|
125
125
|
def normal_at_I0D(it): ...
|
|
126
|
-
def pairwise(iterable, types={
|
|
126
|
+
def pairwise(iterable, types={StrokeVertexIterator, Stroke}):
|
|
127
127
|
"""Yields a tuple containing the previous and current object"""
|
|
128
128
|
|
|
129
129
|
def rgb_to_bw(r, g, b):
|
{fake_bge_module_latest-20241216.dist-info → fake_bge_module_latest-20241217.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|