fake-bpy-module 20240404__py3-none-any.whl → 20240405__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/space_userpref/__init__.pyi +2 -2
- bpy/ops/curves/__init__.pyi +31 -0
- bpy/ops/export_scene/__init__.pyi +4 -4
- bpy/ops/nla/__init__.pyi +2 -2
- bpy/types/__init__.pyi +35 -8
- {fake_bpy_module-20240404.dist-info → fake_bpy_module-20240405.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240404.dist-info → fake_bpy_module-20240405.dist-info}/RECORD +9 -9
- {fake_bpy_module-20240404.dist-info → fake_bpy_module-20240405.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240404.dist-info → fake_bpy_module-20240405.dist-info}/top_level.txt +0 -0
|
@@ -10493,10 +10493,10 @@ class USERPREF_PT_system_os_settings(bpy_types._GenericUI):
|
|
|
10493
10493
|
"""
|
|
10494
10494
|
...
|
|
10495
10495
|
|
|
10496
|
-
def draw_centered(self,
|
|
10496
|
+
def draw_centered(self, context, layout):
|
|
10497
10497
|
"""
|
|
10498
10498
|
|
|
10499
|
-
:param
|
|
10499
|
+
:param context:
|
|
10500
10500
|
:param layout:
|
|
10501
10501
|
"""
|
|
10502
10502
|
...
|
bpy/ops/curves/__init__.pyi
CHANGED
|
@@ -66,6 +66,37 @@ def convert_to_particle_system(
|
|
|
66
66
|
|
|
67
67
|
...
|
|
68
68
|
|
|
69
|
+
def curve_type_set(
|
|
70
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
71
|
+
execution_context: str = None,
|
|
72
|
+
undo: bool = None,
|
|
73
|
+
type: typing.Union[str, int] = "POLY",
|
|
74
|
+
):
|
|
75
|
+
"""Set type of selected curves
|
|
76
|
+
|
|
77
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
78
|
+
:type execution_context: str
|
|
79
|
+
:type undo: bool
|
|
80
|
+
:param type: Type, Curve type
|
|
81
|
+
:type type: typing.Union[str, int]
|
|
82
|
+
"""
|
|
83
|
+
|
|
84
|
+
...
|
|
85
|
+
|
|
86
|
+
def cyclic_toggle(
|
|
87
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
88
|
+
execution_context: str = None,
|
|
89
|
+
undo: bool = None,
|
|
90
|
+
):
|
|
91
|
+
"""Make active curve closed/opened loop
|
|
92
|
+
|
|
93
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
94
|
+
:type execution_context: str
|
|
95
|
+
:type undo: bool
|
|
96
|
+
"""
|
|
97
|
+
|
|
98
|
+
...
|
|
99
|
+
|
|
69
100
|
def delete(
|
|
70
101
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
71
102
|
execution_context: str = None,
|
|
@@ -19,12 +19,12 @@ def fbx(
|
|
|
19
19
|
use_space_transform: typing.Union[bool, typing.Any] = True,
|
|
20
20
|
bake_space_transform: typing.Union[bool, typing.Any] = False,
|
|
21
21
|
object_types: typing.Any = {
|
|
22
|
-
'"CAMERA"',
|
|
23
|
-
'"EMPTY"',
|
|
24
|
-
'"OTHER"',
|
|
25
|
-
'"ARMATURE"',
|
|
26
22
|
'"LIGHT"',
|
|
27
23
|
'"MESH"',
|
|
24
|
+
'"ARMATURE"',
|
|
25
|
+
'"EMPTY"',
|
|
26
|
+
'"CAMERA"',
|
|
27
|
+
'"OTHER"',
|
|
28
28
|
},
|
|
29
29
|
use_mesh_modifiers: typing.Union[bool, typing.Any] = True,
|
|
30
30
|
use_mesh_modifiers_render: typing.Union[bool, typing.Any] = True,
|
bpy/ops/nla/__init__.pyi
CHANGED
|
@@ -100,10 +100,10 @@ def bake(
|
|
|
100
100
|
clean_curves: typing.Union[bool, typing.Any] = False,
|
|
101
101
|
bake_types: typing.Any = {'"POSE"'},
|
|
102
102
|
channel_types: typing.Any = {
|
|
103
|
-
'"LOCATION"',
|
|
104
103
|
'"ROTATION"',
|
|
105
104
|
'"PROPS"',
|
|
106
105
|
'"SCALE"',
|
|
106
|
+
'"LOCATION"',
|
|
107
107
|
'"BBONE"',
|
|
108
108
|
},
|
|
109
109
|
):
|
|
@@ -350,7 +350,7 @@ def make_single_user(
|
|
|
350
350
|
undo: bool = None,
|
|
351
351
|
confirm: typing.Union[bool, typing.Any] = True,
|
|
352
352
|
):
|
|
353
|
-
"""
|
|
353
|
+
"""Make linked action local to each strip
|
|
354
354
|
|
|
355
355
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
356
356
|
:type execution_context: str
|
bpy/types/__init__.pyi
CHANGED
|
@@ -56857,6 +56857,33 @@ class IMAGE_UL_udim_tiles(bpy_struct):
|
|
|
56857
56857
|
"""
|
|
56858
56858
|
...
|
|
56859
56859
|
|
|
56860
|
+
class IO_FH_fbx(bpy_struct):
|
|
56861
|
+
""" """
|
|
56862
|
+
|
|
56863
|
+
@classmethod
|
|
56864
|
+
def bl_rna_get_subclass(cls, id: str, default=None):
|
|
56865
|
+
"""
|
|
56866
|
+
|
|
56867
|
+
:param id: The RNA type identifier.
|
|
56868
|
+
:type id: str
|
|
56869
|
+
:param default:
|
|
56870
|
+
:return: The RNA type or default when not found.
|
|
56871
|
+
:rtype: Struct
|
|
56872
|
+
"""
|
|
56873
|
+
...
|
|
56874
|
+
|
|
56875
|
+
@classmethod
|
|
56876
|
+
def bl_rna_get_subclass_py(cls, id: str, default=None):
|
|
56877
|
+
"""
|
|
56878
|
+
|
|
56879
|
+
:param id: The RNA type identifier.
|
|
56880
|
+
:type id: str
|
|
56881
|
+
:param default:
|
|
56882
|
+
:return: The class or default when not found.
|
|
56883
|
+
:rtype: typing.Any
|
|
56884
|
+
"""
|
|
56885
|
+
...
|
|
56886
|
+
|
|
56860
56887
|
class Image:
|
|
56861
56888
|
"""Image data-block referencing an external or packed image"""
|
|
56862
56889
|
|
|
@@ -58698,7 +58725,7 @@ class KeyConfigurations(bpy_struct):
|
|
|
58698
58725
|
idname: typing.Union[str, typing.Any],
|
|
58699
58726
|
context: typing.Union[str, int] = "INVOKE_DEFAULT",
|
|
58700
58727
|
properties: typing.Union[OperatorProperties, typing.Any] = None,
|
|
58701
|
-
include: typing.Any = {'"
|
|
58728
|
+
include: typing.Any = {'"MOUSE"', '"KEYBOARD"', '"ACTIONZONE"', '"NDOF"'},
|
|
58702
58729
|
exclude: typing.Any = {},
|
|
58703
58730
|
) -> typing.Any:
|
|
58704
58731
|
"""find_item_from_operator
|
|
@@ -59181,7 +59208,7 @@ class KeyMapItems(bpy_struct):
|
|
|
59181
59208
|
self,
|
|
59182
59209
|
idname: typing.Union[str, typing.Any],
|
|
59183
59210
|
properties: typing.Union[OperatorProperties, typing.Any] = None,
|
|
59184
|
-
include: typing.Any = {'"
|
|
59211
|
+
include: typing.Any = {'"MOUSE"', '"KEYBOARD"', '"ACTIONZONE"', '"NDOF"'},
|
|
59185
59212
|
exclude: typing.Any = {},
|
|
59186
59213
|
) -> typing.Any:
|
|
59187
59214
|
"""find_from_operator
|
|
@@ -61596,37 +61623,37 @@ class LimitRotationConstraint(bpy_struct):
|
|
|
61596
61623
|
"""
|
|
61597
61624
|
|
|
61598
61625
|
max_x: float
|
|
61599
|
-
"""
|
|
61626
|
+
""" Upper X angle bound
|
|
61600
61627
|
|
|
61601
61628
|
:type: float
|
|
61602
61629
|
"""
|
|
61603
61630
|
|
|
61604
61631
|
max_y: float
|
|
61605
|
-
"""
|
|
61632
|
+
""" Upper Y angle bound
|
|
61606
61633
|
|
|
61607
61634
|
:type: float
|
|
61608
61635
|
"""
|
|
61609
61636
|
|
|
61610
61637
|
max_z: float
|
|
61611
|
-
"""
|
|
61638
|
+
""" Upper Z angle bound
|
|
61612
61639
|
|
|
61613
61640
|
:type: float
|
|
61614
61641
|
"""
|
|
61615
61642
|
|
|
61616
61643
|
min_x: float
|
|
61617
|
-
"""
|
|
61644
|
+
""" Lower X angle bound
|
|
61618
61645
|
|
|
61619
61646
|
:type: float
|
|
61620
61647
|
"""
|
|
61621
61648
|
|
|
61622
61649
|
min_y: float
|
|
61623
|
-
"""
|
|
61650
|
+
""" Lower Y angle bound
|
|
61624
61651
|
|
|
61625
61652
|
:type: float
|
|
61626
61653
|
"""
|
|
61627
61654
|
|
|
61628
61655
|
min_z: float
|
|
61629
|
-
"""
|
|
61656
|
+
""" Lower Z angle bound
|
|
61630
61657
|
|
|
61631
61658
|
:type: float
|
|
61632
61659
|
"""
|
|
@@ -274,7 +274,7 @@ bl_ui/space_toolsystem_toolbar/__init__.pyi,sha256=zdyooYiuWvif_oug4_6p3j03T6to6
|
|
|
274
274
|
bl_ui/space_toolsystem_toolbar/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
275
275
|
bl_ui/space_topbar/__init__.pyi,sha256=VYaoiCgwgRlgAq_CjTCBMVdG8WQqzdBVGvx__1TL0tA,68597
|
|
276
276
|
bl_ui/space_topbar/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
277
|
-
bl_ui/space_userpref/__init__.pyi,sha256=
|
|
277
|
+
bl_ui/space_userpref/__init__.pyi,sha256=p8LOyVM282G7goEFVKf1Zg97pxcF36cZPJpxMir6z0Q,208885
|
|
278
278
|
bl_ui/space_userpref/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
279
279
|
bl_ui/space_view3d/__init__.pyi,sha256=mbTPOlpnfdaHTroY8fL1yp1q2d0c8_oYe2MyUH08AtI,683231
|
|
280
280
|
bl_ui/space_view3d/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -348,7 +348,7 @@ bpy/ops/constraint/__init__.pyi,sha256=vLJ9cSd79O7xWPEEECWqN0KKAmtKeeZC5pmuj32NA
|
|
|
348
348
|
bpy/ops/constraint/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
349
349
|
bpy/ops/curve/__init__.pyi,sha256=fb2ZQp6OGNXO2fa7bK4phfL-GK4k4P2buJYO7boPMJo,30992
|
|
350
350
|
bpy/ops/curve/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
351
|
-
bpy/ops/curves/__init__.pyi,sha256=
|
|
351
|
+
bpy/ops/curves/__init__.pyi,sha256=ZfNSw5Qwf9DgmAGevSuXMYceQuZWlFxMQWIBwpiPClw,11845
|
|
352
352
|
bpy/ops/curves/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
353
353
|
bpy/ops/cycles/__init__.pyi,sha256=biD_22nHJ3SkutU_zyqs8xS0y-X0F_80GZam0Hu0Aq4,2299
|
|
354
354
|
bpy/ops/cycles/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -360,7 +360,7 @@ bpy/ops/export_anim/__init__.pyi,sha256=K6ll7RWxlG8Frqjjlv4iXOsoU1nc0jsGZuKxlVNf
|
|
|
360
360
|
bpy/ops/export_anim/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
361
361
|
bpy/ops/export_mesh/__init__.pyi,sha256=GJhrJezT6_-Z7BDAThJvvP73C9DG4ilTmnO7lHAZqMo,2543
|
|
362
362
|
bpy/ops/export_mesh/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
363
|
-
bpy/ops/export_scene/__init__.pyi,sha256=
|
|
363
|
+
bpy/ops/export_scene/__init__.pyi,sha256=dAOi0-Ntwrv-0tnS5Ow0wcn21AJ7-ls6Djbz5Me1lN8,42387
|
|
364
364
|
bpy/ops/export_scene/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
365
365
|
bpy/ops/file/__init__.pyi,sha256=jxCrURW6yr27-_rjXIfY1_ziXEAlpkIp1zOz5tgHTFM,23620
|
|
366
366
|
bpy/ops/file/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -402,7 +402,7 @@ bpy/ops/mball/__init__.pyi,sha256=WeJtlcvbNyt_RGsLAX2_1j7MxyZ92mW57-ACUxnBC6I,46
|
|
|
402
402
|
bpy/ops/mball/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
403
403
|
bpy/ops/mesh/__init__.pyi,sha256=XONTsEA-ZnUwI1Us-OPTGUasTRP5LkBQF_un2LLTseQ,140802
|
|
404
404
|
bpy/ops/mesh/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
405
|
-
bpy/ops/nla/__init__.pyi,sha256=
|
|
405
|
+
bpy/ops/nla/__init__.pyi,sha256=S7T-nkO1qXiJcd6eT_7bsgii69Xm9-vws0Gsqa1VJSk,22280
|
|
406
406
|
bpy/ops/nla/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
407
407
|
bpy/ops/node/__init__.pyi,sha256=-ShkC7hZR9jCIG06Y7pW-EPtts-lJhPw7LnJQj-Dzx4,56637
|
|
408
408
|
bpy/ops/node/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -476,7 +476,7 @@ bpy/path/__init__.pyi,sha256=JdAATG1YvG3YPT3N8efWnwmPlxVR_xpojqcyxL_eCOY,6278
|
|
|
476
476
|
bpy/path/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
477
477
|
bpy/props/__init__.pyi,sha256=vdhM_8tw-TFNMAPrs7aPEVULxwGbIPnf0v6GkNL_l-U,23440
|
|
478
478
|
bpy/props/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
479
|
-
bpy/types/__init__.pyi,sha256=
|
|
479
|
+
bpy/types/__init__.pyi,sha256=tNi1OZWN8ATe0v9u5tdRTyINQYpCl1JS1_bLl8QM4mM,3253317
|
|
480
480
|
bpy/types/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
481
481
|
bpy/utils/__init__.pyi,sha256=bT0NbmiolU8QUn9ZB2O9monMi_k7nPJ1ru6iCURdxhA,11458
|
|
482
482
|
bpy/utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -594,7 +594,7 @@ rna_xml/__init__.pyi,sha256=12yOlLxfl-1hZ6MN5TCak3gGdgz4TknNjZ4OuoJE7x4,578
|
|
|
594
594
|
rna_xml/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
595
595
|
sys_info/__init__.pyi,sha256=5cKQiE7NFvOTsjdqB7pO7uflClATfF-90sCEeo9JOO8,110
|
|
596
596
|
sys_info/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
597
|
-
fake_bpy_module-
|
|
598
|
-
fake_bpy_module-
|
|
599
|
-
fake_bpy_module-
|
|
600
|
-
fake_bpy_module-
|
|
597
|
+
fake_bpy_module-20240405.dist-info/METADATA,sha256=If1N4ptGh6S2TXa89q5m1Q2KjWwbd1izJ7IugsbUIiI,7008
|
|
598
|
+
fake_bpy_module-20240405.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
599
|
+
fake_bpy_module-20240405.dist-info/top_level.txt,sha256=7r84ZPNSbRAopA50b0pH3uZ2ysQ2IvkuP0uXadxl7gs,495
|
|
600
|
+
fake_bpy_module-20240405.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|