fake-bpy-module 20250409__py3-none-any.whl → 20250410__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_curve/__init__.pyi +0 -31
- bl_ui/space_view3d/__init__.pyi +35 -0
- bpy/ops/wm/__init__.pyi +4 -4
- bpy/types/__init__.pyi +2 -2
- {fake_bpy_module-20250409.dist-info → fake_bpy_module-20250410.dist-info}/METADATA +1 -1
- {fake_bpy_module-20250409.dist-info → fake_bpy_module-20250410.dist-info}/RECORD +10 -10
- freestyle/utils/__init__.pyi +1 -1
- gpu_extras/batch/__init__.pyi +2 -3
- {fake_bpy_module-20250409.dist-info → fake_bpy_module-20250410.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20250409.dist-info → fake_bpy_module-20250410.dist-info}/top_level.txt +0 -0
|
@@ -18,37 +18,6 @@ class CurveButtonsPanel:
|
|
|
18
18
|
:param context:
|
|
19
19
|
"""
|
|
20
20
|
|
|
21
|
-
class DATA_PT_active_spline(CurveButtonsPanelActive, bpy.types.Panel):
|
|
22
|
-
"""Same as above but for curves only"""
|
|
23
|
-
|
|
24
|
-
bl_context: typing.Any
|
|
25
|
-
bl_label: typing.Any
|
|
26
|
-
bl_options: typing.Any
|
|
27
|
-
bl_region_type: typing.Any
|
|
28
|
-
bl_rna: typing.Any
|
|
29
|
-
bl_space_type: typing.Any
|
|
30
|
-
id_data: typing.Any
|
|
31
|
-
|
|
32
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
33
|
-
"""
|
|
34
|
-
|
|
35
|
-
:return: The RNA type or default when not found.
|
|
36
|
-
:rtype: bpy.types.Struct
|
|
37
|
-
"""
|
|
38
|
-
|
|
39
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
40
|
-
"""
|
|
41
|
-
|
|
42
|
-
:return: The class or default when not found.
|
|
43
|
-
:rtype: typing.Any
|
|
44
|
-
"""
|
|
45
|
-
|
|
46
|
-
def draw(self, context):
|
|
47
|
-
"""
|
|
48
|
-
|
|
49
|
-
:param context:
|
|
50
|
-
"""
|
|
51
|
-
|
|
52
21
|
class DATA_PT_context_curve(CurveButtonsPanel, bpy.types.Panel):
|
|
53
22
|
bl_context: typing.Any
|
|
54
23
|
bl_label: typing.Any
|
bl_ui/space_view3d/__init__.pyi
CHANGED
|
@@ -5036,6 +5036,41 @@ class VIEW3D_MT_wpaint_vgroup_lock_pie(bpy.types.Menu):
|
|
|
5036
5036
|
:param _context:
|
|
5037
5037
|
"""
|
|
5038
5038
|
|
|
5039
|
+
class VIEW3D_PT_active_spline(bpy.types.Panel):
|
|
5040
|
+
bl_category: typing.Any
|
|
5041
|
+
bl_label: typing.Any
|
|
5042
|
+
bl_region_type: typing.Any
|
|
5043
|
+
bl_rna: typing.Any
|
|
5044
|
+
bl_space_type: typing.Any
|
|
5045
|
+
id_data: typing.Any
|
|
5046
|
+
|
|
5047
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
5048
|
+
"""
|
|
5049
|
+
|
|
5050
|
+
:return: The RNA type or default when not found.
|
|
5051
|
+
:rtype: bpy.types.Struct
|
|
5052
|
+
"""
|
|
5053
|
+
|
|
5054
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
5055
|
+
"""
|
|
5056
|
+
|
|
5057
|
+
:return: The class or default when not found.
|
|
5058
|
+
:rtype: typing.Any
|
|
5059
|
+
"""
|
|
5060
|
+
|
|
5061
|
+
def draw(self, context):
|
|
5062
|
+
"""
|
|
5063
|
+
|
|
5064
|
+
:param context:
|
|
5065
|
+
"""
|
|
5066
|
+
|
|
5067
|
+
@classmethod
|
|
5068
|
+
def poll(cls, context):
|
|
5069
|
+
"""
|
|
5070
|
+
|
|
5071
|
+
:param context:
|
|
5072
|
+
"""
|
|
5073
|
+
|
|
5039
5074
|
class VIEW3D_PT_active_tool(
|
|
5040
5075
|
bpy.types.Panel, bl_ui.space_toolsystem_common.ToolActivePanelHelper
|
|
5041
5076
|
):
|
bpy/ops/wm/__init__.pyi
CHANGED
|
@@ -2676,7 +2676,7 @@ def open_mainfile(
|
|
|
2676
2676
|
| None = "DEFAULT",
|
|
2677
2677
|
sort_method: str | None = "",
|
|
2678
2678
|
load_ui: bool | None = True,
|
|
2679
|
-
use_scripts: bool | None =
|
|
2679
|
+
use_scripts: bool | None = False,
|
|
2680
2680
|
display_file_selector: bool | None = True,
|
|
2681
2681
|
state: int | None = 0,
|
|
2682
2682
|
):
|
|
@@ -3889,7 +3889,7 @@ def recover_auto_save(
|
|
|
3889
3889
|
]
|
|
3890
3890
|
| None = "LIST_VERTICAL",
|
|
3891
3891
|
sort_method: str | None = "",
|
|
3892
|
-
use_scripts: bool | None =
|
|
3892
|
+
use_scripts: bool | None = False,
|
|
3893
3893
|
):
|
|
3894
3894
|
"""Open an automatically saved file to recover it
|
|
3895
3895
|
|
|
@@ -3962,7 +3962,7 @@ def recover_last_session(
|
|
|
3962
3962
|
undo: bool | None = None,
|
|
3963
3963
|
/,
|
|
3964
3964
|
*,
|
|
3965
|
-
use_scripts: bool | None =
|
|
3965
|
+
use_scripts: bool | None = False,
|
|
3966
3966
|
):
|
|
3967
3967
|
"""Open the last closed file ("quit.blend")
|
|
3968
3968
|
|
|
@@ -4028,7 +4028,7 @@ def revert_mainfile(
|
|
|
4028
4028
|
undo: bool | None = None,
|
|
4029
4029
|
/,
|
|
4030
4030
|
*,
|
|
4031
|
-
use_scripts: bool | None =
|
|
4031
|
+
use_scripts: bool | None = False,
|
|
4032
4032
|
):
|
|
4033
4033
|
"""Reload the saved file
|
|
4034
4034
|
|
bpy/types/__init__.pyi
CHANGED
|
@@ -239272,8 +239272,6 @@ DATA_PT_EEVEE_light_influence: bl_ui.properties_data_light.DATA_PT_EEVEE_light_i
|
|
|
239272
239272
|
|
|
239273
239273
|
DATA_PT_EEVEE_light_shadow: bl_ui.properties_data_light.DATA_PT_EEVEE_light_shadow
|
|
239274
239274
|
|
|
239275
|
-
DATA_PT_active_spline: bl_ui.properties_data_curve.DATA_PT_active_spline
|
|
239276
|
-
|
|
239277
239275
|
DATA_PT_armature_animation: bl_ui.properties_data_armature.DATA_PT_armature_animation
|
|
239278
239276
|
|
|
239279
239277
|
DATA_PT_bone_collections: bl_ui.properties_data_armature.DATA_PT_bone_collections
|
|
@@ -241954,6 +241952,8 @@ VIEW3D_OT_edit_mesh_extrude_manifold_normal: bl_operators.view3d.VIEW3D_OT_edit_
|
|
|
241954
241952
|
|
|
241955
241953
|
VIEW3D_OT_transform_gizmo_set: bl_operators.view3d.VIEW3D_OT_transform_gizmo_set
|
|
241956
241954
|
|
|
241955
|
+
VIEW3D_PT_active_spline: bl_ui.space_view3d.VIEW3D_PT_active_spline
|
|
241956
|
+
|
|
241957
241957
|
VIEW3D_PT_active_tool: bl_ui.space_view3d.VIEW3D_PT_active_tool
|
|
241958
241958
|
|
|
241959
241959
|
VIEW3D_PT_active_tool_duplicate: bl_ui.space_view3d.VIEW3D_PT_active_tool_duplicate
|
|
@@ -115,7 +115,7 @@ bl_ui/properties_constraint/__init__.pyi,sha256=nj10LQBzyDz2xz7WM8WQVXeWENM2yCxi
|
|
|
115
115
|
bl_ui/properties_data_armature/__init__.pyi,sha256=g4giysz8xZMoHN650_t38UgM2B2A8IGBjWv4qsKXDUk,13212
|
|
116
116
|
bl_ui/properties_data_bone/__init__.pyi,sha256=BWNPv2mQT6P49cllkpKkbcfaWodbaobXolk0wpyKQg4,7997
|
|
117
117
|
bl_ui/properties_data_camera/__init__.pyi,sha256=Vq_h0MKR0dISOygP8hSKj3Z1oDnxsW2T77pdTnHQ93Y,11866
|
|
118
|
-
bl_ui/properties_data_curve/__init__.pyi,sha256=
|
|
118
|
+
bl_ui/properties_data_curve/__init__.pyi,sha256=cpWPAHfU7IRX7717FvlSI1lI6lBEBFWSFsfhMBh4EbA,12173
|
|
119
119
|
bl_ui/properties_data_curves/__init__.pyi,sha256=CY7HvjMyxitHOKy11So1KJNEYr9W5sl4XvojkcuL6-U,6480
|
|
120
120
|
bl_ui/properties_data_empty/__init__.pyi,sha256=E6BYHmqfgmJB1A7_OQbOk36PpxAtfzjSi0LcYExUieg,1706
|
|
121
121
|
bl_ui/properties_data_grease_pencil/__init__.pyi,sha256=CSeFEFGo2z93sDqfpD_OmcPPf5OjnpgtQrhhGdcZkoI,15538
|
|
@@ -173,7 +173,7 @@ bl_ui/space_toolsystem_common/__init__.pyi,sha256=u9fq0qxsCYtwB6CEJHjkfbrkj4uDxd
|
|
|
173
173
|
bl_ui/space_toolsystem_toolbar/__init__.pyi,sha256=nw4_dyzrE9gxIsDHRKDqQG6V6tQYZWcD-2wQzALvKp4,9973
|
|
174
174
|
bl_ui/space_topbar/__init__.pyi,sha256=8JXrYqbiPLGQTsbcniOLTaAhvhtkLSaTFmikzMMH5Zo,15343
|
|
175
175
|
bl_ui/space_userpref/__init__.pyi,sha256=SwWBb-YWDose1At4BoXvs9YUtkz3YwyjazkkmkGVAYY,79607
|
|
176
|
-
bl_ui/space_view3d/__init__.pyi,sha256=
|
|
176
|
+
bl_ui/space_view3d/__init__.pyi,sha256=ti9fWwn2LavDNpDzziuZP0Iq_YhZocwm9TZpc_QRW9I,157186
|
|
177
177
|
bl_ui/space_view3d_toolbar/__init__.pyi,sha256=Ustue-nkysid6xip9XciEHWqCROHnUVF_FTFaXryQjw,76322
|
|
178
178
|
bl_ui/utils/__init__.pyi,sha256=wzUQN8iooBJnE-iFedHD1cTNBwFUmwZN6d2jwfRIK5Y,510
|
|
179
179
|
bl_ui_utils/__init__.pyi,sha256=6yinHCNictVwPqgqerb5zXorsqM0cqPLmz_r8ms1XeE,89
|
|
@@ -274,12 +274,12 @@ bpy/ops/uilist/__init__.pyi,sha256=CvereEDgN2sNfwlFl55E3sGeLTcaUcTCowuL1XVlclE,1
|
|
|
274
274
|
bpy/ops/uv/__init__.pyi,sha256=nVZbRNLymiV8kXoRxWWNRSq72QkPBHTtwifjBxyVINY,45463
|
|
275
275
|
bpy/ops/view2d/__init__.pyi,sha256=-ofLmKQJ0PqTP5b_mT2JHGo-Jf7aa3qeEf1nsmJQf50,7013
|
|
276
276
|
bpy/ops/view3d/__init__.pyi,sha256=aXMqdXx6xsF4xVyb_R86Q_7Xbup6GhCBIwW5UydHUfg,30881
|
|
277
|
-
bpy/ops/wm/__init__.pyi,sha256=
|
|
277
|
+
bpy/ops/wm/__init__.pyi,sha256=rTB8FuFxpeEtjauUJTlXiv540U0ke8Ahq37jS7kaa2M,216201
|
|
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=yGX45MUnn9fJYw32UWTsBQ646iN5DbbxfvnoDkREWvI,5537
|
|
281
281
|
bpy/props/__init__.pyi,sha256=4SYl5qfPLRwe3zGyHowQy_i_mU-gjImdiqidFOHP6Tc,35264
|
|
282
|
-
bpy/types/__init__.pyi,sha256=
|
|
282
|
+
bpy/types/__init__.pyi,sha256=ssZESpVBsK7TvmE9g3C1cz929AMNcmuHcuwPdXJKODQ,5585222
|
|
283
283
|
bpy/utils/__init__.pyi,sha256=NwKl40t0SfvM2Lce9VmXS9zh6T-ZE1JxleSh9te_d5E,15351
|
|
284
284
|
bpy/utils/previews/__init__.pyi,sha256=kgH-eG4DeJ9HRPdzOQOBmITEN2czD7lQ0JhBoWtrRgw,2313
|
|
285
285
|
bpy/utils/units/__init__.pyi,sha256=dc9ZViPAqOap5ZsFfWoI0d6bHdri3pWWiVeRxAaZr-U,2672
|
|
@@ -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=zVeZ4mRNYZyEgbp-j6uZ6ZQTpWFGh7j3R8UT9JOZ_0w,8026
|
|
320
320
|
gpu/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -328,7 +328,7 @@ gpu/texture/__init__.pyi,sha256=eXL-ZQU-gsMFo_Yv6ShF_YjBQ-yPDLRZno-T3P59nhE,668
|
|
|
328
328
|
gpu/types/__init__.pyi,sha256=9wnXX8CdoIPTRMxWLEEiwmDi8Xj0-_lovIxRZ5BEKaM,29330
|
|
329
329
|
gpu_extras/__init__.pyi,sha256=XscwC-5DTPC0yc2HB_XMgvX61rT5Qs5RaImqNwR6c40,240
|
|
330
330
|
gpu_extras/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
331
|
-
gpu_extras/batch/__init__.pyi,sha256=
|
|
331
|
+
gpu_extras/batch/__init__.pyi,sha256=0z8rIEm4SFuC-rUGyoOMU0L6i_TsaW5nJN9cGR6u40Y,1306
|
|
332
332
|
gpu_extras/presets/__init__.pyi,sha256=9MrG1r0CUOxBYWyp_vZSYxs47oElIxca1uMyuFPLKdw,1674
|
|
333
333
|
graphviz_export/__init__.pyi,sha256=_breciGLRC6qTh-HOor-Ufn_fI5HXnoQego6mmvTAIQ,242
|
|
334
334
|
graphviz_export/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-20250410.dist-info/METADATA,sha256=nOVNjvOymLMIM8kfCBbxdDF9Ck_BmdonIIjRz9F-Iv4,7429
|
|
365
|
+
fake_bpy_module-20250410.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
|
|
366
|
+
fake_bpy_module-20250410.dist-info/top_level.txt,sha256=SZm3DVRKif7dFSjYKiIIg3_7uqjIwRAwOnCIcT4hRNM,500
|
|
367
|
+
fake_bpy_module-20250410.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):
|
gpu_extras/batch/__init__.pyi
CHANGED
|
@@ -2,7 +2,6 @@ import typing
|
|
|
2
2
|
import collections.abc
|
|
3
3
|
import typing_extensions
|
|
4
4
|
import numpy.typing as npt
|
|
5
|
-
import bgl
|
|
6
5
|
import gpu.types
|
|
7
6
|
|
|
8
7
|
def batch_for_shader(
|
|
@@ -10,7 +9,7 @@ def batch_for_shader(
|
|
|
10
9
|
type: str,
|
|
11
10
|
content: dict[
|
|
12
11
|
str,
|
|
13
|
-
|
|
12
|
+
gpu.types.Buffer
|
|
14
13
|
| collections.abc.Sequence[float]
|
|
15
14
|
| collections.abc.Sequence[int]
|
|
16
15
|
| collections.abc.Sequence[collections.abc.Sequence[float]]
|
|
@@ -27,7 +26,7 @@ def batch_for_shader(
|
|
|
27
26
|
:type type: str
|
|
28
27
|
:param content: Maps the name of the shader attribute with the data to fill the vertex buffer.
|
|
29
28
|
For the dictionary values see documentation for `gpu.types.GPUVertBuf.attr_fill` data argument.
|
|
30
|
-
:type content: dict[str,
|
|
29
|
+
:type content: dict[str, gpu.types.Buffer | collections.abc.Sequence[float] | collections.abc.Sequence[int] | collections.abc.Sequence[collections.abc.Sequence[float]] | collections.abc.Sequence[collections.abc.Sequence[int]]]
|
|
31
30
|
:return: compatible batch
|
|
32
31
|
:rtype: gpu.types.GPUBatch
|
|
33
32
|
"""
|
|
File without changes
|
|
File without changes
|