fake-bpy-module 20251002__py3-none-any.whl → 20251003__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/anim/__init__.pyi +7 -0
- bl_ui/generic_ui_list/__init__.pyi +2 -2
- bl_ui/node_add_menu_compositor/__init__.pyi +58 -2
- bl_ui/node_add_menu_geometry/__init__.pyi +28 -28
- bl_ui/node_add_menu_shader/__init__.pyi +11 -9
- bl_ui/properties_paint_common/__init__.pyi +0 -3
- bl_ui/space_node/__init__.pyi +2 -35
- bl_ui/space_time/__init__.pyi +0 -76
- bpy/app/__init__.pyi +3 -3
- bpy/ops/render/__init__.pyi +6 -6
- bpy/stub_internal/rna_enums/__init__.pyi +1 -4
- bpy/types/__init__.pyi +5220 -2225
- bpy_extras/anim_utils/__init__.pyi +12 -8
- {fake_bpy_module-20251002.dist-info → fake_bpy_module-20251003.dist-info}/METADATA +1 -1
- {fake_bpy_module-20251002.dist-info → fake_bpy_module-20251003.dist-info}/RECORD +18 -18
- mathutils/bvhtree/__init__.pyi +3 -2
- {fake_bpy_module-20251002.dist-info → fake_bpy_module-20251003.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20251002.dist-info → fake_bpy_module-20251003.dist-info}/top_level.txt +0 -0
|
@@ -40,28 +40,26 @@ class KeyframesCo:
|
|
|
40
40
|
"""
|
|
41
41
|
|
|
42
42
|
def insert_keyframes_into_existing_action(
|
|
43
|
-
self, lookup_fcurves, total_new_keys,
|
|
43
|
+
self, lookup_fcurves, total_new_keys, channelbag
|
|
44
44
|
) -> None:
|
|
45
45
|
"""Assumes the action already exists, that it might already have F-curves. Otherwise, the
|
|
46
46
|
only difference between versions is performance and implementation simplicity.
|
|
47
47
|
|
|
48
48
|
:param lookup_fcurves: : This is only used for efficiency.
|
|
49
|
-
Its a substitute for
|
|
49
|
+
Its a substitute for channelbag.fcurves.find() which is a potentially expensive linear search.
|
|
50
50
|
:param total_new_keys:
|
|
51
|
-
:param
|
|
52
|
-
:param action_slot:
|
|
51
|
+
:param channelbag:
|
|
53
52
|
"""
|
|
54
53
|
|
|
55
54
|
def insert_keyframes_into_new_action(
|
|
56
|
-
self, total_new_keys,
|
|
55
|
+
self, total_new_keys, channelbag, group_name
|
|
57
56
|
) -> None:
|
|
58
57
|
"""Assumes the action is new, that it has no F-curves. Otherwise, the only difference between versions is
|
|
59
58
|
performance and implementation simplicity.
|
|
60
59
|
|
|
61
60
|
:param total_new_keys:
|
|
62
|
-
:param
|
|
63
|
-
:param
|
|
64
|
-
:type action_group_name: str
|
|
61
|
+
:param channelbag:
|
|
62
|
+
:param group_name: Name of the Group that F-curves are added to.
|
|
65
63
|
"""
|
|
66
64
|
|
|
67
65
|
def action_ensure_channelbag_for_slot(action, slot) -> None:
|
|
@@ -74,6 +72,12 @@ def action_get_channelbag_for_slot(action, slot) -> None:
|
|
|
74
72
|
|
|
75
73
|
"""
|
|
76
74
|
|
|
75
|
+
def action_get_first_suitable_slot(action, target_id_type) -> None:
|
|
76
|
+
"""Return the first Slot of the given Action thats suitable for the given ID type.Typically you should not need this function; when an Action is assigned to a
|
|
77
|
+
data-block, just use the slot that was assigned along with it.
|
|
78
|
+
|
|
79
|
+
"""
|
|
80
|
+
|
|
77
81
|
def bake_action(
|
|
78
82
|
obj: bpy.types.Object, *, action: None | bpy.types.Action, frames: int, bake_options
|
|
79
83
|
) -> None | bpy.types.Action:
|
|
@@ -62,7 +62,7 @@ bl_math/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
|
62
62
|
bl_operators/__init__.pyi,sha256=HgPdeHpf1n07eUDjLxujiq3uBqlb0uREEc-ynFkIm6o,1569
|
|
63
63
|
bl_operators/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
64
64
|
bl_operators/add_mesh_torus/__init__.pyi,sha256=cWqmMnxwTELFEkBtCt3BOYJt326DjyMDp47AmZgUMJw,1252
|
|
65
|
-
bl_operators/anim/__init__.pyi,sha256=
|
|
65
|
+
bl_operators/anim/__init__.pyi,sha256=rzTKyqrqA5w5kSbrBV_prOKY_Ls3uPojVJUDOBWsLqg,10837
|
|
66
66
|
bl_operators/assets/__init__.pyi,sha256=HbMfxxjRi7p3OWolri_NUKYsDOG9UjBe5M0RIIH5-o8,2813
|
|
67
67
|
bl_operators/bmesh/__init__.pyi,sha256=xhgZcx4fJyNE_cbXB-d3TFNHw2Y2k9IYMD3Af8WPt4M,134
|
|
68
68
|
bl_operators/bmesh/find_adjacent/__init__.pyi,sha256=OVIFK2kJ27sIE9wl94D3I3tZNHzTR_h94yI7Tqf8iCk,695
|
|
@@ -111,11 +111,11 @@ bl_ui/__init__.pyi,sha256=bzjd8FHTafNzS5V6jK2sf7aIflWXIIAAOj2u3CG5Q8s,7004
|
|
|
111
111
|
bl_ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
112
112
|
bl_ui/anim/__init__.pyi,sha256=aUUQB5sqG7wizgoB77tVmFLfhOWMyuHcEUY06w1FW5k,938
|
|
113
113
|
bl_ui/asset_shelf/__init__.pyi,sha256=zy0z1qh-gQXQufHFrEggbXWlihKF9l2OihuhN-iS4NE,825
|
|
114
|
-
bl_ui/generic_ui_list/__init__.pyi,sha256=
|
|
114
|
+
bl_ui/generic_ui_list/__init__.pyi,sha256=wKDC1TOAxmPZ4kY86_96aBa-DTcNHrGXNucUNp1UzpY,4303
|
|
115
115
|
bl_ui/node_add_menu/__init__.pyi,sha256=heYX5ZcwyvyzHbTVr2yTSd4isQvJm7adnHov7nH_mlg,8118
|
|
116
|
-
bl_ui/node_add_menu_compositor/__init__.pyi,sha256=
|
|
117
|
-
bl_ui/node_add_menu_geometry/__init__.pyi,sha256=
|
|
118
|
-
bl_ui/node_add_menu_shader/__init__.pyi,sha256=
|
|
116
|
+
bl_ui/node_add_menu_compositor/__init__.pyi,sha256=475dV7FAy2g3Rw-MsbYRmaZe5lw7peQWAQSpj3tBtvs,12778
|
|
117
|
+
bl_ui/node_add_menu_geometry/__init__.pyi,sha256=S2WdLHLqSjxaT5vVStxtcxiN2VhUcbLniI9a8tpepWs,37284
|
|
118
|
+
bl_ui/node_add_menu_shader/__init__.pyi,sha256=UrFPbOVsIcNGBxhetNRnKRU9QI7E4r9TSwGRmoumEQY,7073
|
|
119
119
|
bl_ui/node_add_menu_texture/__init__.pyi,sha256=5eHBvXUpNxk7MqVqfjeGVMmoszAX8Fr_FLndOX8TS7M,4744
|
|
120
120
|
bl_ui/properties_animviz/__init__.pyi,sha256=MVsoAibpBh5BrQ6ReemJJN3zOegs3QRdBFv9rOefocM,705
|
|
121
121
|
bl_ui/properties_collection/__init__.pyi,sha256=Vc5-O8TKo3-St-3d3c5TDjleZGy8wk3N8Je-c6Y2edk,5131
|
|
@@ -144,7 +144,7 @@ bl_ui/properties_material/__init__.pyi,sha256=umksBehoHZj_Jkn6xWX0WQH1sCwyqSpCA9
|
|
|
144
144
|
bl_ui/properties_material_gpencil/__init__.pyi,sha256=MPq6SsAQKqz8jJbpcmGK6zF0cbAUKB2rcsG2TIoGDMo,8744
|
|
145
145
|
bl_ui/properties_object/__init__.pyi,sha256=CzGxZhQxo1rcRb58UdawZd9xAXZ8OcoD_L9xb-jhPF8,15771
|
|
146
146
|
bl_ui/properties_output/__init__.pyi,sha256=5GXVxRcb0hPK_VmFnkZy_PqohxLlPPBwwDYzhI6UUUk,15439
|
|
147
|
-
bl_ui/properties_paint_common/__init__.pyi,sha256=
|
|
147
|
+
bl_ui/properties_paint_common/__init__.pyi,sha256=Xfcfx4li1nguQGLr4Yc_sqy7qKEWeQPMNtybJaABzl8,8359
|
|
148
148
|
bl_ui/properties_particle/__init__.pyi,sha256=PP0aeNih2eDjO-j5UgyyCmuySLPKPAyKb6wERtdUJUM,44322
|
|
149
149
|
bl_ui/properties_physics_cloth/__init__.pyi,sha256=1d62dy9gKmAnfiSUO-4EfBYoSMAmmoT3G6dI-WMd0ww,10866
|
|
150
150
|
bl_ui/properties_physics_common/__init__.pyi,sha256=nwBOYs0jv2XSayR_PYRyDUxO2Lf-4BQh0jCluVBpm6A,1448
|
|
@@ -169,14 +169,14 @@ bl_ui/space_graph/__init__.pyi,sha256=TIljcrouLfS7ICU4fUZaRP5ybcUfd81xiOONIRGbyz
|
|
|
169
169
|
bl_ui/space_image/__init__.pyi,sha256=9jCK_TJ83BC_nZl9NweAKGpbvYvM-gzDuEkXFhGwgqk,47001
|
|
170
170
|
bl_ui/space_info/__init__.pyi,sha256=xS8fd5VIJX3mvOvrjgftzsHAx3ZbNggmUGyJIRv6Pcs,3384
|
|
171
171
|
bl_ui/space_nla/__init__.pyi,sha256=qogAgjcs_TFfi4eoTjkVsPi8GkXRA7s4cO9xip2N-Ss,10324
|
|
172
|
-
bl_ui/space_node/__init__.pyi,sha256=
|
|
172
|
+
bl_ui/space_node/__init__.pyi,sha256=c2M4LfOmYSIDchMzyx5E2FdiODBKD2HBXidmhMsVZ6M,21757
|
|
173
173
|
bl_ui/space_outliner/__init__.pyi,sha256=1N93UIu-iU2UkqM7tQxeaxob3PRnnUjqY6rKdnT_sAE,8938
|
|
174
174
|
bl_ui/space_properties/__init__.pyi,sha256=KJdc80dXfvxv5XYmO8CRmheQxff_jLYiS_6zzRG_xwg,2802
|
|
175
175
|
bl_ui/space_sequencer/__init__.pyi,sha256=uYCt0g3AkdS55wUe5kywRn7eNFv56_Hn42jU3shsd4k,59948
|
|
176
176
|
bl_ui/space_spreadsheet/__init__.pyi,sha256=qoO65GoJn8WObsqXqRzdEq2Zq1AZQEDWVpli-4lXOow,1769
|
|
177
177
|
bl_ui/space_statusbar/__init__.pyi,sha256=V-oUoxSsgIpi-jzqct_gz2vjFYkIqOffmuI4W7xlsbw,667
|
|
178
178
|
bl_ui/space_text/__init__.pyi,sha256=k864SRJgY7mgqqsu8KAhNGilMHMgMzjew1aeEHTtiYo,8996
|
|
179
|
-
bl_ui/space_time/__init__.pyi,sha256=
|
|
179
|
+
bl_ui/space_time/__init__.pyi,sha256=KYLslF1mOTVkHwHSTPY4pNRHtUs1NjoGO4BpTbJNnXg,3128
|
|
180
180
|
bl_ui/space_toolsystem_common/__init__.pyi,sha256=0wapsLJDJuc7K6B5kjWvB9_dWN5e3_6WNWf_ZEChlmk,3436
|
|
181
181
|
bl_ui/space_toolsystem_toolbar/__init__.pyi,sha256=1NzcfTRSQBrrTgvP5Ny3GxkCCKay-oKOA-8po5_TYsE,10803
|
|
182
182
|
bl_ui/space_topbar/__init__.pyi,sha256=9MO703ewWr9Av2UGhd_tTQK8Okq8N3qw2SXOhZodeTk,15642
|
|
@@ -199,7 +199,7 @@ bmesh/types/__init__.pyi,sha256=JBZwuzFtHu8bOyUuaYY08RlsXtmki0b0ZngHUF0IQks,4195
|
|
|
199
199
|
bmesh/utils/__init__.pyi,sha256=N2mRD0u1ipJkw2nokIb-FCL858ikNQrOM_mqJPiCEXY,6285
|
|
200
200
|
bpy/__init__.pyi,sha256=2c24IZe013Q0UbFSvpU9JKRYusCUwGYTXbNDx17dK5g,490
|
|
201
201
|
bpy/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
202
|
-
bpy/app/__init__.pyi,sha256=
|
|
202
|
+
bpy/app/__init__.pyi,sha256=wqcquQycHyVuLbAOFBOAcCkcs-P7Y5LYvUo_H3UxtrM,8891
|
|
203
203
|
bpy/app/handlers/__init__.pyi,sha256=vxcj3vFmnFwA2JI8EdkC7ABpZkKNQs5AVadOyAamNe4,8062
|
|
204
204
|
bpy/app/icons/__init__.pyi,sha256=OEb8rxBfK1sVaLsDUrGC90Pd7ZTo8Vrq_nUsC8TCvfQ,963
|
|
205
205
|
bpy/app/timers/__init__.pyi,sha256=nD-TlDqICpcquEyk__OLIagSX4mNCH_jJxAKgfmrIYo,1813
|
|
@@ -260,7 +260,7 @@ bpy/ops/pose/__init__.pyi,sha256=A3-d0foPDJrVEdxWK27m7rtwsv3jvgzG3vrn39YC6S0,281
|
|
|
260
260
|
bpy/ops/poselib/__init__.pyi,sha256=39eQ57Dd5_Etnkso2FMfF-x385RljybQRPg9sTLzTII,5877
|
|
261
261
|
bpy/ops/preferences/__init__.pyi,sha256=ExaBIhejgkAc7k2DPX7S8II-gEXFmfZOoQVcw_Iom0E,19795
|
|
262
262
|
bpy/ops/ptcache/__init__.pyi,sha256=alDSJmgA1aKoMo46EDHirj_L-9Xc7RvfCh27DRnRuWc,1834
|
|
263
|
-
bpy/ops/render/__init__.pyi,sha256=
|
|
263
|
+
bpy/ops/render/__init__.pyi,sha256=kyyhLsEn8haWo_q_s8joVp-qY0BGB3NJN5Zt_HvmTY4,8109
|
|
264
264
|
bpy/ops/rigidbody/__init__.pyi,sha256=v64_7HMafJtwLVXcSTnPOLtjSGmKECr3nq80TRtDWhU,6971
|
|
265
265
|
bpy/ops/scene/__init__.pyi,sha256=NoezoIil56K989Z2JgdR0xIclzZApS5FimH7AlLrPJk,15611
|
|
266
266
|
bpy/ops/screen/__init__.pyi,sha256=JVe5VWQxsb64V0cJ5DATt1h7wlBwW16qhjlQdzoux3s,20369
|
|
@@ -286,14 +286,14 @@ bpy/ops/world/__init__.pyi,sha256=VTCqEUTLL6yJroZCNcMYQgEKVmjwkIwIy70vB78rdOM,67
|
|
|
286
286
|
bpy/path/__init__.pyi,sha256=Phd8a6fB3496L7_LUhdwPNwkh3qy_4O-MS5br9RMfO0,5536
|
|
287
287
|
bpy/props/__init__.pyi,sha256=_gmJ54eKwSmNZHQyDK1CiQn9fSy_L9K3jfSeX9nhCK4,51038
|
|
288
288
|
bpy/stub_internal/__init__.pyi,sha256=h3K2LGZ8lcLY-Oo9ym-HEopjGScc4iTfpT1MU_6smTI,126
|
|
289
|
-
bpy/stub_internal/rna_enums/__init__.pyi,sha256=
|
|
290
|
-
bpy/types/__init__.pyi,sha256=
|
|
289
|
+
bpy/stub_internal/rna_enums/__init__.pyi,sha256=7BHlckTJnSDOAYFnZVo298v42YQQjYSXyM_uJdE-sN4,142761
|
|
290
|
+
bpy/types/__init__.pyi,sha256=FvpNNWeqY8lyDS9LHzbDcqwD03raLDgjPKvDcMSWq5o,5991861
|
|
291
291
|
bpy/utils/__init__.pyi,sha256=GGYp2g381aOdE7tWXvRGVbmhijbfgt4wGAtJGgbvyJg,15526
|
|
292
292
|
bpy/utils/previews/__init__.pyi,sha256=iSZemSCPu1S2BjAQO83Z-FqEo1nGHRCEIEduXB6hQhc,2357
|
|
293
293
|
bpy/utils/units/__init__.pyi,sha256=cpE9IZPkYPBexru7R9HQ_c0931d7R7Dvib2Uf7V0JJs,2645
|
|
294
294
|
bpy_extras/__init__.pyi,sha256=Vish0mn6IfEYsdv9gWh6VDSpzvOwYavpgAC_PleMtFE,995
|
|
295
295
|
bpy_extras/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
296
|
-
bpy_extras/anim_utils/__init__.pyi,sha256=
|
|
296
|
+
bpy_extras/anim_utils/__init__.pyi,sha256=XexIREN2bvTObwG7B0vbXw-Likv2riGIbTHjNC2eEc8,4958
|
|
297
297
|
bpy_extras/asset_utils/__init__.pyi,sha256=aM9iiUUy5PcxHY5lz-UxfvLzAc9bH5Y-z3kRRB9IzvY,221
|
|
298
298
|
bpy_extras/bmesh_utils/__init__.pyi,sha256=KrJhW9Esut9jZKqcogqgPnrC9LbJOOe3szRluEd5j-E,513
|
|
299
299
|
bpy_extras/id_map_utils/__init__.pyi,sha256=IXrJ93ipXCEEwjJ09T_NNbc0S2RZRvckkjqTNeYk9dY,503
|
|
@@ -350,7 +350,7 @@ keyingsets_utils/__init__.pyi,sha256=LYwQPxGFL9s9daviMo2DyVIUmjyNRFT1S9cvMGBZ6to
|
|
|
350
350
|
keyingsets_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
351
351
|
mathutils/__init__.pyi,sha256=QBvmsVe5brYs9KpGoF1DdHKze2iRn5i3pGapskxYzRU,91364
|
|
352
352
|
mathutils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
353
|
-
mathutils/bvhtree/__init__.pyi,sha256=
|
|
353
|
+
mathutils/bvhtree/__init__.pyi,sha256=rjuZMGm2Jxi0bnaU60v18BuJyO2JWdfRdr5Mp0bYUuk,5138
|
|
354
354
|
mathutils/geometry/__init__.pyi,sha256=znfthz0P_KR3n8C6RHqm9K-rTFKR0dGlnlKOb2htmkM,24696
|
|
355
355
|
mathutils/interpolate/__init__.pyi,sha256=ndZoeTg3JKLj5Uskd-TU2BmCEAe8k_-MY-jGzzNj0O4,575
|
|
356
356
|
mathutils/kdtree/__init__.pyi,sha256=99pXd0pG1J4JBPexQBa87d-DAg-3KZ1lmDL3ZLiVA-Q,2309
|
|
@@ -367,7 +367,7 @@ rna_prop_ui/__init__.pyi,sha256=Gn7kc9WhI3qPObIz8QiFbjeVIP7GCeF6liywBzIEcnE,1402
|
|
|
367
367
|
rna_prop_ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
368
368
|
rna_xml/__init__.pyi,sha256=E0_ajcifhpiiQJVaNKnAa2ju-w5Tg9-lk7IqhsPjrw4,652
|
|
369
369
|
rna_xml/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
370
|
-
fake_bpy_module-
|
|
371
|
-
fake_bpy_module-
|
|
372
|
-
fake_bpy_module-
|
|
373
|
-
fake_bpy_module-
|
|
370
|
+
fake_bpy_module-20251003.dist-info/METADATA,sha256=aKIcrIJRXDuCrZbAySZhcxcJUU_AGmqTltr31XPl_Rg,7429
|
|
371
|
+
fake_bpy_module-20251003.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
372
|
+
fake_bpy_module-20251003.dist-info/top_level.txt,sha256=xwHlW-cY033y5uA7GsGZDdOwWdNIzrHETvaZ_rWuR4I,539
|
|
373
|
+
fake_bpy_module-20251003.dist-info/RECORD,,
|
mathutils/bvhtree/__init__.pyi
CHANGED
|
@@ -7,6 +7,7 @@ import typing
|
|
|
7
7
|
import collections.abc
|
|
8
8
|
import typing_extensions
|
|
9
9
|
import numpy.typing as npt
|
|
10
|
+
import _bpy_types
|
|
10
11
|
import bmesh.types
|
|
11
12
|
import bpy.types
|
|
12
13
|
import mathutils
|
|
@@ -25,7 +26,7 @@ class BVHTree:
|
|
|
25
26
|
@classmethod
|
|
26
27
|
def FromObject(
|
|
27
28
|
cls,
|
|
28
|
-
object:
|
|
29
|
+
object: _bpy_types.Object,
|
|
29
30
|
depsgraph: bpy.types.Depsgraph,
|
|
30
31
|
*,
|
|
31
32
|
deform: bool = True,
|
|
@@ -36,7 +37,7 @@ class BVHTree:
|
|
|
36
37
|
"""BVH tree based on `Object` data.
|
|
37
38
|
|
|
38
39
|
:param object: Object data.
|
|
39
|
-
:type object:
|
|
40
|
+
:type object: _bpy_types.Object
|
|
40
41
|
:param depsgraph: Depsgraph to use for evaluating the mesh.
|
|
41
42
|
:type depsgraph: bpy.types.Depsgraph
|
|
42
43
|
:param deform: Use mesh with deformations.
|
|
File without changes
|
|
File without changes
|