fake-bpy-module 20240721__py3-none-any.whl → 20240722__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/add_mesh_torus/__init__.pyi +1 -2
- bl_operators/assets/__init__.pyi +2 -2
- bl_operators/bone_selection_sets/__init__.pyi +16 -28
- bl_operators/connect_to_output/__init__.pyi +1 -4
- bl_operators/image_as_planes/__init__.pyi +2 -12
- bl_operators/node/__init__.pyi +14 -16
- bl_operators/object_quick_effects/__init__.pyi +3 -3
- bl_operators/presets/__init__.pyi +22 -25
- bl_operators/sequencer/__init__.pyi +76 -76
- bl_ui/generic_ui_list/__init__.pyi +3 -3
- bl_ui/properties_collection/__init__.pyi +5 -19
- bl_ui/properties_constraint/__init__.pyi +79 -289
- bl_ui/properties_data_armature/__init__.pyi +9 -33
- bl_ui/properties_data_bone/__init__.pyi +10 -17
- bl_ui/properties_data_camera/__init__.pyi +14 -32
- bl_ui/properties_data_curve/__init__.pyi +69 -88
- bl_ui/properties_data_curves/__init__.pyi +4 -9
- bl_ui/properties_data_empty/__init__.pyi +2 -2
- bl_ui/properties_data_gpencil/__init__.pyi +15 -50
- bl_ui/properties_data_grease_pencil/__init__.pyi +10 -36
- bl_ui/properties_data_lattice/__init__.pyi +3 -6
- bl_ui/properties_data_light/__init__.pyi +12 -25
- bl_ui/properties_data_lightprobe/__init__.pyi +13 -35
- bl_ui/properties_data_mesh/__init__.pyi +63 -72
- bl_ui/properties_data_metaball/__init__.pyi +5 -10
- bl_ui/properties_data_modifier/__init__.pyi +9 -23
- bl_ui/properties_data_pointcloud/__init__.pyi +3 -10
- bl_ui/properties_data_shaderfx/__init__.pyi +1 -1
- bl_ui/properties_data_speaker/__init__.pyi +5 -8
- bl_ui/properties_data_volume/__init__.pyi +7 -14
- bl_ui/properties_freestyle/__init__.pyi +9 -42
- bl_ui/properties_material/__init__.pyi +14 -40
- bl_ui/properties_material_gpencil/__init__.pyi +8 -32
- bl_ui/properties_object/__init__.pyi +13 -31
- bl_ui/properties_output/__init__.pyi +16 -43
- bl_ui/properties_paint_common/__init__.pyi +17 -17
- bl_ui/properties_particle/__init__.pyi +50 -135
- bl_ui/properties_physics_cloth/__init__.pyi +14 -35
- bl_ui/properties_physics_common/__init__.pyi +1 -1
- bl_ui/properties_physics_dynamicpaint/__init__.pyi +21 -57
- bl_ui/properties_physics_field/__init__.pyi +10 -26
- bl_ui/properties_physics_fluid/__init__.pyi +28 -51
- bl_ui/properties_physics_rigidbody/__init__.pyi +8 -18
- bl_ui/properties_physics_rigidbody_constraint/__init__.pyi +13 -25
- bl_ui/properties_physics_softbody/__init__.pyi +15 -43
- bl_ui/properties_render/__init__.pyi +54 -150
- bl_ui/properties_scene/__init__.pyi +29 -42
- bl_ui/properties_texture/__init__.pyi +26 -58
- bl_ui/properties_view_layer/__init__.pyi +16 -43
- bl_ui/properties_workspace/__init__.pyi +3 -9
- bl_ui/properties_world/__init__.pyi +10 -19
- bl_ui/space_clip/__init__.pyi +31 -93
- bl_ui/space_dopesheet/__init__.pyi +13 -66
- bl_ui/space_filebrowser/__init__.pyi +17 -38
- bl_ui/space_graph/__init__.pyi +1 -6
- bl_ui/space_image/__init__.pyi +190 -235
- bl_ui/space_nla/__init__.pyi +2 -11
- bl_ui/space_node/__init__.pyi +3 -16
- bl_ui/space_sequencer/__init__.pyi +34 -104
- bl_ui/space_time/__init__.pyi +3 -7
- bl_ui/space_toolsystem_toolbar/__init__.pyi +4 -21
- bl_ui/space_userpref/__init__.pyi +76 -215
- bl_ui/space_view3d/__init__.pyi +91 -147
- bl_ui/space_view3d_toolbar/__init__.pyi +435 -543
- bpy_extras/node_shader_utils/__init__.pyi +118 -118
- {fake_bpy_module-20240721.dist-info → fake_bpy_module-20240722.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240721.dist-info → fake_bpy_module-20240722.dist-info}/RECORD +71 -71
- {fake_bpy_module-20240721.dist-info → fake_bpy_module-20240722.dist-info}/WHEEL +1 -1
- keyingsets_builtins/__init__.pyi +2 -2
- nodeitems_builtins/__init__.pyi +3 -3
- {fake_bpy_module-20240721.dist-info → fake_bpy_module-20240722.dist-info}/top_level.txt +0 -0
|
@@ -5,124 +5,7 @@ import typing_extensions
|
|
|
5
5
|
GenericType1 = typing.TypeVar("GenericType1")
|
|
6
6
|
GenericType2 = typing.TypeVar("GenericType2")
|
|
7
7
|
|
|
8
|
-
class
|
|
9
|
-
"""Base class with minimal common ground for all types of shader interfaces we may want/need to implement."""
|
|
10
|
-
|
|
11
|
-
NODES_LIST: typing.Any
|
|
12
|
-
is_readonly: typing.Any
|
|
13
|
-
material: typing.Any
|
|
14
|
-
node_out: typing.Any
|
|
15
|
-
node_texcoords: typing.Any
|
|
16
|
-
use_nodes: typing.Any
|
|
17
|
-
|
|
18
|
-
def node_texcoords_get(self): ...
|
|
19
|
-
def update(self): ...
|
|
20
|
-
def use_nodes_get(self): ...
|
|
21
|
-
def use_nodes_set(self, val):
|
|
22
|
-
"""
|
|
23
|
-
|
|
24
|
-
:param val:
|
|
25
|
-
"""
|
|
26
|
-
...
|
|
27
|
-
|
|
28
|
-
class ShaderImageTextureWrapper:
|
|
29
|
-
"""Generic 'image texture'-like wrapper, handling image node, some mapping (texture coordinates transformations),
|
|
30
|
-
and texture coordinates source.
|
|
31
|
-
"""
|
|
32
|
-
|
|
33
|
-
NODES_LIST: typing.Any
|
|
34
|
-
colorspace_is_data: typing.Any
|
|
35
|
-
colorspace_name: typing.Any
|
|
36
|
-
extension: typing.Any
|
|
37
|
-
grid_row_diff: typing.Any
|
|
38
|
-
image: typing.Any
|
|
39
|
-
is_readonly: typing.Any
|
|
40
|
-
node_dst: typing.Any
|
|
41
|
-
node_image: typing.Any
|
|
42
|
-
node_mapping: typing.Any
|
|
43
|
-
owner_shader: typing.Any
|
|
44
|
-
projection: typing.Any
|
|
45
|
-
rotation: typing.Any
|
|
46
|
-
scale: typing.Any
|
|
47
|
-
socket_dst: typing.Any
|
|
48
|
-
texcoords: typing.Any
|
|
49
|
-
translation: typing.Any
|
|
50
|
-
use_alpha: typing.Any
|
|
51
|
-
|
|
52
|
-
def copy_from(self, tex):
|
|
53
|
-
"""
|
|
54
|
-
|
|
55
|
-
:param tex:
|
|
56
|
-
"""
|
|
57
|
-
...
|
|
58
|
-
|
|
59
|
-
def copy_mapping_from(self, tex):
|
|
60
|
-
"""
|
|
61
|
-
|
|
62
|
-
:param tex:
|
|
63
|
-
"""
|
|
64
|
-
...
|
|
65
|
-
|
|
66
|
-
def extension_get(self): ...
|
|
67
|
-
def extension_set(self, extension):
|
|
68
|
-
"""
|
|
69
|
-
|
|
70
|
-
:param extension:
|
|
71
|
-
"""
|
|
72
|
-
...
|
|
73
|
-
|
|
74
|
-
def has_mapping_node(self): ...
|
|
75
|
-
def image_get(self): ...
|
|
76
|
-
def image_set(self, image):
|
|
77
|
-
"""
|
|
78
|
-
|
|
79
|
-
:param image:
|
|
80
|
-
"""
|
|
81
|
-
...
|
|
82
|
-
|
|
83
|
-
def node_image_get(self): ...
|
|
84
|
-
def node_mapping_get(self): ...
|
|
85
|
-
def projection_get(self): ...
|
|
86
|
-
def projection_set(self, projection):
|
|
87
|
-
"""
|
|
88
|
-
|
|
89
|
-
:param projection:
|
|
90
|
-
"""
|
|
91
|
-
...
|
|
92
|
-
|
|
93
|
-
def rotation_get(self): ...
|
|
94
|
-
def rotation_set(self, rotation):
|
|
95
|
-
"""
|
|
96
|
-
|
|
97
|
-
:param rotation:
|
|
98
|
-
"""
|
|
99
|
-
...
|
|
100
|
-
|
|
101
|
-
def scale_get(self): ...
|
|
102
|
-
def scale_set(self, scale):
|
|
103
|
-
"""
|
|
104
|
-
|
|
105
|
-
:param scale:
|
|
106
|
-
"""
|
|
107
|
-
...
|
|
108
|
-
|
|
109
|
-
def texcoords_get(self): ...
|
|
110
|
-
def texcoords_set(self, texcoords):
|
|
111
|
-
"""
|
|
112
|
-
|
|
113
|
-
:param texcoords:
|
|
114
|
-
"""
|
|
115
|
-
...
|
|
116
|
-
|
|
117
|
-
def translation_get(self): ...
|
|
118
|
-
def translation_set(self, translation):
|
|
119
|
-
"""
|
|
120
|
-
|
|
121
|
-
:param translation:
|
|
122
|
-
"""
|
|
123
|
-
...
|
|
124
|
-
|
|
125
|
-
class PrincipledBSDFWrapper(ShaderWrapper):
|
|
8
|
+
class PrincipledBSDFWrapper:
|
|
126
9
|
"""Hard coded shader setup, based in Principled BSDF.
|
|
127
10
|
Should cover most common cases on import, and gives a basic nodal shaders support for export.
|
|
128
11
|
Supports basic: diffuse/spec/reflect/transparency/normal, with texturing.
|
|
@@ -261,6 +144,123 @@ class PrincipledBSDFWrapper(ShaderWrapper):
|
|
|
261
144
|
def transmission_texture_get(self): ...
|
|
262
145
|
def update(self): ...
|
|
263
146
|
|
|
147
|
+
class ShaderImageTextureWrapper:
|
|
148
|
+
"""Generic 'image texture'-like wrapper, handling image node, some mapping (texture coordinates transformations),
|
|
149
|
+
and texture coordinates source.
|
|
150
|
+
"""
|
|
151
|
+
|
|
152
|
+
NODES_LIST: typing.Any
|
|
153
|
+
colorspace_is_data: typing.Any
|
|
154
|
+
colorspace_name: typing.Any
|
|
155
|
+
extension: typing.Any
|
|
156
|
+
grid_row_diff: typing.Any
|
|
157
|
+
image: typing.Any
|
|
158
|
+
is_readonly: typing.Any
|
|
159
|
+
node_dst: typing.Any
|
|
160
|
+
node_image: typing.Any
|
|
161
|
+
node_mapping: typing.Any
|
|
162
|
+
owner_shader: typing.Any
|
|
163
|
+
projection: typing.Any
|
|
164
|
+
rotation: typing.Any
|
|
165
|
+
scale: typing.Any
|
|
166
|
+
socket_dst: typing.Any
|
|
167
|
+
texcoords: typing.Any
|
|
168
|
+
translation: typing.Any
|
|
169
|
+
use_alpha: typing.Any
|
|
170
|
+
|
|
171
|
+
def copy_from(self, tex):
|
|
172
|
+
"""
|
|
173
|
+
|
|
174
|
+
:param tex:
|
|
175
|
+
"""
|
|
176
|
+
...
|
|
177
|
+
|
|
178
|
+
def copy_mapping_from(self, tex):
|
|
179
|
+
"""
|
|
180
|
+
|
|
181
|
+
:param tex:
|
|
182
|
+
"""
|
|
183
|
+
...
|
|
184
|
+
|
|
185
|
+
def extension_get(self): ...
|
|
186
|
+
def extension_set(self, extension):
|
|
187
|
+
"""
|
|
188
|
+
|
|
189
|
+
:param extension:
|
|
190
|
+
"""
|
|
191
|
+
...
|
|
192
|
+
|
|
193
|
+
def has_mapping_node(self): ...
|
|
194
|
+
def image_get(self): ...
|
|
195
|
+
def image_set(self, image):
|
|
196
|
+
"""
|
|
197
|
+
|
|
198
|
+
:param image:
|
|
199
|
+
"""
|
|
200
|
+
...
|
|
201
|
+
|
|
202
|
+
def node_image_get(self): ...
|
|
203
|
+
def node_mapping_get(self): ...
|
|
204
|
+
def projection_get(self): ...
|
|
205
|
+
def projection_set(self, projection):
|
|
206
|
+
"""
|
|
207
|
+
|
|
208
|
+
:param projection:
|
|
209
|
+
"""
|
|
210
|
+
...
|
|
211
|
+
|
|
212
|
+
def rotation_get(self): ...
|
|
213
|
+
def rotation_set(self, rotation):
|
|
214
|
+
"""
|
|
215
|
+
|
|
216
|
+
:param rotation:
|
|
217
|
+
"""
|
|
218
|
+
...
|
|
219
|
+
|
|
220
|
+
def scale_get(self): ...
|
|
221
|
+
def scale_set(self, scale):
|
|
222
|
+
"""
|
|
223
|
+
|
|
224
|
+
:param scale:
|
|
225
|
+
"""
|
|
226
|
+
...
|
|
227
|
+
|
|
228
|
+
def texcoords_get(self): ...
|
|
229
|
+
def texcoords_set(self, texcoords):
|
|
230
|
+
"""
|
|
231
|
+
|
|
232
|
+
:param texcoords:
|
|
233
|
+
"""
|
|
234
|
+
...
|
|
235
|
+
|
|
236
|
+
def translation_get(self): ...
|
|
237
|
+
def translation_set(self, translation):
|
|
238
|
+
"""
|
|
239
|
+
|
|
240
|
+
:param translation:
|
|
241
|
+
"""
|
|
242
|
+
...
|
|
243
|
+
|
|
244
|
+
class ShaderWrapper:
|
|
245
|
+
"""Base class with minimal common ground for all types of shader interfaces we may want/need to implement."""
|
|
246
|
+
|
|
247
|
+
NODES_LIST: typing.Any
|
|
248
|
+
is_readonly: typing.Any
|
|
249
|
+
material: typing.Any
|
|
250
|
+
node_out: typing.Any
|
|
251
|
+
node_texcoords: typing.Any
|
|
252
|
+
use_nodes: typing.Any
|
|
253
|
+
|
|
254
|
+
def node_texcoords_get(self): ...
|
|
255
|
+
def update(self): ...
|
|
256
|
+
def use_nodes_get(self): ...
|
|
257
|
+
def use_nodes_set(self, val):
|
|
258
|
+
"""
|
|
259
|
+
|
|
260
|
+
:param val:
|
|
261
|
+
"""
|
|
262
|
+
...
|
|
263
|
+
|
|
264
264
|
def node_input_value_get(node, input, default_value=None): ...
|
|
265
265
|
def node_input_value_set(node, input, value): ...
|
|
266
266
|
def rgb_to_rgba(rgb): ...
|
|
@@ -46,33 +46,33 @@ bl_math/__init__.pyi,sha256=H3twnPxshugX8faMF3Xv4du75O1gLfUypIdplZfIizU,1718
|
|
|
46
46
|
bl_math/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
47
47
|
bl_operators/__init__.pyi,sha256=gApmkBWBVffsns41o8HbU5pj3Qnw--LKfFZOmhXCsno,1073
|
|
48
48
|
bl_operators/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
49
|
-
bl_operators/add_mesh_torus/__init__.pyi,sha256=
|
|
49
|
+
bl_operators/add_mesh_torus/__init__.pyi,sha256=GVIFJBUFj7-u6JIrhEmHkXNzkiQniq9ESryuB-k6GxQ,1251
|
|
50
50
|
bl_operators/anim/__init__.pyi,sha256=j0FhsoPmL26MM2H9EWityG7oJQ_CJnvDbZJqRbOQC8s,7120
|
|
51
|
-
bl_operators/assets/__init__.pyi,sha256=
|
|
51
|
+
bl_operators/assets/__init__.pyi,sha256=43jJVC7k5Y-Zn4cd8wlbngx8mmeSwhEz8mE4yrzvKu0,2906
|
|
52
52
|
bl_operators/bmesh/__init__.pyi,sha256=TTxFuupluK4SWciHIX8oHEZBpHZLDphBnlaM10xzn3k,183
|
|
53
53
|
bl_operators/bmesh/find_adjacent/__init__.pyi,sha256=GaTKWwdsYqXkDSr6GNrTgK7yFj8xia_vLcfhtRWLWbI,701
|
|
54
|
-
bl_operators/bone_selection_sets/__init__.pyi,sha256=
|
|
54
|
+
bl_operators/bone_selection_sets/__init__.pyi,sha256=Ssg7pTWMCvjQ3szALz8Jt9s5LztsPsaDjhLpXCQhv3I,10783
|
|
55
55
|
bl_operators/clip/__init__.pyi,sha256=bOlnoiEV7k3f3DG9JP5Vg6QLEckg29zR75VmStTl5-o,8689
|
|
56
|
-
bl_operators/connect_to_output/__init__.pyi,sha256=
|
|
56
|
+
bl_operators/connect_to_output/__init__.pyi,sha256=IYw3magm0NDQm8LDOT21Y2WCD3ynvS42UkBFB_YIIyU,3612
|
|
57
57
|
bl_operators/console/__init__.pyi,sha256=BsrcbUxJuhhM3JDZUIU_EChLV8F_FOAfef1r3I_le4g,4043
|
|
58
58
|
bl_operators/constraint/__init__.pyi,sha256=zt3qjvyNcjt4UaOuQGRnimh7RkEPHIZ0A3csl1tgGkI,3510
|
|
59
59
|
bl_operators/file/__init__.pyi,sha256=uwHL_QTI8e0i26gI6FqtAtcWCMSeu2ANmwoFxPevVfo,2678
|
|
60
60
|
bl_operators/freestyle/__init__.pyi,sha256=McYDu5ZHc0V1t9p93YVHZbKJDFRTHcyOcrbO7B_x1g0,3729
|
|
61
61
|
bl_operators/geometry_nodes/__init__.pyi,sha256=ImDxIyOV9L6uSJR_7Y6XLxflpZlsqSJOHeV15V0p5uU,4395
|
|
62
62
|
bl_operators/image/__init__.pyi,sha256=VS2sKCd8Lg22me2Mx0Ydq0KsnqnxP7TbUDodTJnx-Sw,3733
|
|
63
|
-
bl_operators/image_as_planes/__init__.pyi,sha256=
|
|
63
|
+
bl_operators/image_as_planes/__init__.pyi,sha256=DnFs2BF_sOGroHzjRtsDPtz2V9yPDaMoIOZs1whTv-w,6063
|
|
64
64
|
bl_operators/mesh/__init__.pyi,sha256=GLubm-ywNt4_ncDeszarjD4zcVB7lXvqrsczSgOZLq0,2661
|
|
65
|
-
bl_operators/node/__init__.pyi,sha256=
|
|
65
|
+
bl_operators/node/__init__.pyi,sha256=jsIThrypIT5jbfpflkS0-i9fal4poC7KtgM2WVcvPfc,8239
|
|
66
66
|
bl_operators/node_editor/__init__.pyi,sha256=kXQkNPH28RH3Xa1RFktdI2LaPFKO7PWUeKvyFa9yQw0,184
|
|
67
67
|
bl_operators/node_editor/node_functions/__init__.pyi,sha256=fOnj8Y9mBqkYI3HjN7cj3gNf7zj1TAE14Zj4__m1x08,632
|
|
68
68
|
bl_operators/object/__init__.pyi,sha256=K-jZZbs5DypF0Bh1pNAa1xUpZP49Y2AdUv1lbadqrvA,12341
|
|
69
69
|
bl_operators/object_align/__init__.pyi,sha256=_yRxkv7RAZIQxvqtxHISoCmtgizCe6Lv7xA4MfJVy58,1137
|
|
70
|
-
bl_operators/object_quick_effects/__init__.pyi,sha256=
|
|
70
|
+
bl_operators/object_quick_effects/__init__.pyi,sha256=o0WGot-N3XGBbSdbptoQ3F3j3riuwHvGpwF4PdE4W6E,3239
|
|
71
71
|
bl_operators/object_randomize_transform/__init__.pyi,sha256=bstsH89y1c3S_w-b8mkUou1Tnmy3EQoVYqdHH-iOgb4,1057
|
|
72
|
-
bl_operators/presets/__init__.pyi,sha256=
|
|
72
|
+
bl_operators/presets/__init__.pyi,sha256=Qydf1MvpJOc2O8gmtcfVADEQ35V5OSCUkGKpuvW7BX0,19066
|
|
73
73
|
bl_operators/rigidbody/__init__.pyi,sha256=RhLxUrI3XYdYEeHVwyfI_TJOR2YXb40nZzCGhMJKl9c,2691
|
|
74
74
|
bl_operators/screen_play_rendered_anim/__init__.pyi,sha256=qF3b5NX7voJa8ybWhvIYMRzGsn1Na7TO95wVevGQYk0,895
|
|
75
|
-
bl_operators/sequencer/__init__.pyi,sha256=
|
|
75
|
+
bl_operators/sequencer/__init__.pyi,sha256=njW9SrFTZY-FqVrTE0wQZ-4WSW9xG3viyZaKEN-pb2k,8159
|
|
76
76
|
bl_operators/spreadsheet/__init__.pyi,sha256=klqyU_cBEya53wOrFLdq1dVF8jm3lEgjIq_sZjYodsc,1122
|
|
77
77
|
bl_operators/userpref/__init__.pyi,sha256=grv9GqD1OOqIQeWdVyIbsarBJ2PKHvY5YfDEde8FBAM,18262
|
|
78
78
|
bl_operators/uvcalc_follow_active/__init__.pyi,sha256=NNIJeNTZmunxV-ZeuzbfnMyPvxmkzesj4xxQ6xIspRM,1176
|
|
@@ -95,79 +95,79 @@ bl_ui/__init__.pyi,sha256=UCUdsfvTOfbCcvsTNvvZDyG_xMtxT2qGYOtn20rUexg,5463
|
|
|
95
95
|
bl_ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
96
96
|
bl_ui/anim/__init__.pyi,sha256=VbdHLhr4WytBBKVg2HMgS0zP0TI4-oS2T5OqGBqDbkc,780
|
|
97
97
|
bl_ui/asset_shelf/__init__.pyi,sha256=1GVxkeliF9WgMhZrLclylddJD64Lb_x6xjFRUi0QNyA,943
|
|
98
|
-
bl_ui/generic_ui_list/__init__.pyi,sha256=
|
|
98
|
+
bl_ui/generic_ui_list/__init__.pyi,sha256=CjTxriIrsAXoa2WlGkG2B8NNkFU4knZk8DCa5quMYgg,4346
|
|
99
99
|
bl_ui/node_add_menu/__init__.pyi,sha256=1pTHoeP3t-YtSvUzKV0RFq-hO28exUcVRs1Us0-EFCg,1285
|
|
100
100
|
bl_ui/node_add_menu_compositor/__init__.pyi,sha256=8UkHwQ_R8HzGExnT6ymW3vrHi5JHz6F0-JXqndypf6w,11515
|
|
101
101
|
bl_ui/node_add_menu_geometry/__init__.pyi,sha256=6B73Z5XIz1oLUrhXQM2Mj4nNKns3_tUg5IQlTr0htyM,31556
|
|
102
102
|
bl_ui/node_add_menu_shader/__init__.pyi,sha256=jhr9EbTPIuSDerOf-LNu0_rGK90pEZCyWfjiv1olq2o,6715
|
|
103
103
|
bl_ui/node_add_menu_texture/__init__.pyi,sha256=gBcv8cSGUti2eMRc_CxOhuIQRZ6udP9bF670cANw8pE,5833
|
|
104
104
|
bl_ui/properties_animviz/__init__.pyi,sha256=ymd94X1m7kZxwMkkh20db94wpgADEAMSUjVS4m6b2QA,779
|
|
105
|
-
bl_ui/properties_collection/__init__.pyi,sha256=
|
|
106
|
-
bl_ui/properties_constraint/__init__.pyi,sha256=
|
|
107
|
-
bl_ui/properties_data_armature/__init__.pyi,sha256=
|
|
108
|
-
bl_ui/properties_data_bone/__init__.pyi,sha256=
|
|
109
|
-
bl_ui/properties_data_camera/__init__.pyi,sha256=
|
|
110
|
-
bl_ui/properties_data_curve/__init__.pyi,sha256=
|
|
111
|
-
bl_ui/properties_data_curves/__init__.pyi,sha256=
|
|
112
|
-
bl_ui/properties_data_empty/__init__.pyi,sha256=
|
|
113
|
-
bl_ui/properties_data_gpencil/__init__.pyi,sha256=
|
|
114
|
-
bl_ui/properties_data_grease_pencil/__init__.pyi,sha256=
|
|
115
|
-
bl_ui/properties_data_lattice/__init__.pyi,sha256=
|
|
116
|
-
bl_ui/properties_data_light/__init__.pyi,sha256=
|
|
117
|
-
bl_ui/properties_data_lightprobe/__init__.pyi,sha256=
|
|
118
|
-
bl_ui/properties_data_mesh/__init__.pyi,sha256=
|
|
119
|
-
bl_ui/properties_data_metaball/__init__.pyi,sha256=
|
|
120
|
-
bl_ui/properties_data_modifier/__init__.pyi,sha256=
|
|
121
|
-
bl_ui/properties_data_pointcloud/__init__.pyi,sha256=
|
|
122
|
-
bl_ui/properties_data_shaderfx/__init__.pyi,sha256=
|
|
123
|
-
bl_ui/properties_data_speaker/__init__.pyi,sha256=
|
|
124
|
-
bl_ui/properties_data_volume/__init__.pyi,sha256=
|
|
125
|
-
bl_ui/properties_freestyle/__init__.pyi,sha256=
|
|
105
|
+
bl_ui/properties_collection/__init__.pyi,sha256=g7eGrz90_bFy-emv5j4wB37PgfM2-NrnmVopQniaCvE,4620
|
|
106
|
+
bl_ui/properties_constraint/__init__.pyi,sha256=EOU8YPjz9YAE8_t5mLMblpieKcAH1QG4nlribE6-mMk,62193
|
|
107
|
+
bl_ui/properties_data_armature/__init__.pyi,sha256=pTpAH2a0cSX4kCsnogcrP4uOHjIuaTSNHeYJeMdKIy0,12926
|
|
108
|
+
bl_ui/properties_data_bone/__init__.pyi,sha256=sg6rCQwiKsDXKrtFyhhJ10IVr8ldEu5uIxv319YgGQ8,8579
|
|
109
|
+
bl_ui/properties_data_camera/__init__.pyi,sha256=UWca8Wli9YBMfRiNG0eBaaMsWC-Nfc-0Co8FxECsOaw,11488
|
|
110
|
+
bl_ui/properties_data_curve/__init__.pyi,sha256=hRyI3TpfyMQxDVU0INQP17xVeXExRUYlAJVK0mW0h2A,12683
|
|
111
|
+
bl_ui/properties_data_curves/__init__.pyi,sha256=29DX-4q-wcR7e5LEKtEYUqFpJIvngKmd3YQ0TbcNSAg,5235
|
|
112
|
+
bl_ui/properties_data_empty/__init__.pyi,sha256=J-9WsVohkiww-FHitXtE-72qh5y4c-3pRvXM0HOzYVU,1893
|
|
113
|
+
bl_ui/properties_data_gpencil/__init__.pyi,sha256=S6yLtD9Wyb-3IzoJi9ssikEGA0x_DcgvmD5eKGoXzTo,13591
|
|
114
|
+
bl_ui/properties_data_grease_pencil/__init__.pyi,sha256=oHtesomrqknynuwZqmBmL6bTN6A8zTae9TIXPU3NSUw,10923
|
|
115
|
+
bl_ui/properties_data_lattice/__init__.pyi,sha256=4ll650c79FX2W1EXOJvUXdzxZaVgiT-dIcAdQMLWIJo,2566
|
|
116
|
+
bl_ui/properties_data_light/__init__.pyi,sha256=oS44pzkuEWlthzPrl3Uc71VDa42B4w3dOjpPLgeqih0,10258
|
|
117
|
+
bl_ui/properties_data_lightprobe/__init__.pyi,sha256=fmlx6nj-fbXLC_Lvsp4gc-V-MbS0N3bzb6z7j0tm960,10395
|
|
118
|
+
bl_ui/properties_data_mesh/__init__.pyi,sha256=Xx_8qrPMAAmiHrLv7Vrhs0h7z0LnGQRPfgBe9J-NeqU,16178
|
|
119
|
+
bl_ui/properties_data_metaball/__init__.pyi,sha256=GJ2-a08w7y6j4pwstewyWTUvcFJsUqvHXmmAXNZde3s,4091
|
|
120
|
+
bl_ui/properties_data_modifier/__init__.pyi,sha256=L7VRQvpQEn4erLfA7bG9UZ6lJHith9hkIyvxNyxAIrA,8193
|
|
121
|
+
bl_ui/properties_data_pointcloud/__init__.pyi,sha256=KOvgX1FIYSPDhBh5on_TkmLjFJwlzQEHCQUgd66J_7g,4557
|
|
122
|
+
bl_ui/properties_data_shaderfx/__init__.pyi,sha256=VW50W0Xu8Ob9OUBJNf56bR0BUhjs420Q9U7moB-uaxE,1005
|
|
123
|
+
bl_ui/properties_data_speaker/__init__.pyi,sha256=abBkafPR3_RPz6b2oE8X3TXPh2MiUc67twamAyu9N6U,4078
|
|
124
|
+
bl_ui/properties_data_volume/__init__.pyi,sha256=Cz1uQoxor_vJBmUEPRYoBaf49_vqLBSQ_svvMkPOyiU,6487
|
|
125
|
+
bl_ui/properties_freestyle/__init__.pyi,sha256=e_e6Ct3zAwrsTGjyz6JXTRBfAUrHuoDWswgzGwvwslY,24368
|
|
126
126
|
bl_ui/properties_grease_pencil_common/__init__.pyi,sha256=0A8ZqdmsA_n_GsS_CnRve8QYUe-ec2E10MQQVM0TD1Q,13732
|
|
127
127
|
bl_ui/properties_mask_common/__init__.pyi,sha256=QrX_rxiBAFYX4K8pRtKSe6begdrnnvPjM5gqFEPKI1s,6480
|
|
128
|
-
bl_ui/properties_material/__init__.pyi,sha256=
|
|
129
|
-
bl_ui/properties_material_gpencil/__init__.pyi,sha256=
|
|
130
|
-
bl_ui/properties_object/__init__.pyi,sha256=
|
|
131
|
-
bl_ui/properties_output/__init__.pyi,sha256=
|
|
132
|
-
bl_ui/properties_paint_common/__init__.pyi,sha256=
|
|
133
|
-
bl_ui/properties_particle/__init__.pyi,sha256=
|
|
134
|
-
bl_ui/properties_physics_cloth/__init__.pyi,sha256=
|
|
135
|
-
bl_ui/properties_physics_common/__init__.pyi,sha256=
|
|
136
|
-
bl_ui/properties_physics_dynamicpaint/__init__.pyi,sha256=
|
|
137
|
-
bl_ui/properties_physics_field/__init__.pyi,sha256=
|
|
138
|
-
bl_ui/properties_physics_fluid/__init__.pyi,sha256=
|
|
128
|
+
bl_ui/properties_material/__init__.pyi,sha256=J58qNh5sVyOKpQNEnc7bVxaOtMvBfdsmtjwuhxvgFSg,13029
|
|
129
|
+
bl_ui/properties_material_gpencil/__init__.pyi,sha256=UtIiIpseTK5tYNM0t-azQc4lYdDBxogZtAsVCi7Pvd8,7962
|
|
130
|
+
bl_ui/properties_object/__init__.pyi,sha256=koVH1_8m8OGFC6P62D01ilL6FFYaOKFXDzIj0P3FVEI,10949
|
|
131
|
+
bl_ui/properties_output/__init__.pyi,sha256=eFAWoONXgseCzPgyIm5_8CJBQ1s8oK7mVVVuP4HValo,14589
|
|
132
|
+
bl_ui/properties_paint_common/__init__.pyi,sha256=OwClp_jqUhKnJDElDeR_NE9mO8Gi70ZVG1BCVTHXIDE,7253
|
|
133
|
+
bl_ui/properties_particle/__init__.pyi,sha256=Mf-VZVGiD2uymI1zwWUqIKwK9w92JgmzUUolZ-gY-fo,44869
|
|
134
|
+
bl_ui/properties_physics_cloth/__init__.pyi,sha256=CpZmkSu2-Olw-m7KygyqXnjdhjOCmyr-4vU-6tUKxtI,11325
|
|
135
|
+
bl_ui/properties_physics_common/__init__.pyi,sha256=wS4Mkz_OuM02HqdsWmmit9cCBKnFxlTIda-7Wn5BV2I,1498
|
|
136
|
+
bl_ui/properties_physics_dynamicpaint/__init__.pyi,sha256=HgHLU8fPTI-G6ivCJttCUE5I49hhJc9idtAhsckFMzo,20997
|
|
137
|
+
bl_ui/properties_physics_field/__init__.pyi,sha256=Mc9ZT3UAXZ7qwmSGzPSjNC38jdTx1xW8oleMj6EwtOU,8986
|
|
138
|
+
bl_ui/properties_physics_fluid/__init__.pyi,sha256=1jy4-QHmOB8p3Pxq17eDGNi-1ntpTKwW5EyWlBYa6ew,26418
|
|
139
139
|
bl_ui/properties_physics_geometry_nodes/__init__.pyi,sha256=M58C6_9Kwd0hg7ZtYwk8f-wwUkx3SYGgcjJ3RbsoArQ,1126
|
|
140
|
-
bl_ui/properties_physics_rigidbody/__init__.pyi,sha256=
|
|
141
|
-
bl_ui/properties_physics_rigidbody_constraint/__init__.pyi,sha256=
|
|
142
|
-
bl_ui/properties_physics_softbody/__init__.pyi,sha256=
|
|
143
|
-
bl_ui/properties_render/__init__.pyi,sha256=
|
|
144
|
-
bl_ui/properties_scene/__init__.pyi,sha256=
|
|
145
|
-
bl_ui/properties_texture/__init__.pyi,sha256=
|
|
146
|
-
bl_ui/properties_view_layer/__init__.pyi,sha256=
|
|
147
|
-
bl_ui/properties_workspace/__init__.pyi,sha256=
|
|
148
|
-
bl_ui/properties_world/__init__.pyi,sha256=
|
|
149
|
-
bl_ui/space_clip/__init__.pyi,sha256=
|
|
140
|
+
bl_ui/properties_physics_rigidbody/__init__.pyi,sha256=Uea9UGWk1_0DXfgLnm6B2dcBsjvKrl3CN3Qx1I4OvZM,7421
|
|
141
|
+
bl_ui/properties_physics_rigidbody_constraint/__init__.pyi,sha256=b6yEl8dIh07ddUjL8qz5f_79IJ8c8IT6ta-N7OW2Xe0,11855
|
|
142
|
+
bl_ui/properties_physics_softbody/__init__.pyi,sha256=2ajb_3uqKCk6abP6_4mRTBLI3SwVgBXpdf80B1GsV7U,12330
|
|
143
|
+
bl_ui/properties_render/__init__.pyi,sha256=sVawj27Lk3BkUGY_949qyRv7s7NvpNkcMVtKoZMR-bE,47049
|
|
144
|
+
bl_ui/properties_scene/__init__.pyi,sha256=sXZcOpdjDCy6GwsEBHNsKltqoIseyFrm6c1Ss6Kik7k,12220
|
|
145
|
+
bl_ui/properties_texture/__init__.pyi,sha256=_IjhjrRPMSIr1HkrlFmNhMP_nRlkPri55_jkNtJaulw,21446
|
|
146
|
+
bl_ui/properties_view_layer/__init__.pyi,sha256=RgHk_e-AEpGQDe1_nyHbq9sMYn22fXUcd60fZzKQ66Q,13288
|
|
147
|
+
bl_ui/properties_workspace/__init__.pyi,sha256=nI0ZVlZhZ35okRz2jkucYY1Kjp5Vjq9dZn6wTonJqKk,3694
|
|
148
|
+
bl_ui/properties_world/__init__.pyi,sha256=aXN0ki71ZNx52I-E_yyKklE6JYMNjG2g16DPpwsk4Vk,8567
|
|
149
|
+
bl_ui/space_clip/__init__.pyi,sha256=BJVKfsiw9TUlGARyjcvw2ZhtnRwdd29jw5mmwXQfo3c,48173
|
|
150
150
|
bl_ui/space_console/__init__.pyi,sha256=Jp7qS1JG908U8D4zA_MJQnTogM2MjoHCXliT41A-7P0,3773
|
|
151
|
-
bl_ui/space_dopesheet/__init__.pyi,sha256=
|
|
152
|
-
bl_ui/space_filebrowser/__init__.pyi,sha256=
|
|
153
|
-
bl_ui/space_graph/__init__.pyi,sha256=
|
|
154
|
-
bl_ui/space_image/__init__.pyi,sha256=
|
|
151
|
+
bl_ui/space_dopesheet/__init__.pyi,sha256=CSqkP_mE4XIZY7y3jMJ0JAeQfjIhriqi7ZyIeZBMizA,21654
|
|
152
|
+
bl_ui/space_filebrowser/__init__.pyi,sha256=kUDolLqz9DDhSBgX-4s1QFgxm0m-7wFUNaES77ankXU,20906
|
|
153
|
+
bl_ui/space_graph/__init__.pyi,sha256=_wo0TqTExEXr4CbK_YWWiJ1F3DEjb-M9urKUz7Pvwjo,12094
|
|
154
|
+
bl_ui/space_image/__init__.pyi,sha256=PB3iIL5LL1x1OUKHGjCXMYJfVKSi1H5z81KwW2vLkek,48361
|
|
155
155
|
bl_ui/space_info/__init__.pyi,sha256=wEls-LeuTHHujIPHB0YTLilbwB1inP-aLBsxA9_5P_c,3743
|
|
156
|
-
bl_ui/space_nla/__init__.pyi,sha256=
|
|
157
|
-
bl_ui/space_node/__init__.pyi,sha256=
|
|
156
|
+
bl_ui/space_nla/__init__.pyi,sha256=Ggc5NE7j-saj0ZLC8X8qycJCslFUMtKuWTeu0yGxwfk,10516
|
|
157
|
+
bl_ui/space_node/__init__.pyi,sha256=8nTvsdh6B3psuQrSXBM51ElDIOogfagXYaNn5Vs2VBE,19631
|
|
158
158
|
bl_ui/space_outliner/__init__.pyi,sha256=CKB07oiDknekp95c_434m4xgjOgbf73r8YPdV-sX-Is,9060
|
|
159
159
|
bl_ui/space_properties/__init__.pyi,sha256=tMJwra88ICRHfIAsVUw7NbgR2O_UCBT1bpmHKxRRKVU,2158
|
|
160
|
-
bl_ui/space_sequencer/__init__.pyi,sha256=
|
|
160
|
+
bl_ui/space_sequencer/__init__.pyi,sha256=L28xhZdvCGxg3gZBskrWz5aQs-K3iaVywG5HcYaJmYQ,56023
|
|
161
161
|
bl_ui/space_spreadsheet/__init__.pyi,sha256=oYVY-y_O99L41Nh39_p6gRRWIiUiMJ4FqDJxEZfzTuE,1690
|
|
162
162
|
bl_ui/space_statusbar/__init__.pyi,sha256=keQUhZVdL4xfK_xzN7YhUOUFUNrZ5MS6tbYv8UAncmM,779
|
|
163
163
|
bl_ui/space_text/__init__.pyi,sha256=KURAnz3EIJ74-d65b0v0QxnH4t4X3iGeU3jNkR9fVAg,9849
|
|
164
|
-
bl_ui/space_time/__init__.pyi,sha256=
|
|
164
|
+
bl_ui/space_time/__init__.pyi,sha256=jgbS2-_20wqch0m1m3vQLu4aFQiQsPtBjFZRgEBbOwc,5221
|
|
165
165
|
bl_ui/space_toolsystem_common/__init__.pyi,sha256=5PgWPIEglv-U3oLr19w-5HIgXjGW-I15JRZtltJUSBw,3422
|
|
166
|
-
bl_ui/space_toolsystem_toolbar/__init__.pyi,sha256=
|
|
166
|
+
bl_ui/space_toolsystem_toolbar/__init__.pyi,sha256=c3T0uKYIj0FumIIqG93O9zujit8qXnmxi1uHh0DZbiw,11493
|
|
167
167
|
bl_ui/space_topbar/__init__.pyi,sha256=qcsRKJdCJDEzuOk_ARVj2LtYmpAGylH9MOa8CD8HGXM,17142
|
|
168
|
-
bl_ui/space_userpref/__init__.pyi,sha256=
|
|
169
|
-
bl_ui/space_view3d/__init__.pyi,sha256=
|
|
170
|
-
bl_ui/space_view3d_toolbar/__init__.pyi,sha256=
|
|
168
|
+
bl_ui/space_userpref/__init__.pyi,sha256=x8BhKySsULIF1IQWpc4uxQe2YZS77QRsBtnl-U4_VI4,82232
|
|
169
|
+
bl_ui/space_view3d/__init__.pyi,sha256=Gxp6iQlhFkV-lL5QvqNad_AlbMre6riEote8WP_XmaE,179110
|
|
170
|
+
bl_ui/space_view3d_toolbar/__init__.pyi,sha256=3FuDw086C0GENguy5Buoe88FDZzPMVeum31RDWl3bec,83676
|
|
171
171
|
bl_ui/temp_anim_layers/__init__.pyi,sha256=3p3RAZ-IK7jubI8zm30k7izmlXM03f9Ag9YE9XI2DPo,1003
|
|
172
172
|
bl_ui/utils/__init__.pyi,sha256=OrumGsAE1S8zBxb80PtYlulQjeAcKneShcJLU-giz5o,612
|
|
173
173
|
bl_ui_utils/__init__.pyi,sha256=vgXVU4nsCF3zhnHE_SDR6uStqs5xYYCgdthPIk1KigI,205
|
|
@@ -285,7 +285,7 @@ bpy_extras/image_utils/__init__.pyi,sha256=HbnlzXL7DBgIwMDwPuCthWg-a9abMi6uyUney
|
|
|
285
285
|
bpy_extras/io_utils/__init__.pyi,sha256=xGO8lUTqunN6A4dwCVRzSbgQWbByn2fUozJuUPPMGFM,5387
|
|
286
286
|
bpy_extras/keyconfig_utils/__init__.pyi,sha256=RV7ReJDC4bFMKo9fK1VXhwpxIzINfo09Pe5_qqtjHtA,472
|
|
287
287
|
bpy_extras/mesh_utils/__init__.pyi,sha256=coa7ucq266gaWClUN94q5sTG1QBwCO6tziyrENg7BcQ,2726
|
|
288
|
-
bpy_extras/node_shader_utils/__init__.pyi,sha256=
|
|
288
|
+
bpy_extras/node_shader_utils/__init__.pyi,sha256=WpluI2xZNdKFcidF0vEAWKf-U3VFBae0kW7gtyv2J1Q,5932
|
|
289
289
|
bpy_extras/node_utils/__init__.pyi,sha256=KiQjiDQGJChfC3UyJQR8wnXxn4UVeUcC7gI3Dj3XgVM,741
|
|
290
290
|
bpy_extras/object_utils/__init__.pyi,sha256=BnC8oYjoyY8GZbmEXK4fmgvgGNJC7Ng8aq4xBA5G_ac,3384
|
|
291
291
|
bpy_extras/view3d_utils/__init__.pyi,sha256=qsVBesUMePjIzm9f4a1O8lriuHVPRSN66ZFRSHj4-I0,3897
|
|
@@ -330,7 +330,7 @@ idprop/types/__init__.pyi,sha256=T614leJN7OyMohDTRhry7i-OttIlt7U2DpWOrbTjbNU,186
|
|
|
330
330
|
imbuf/__init__.pyi,sha256=BI3_mfj995V2WTKILNsDv4tWimUTaoNAxWRrlCAyiqk,1183
|
|
331
331
|
imbuf/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
332
332
|
imbuf/types/__init__.pyi,sha256=eRAZUjTlwmIspAK6rL3j0YYj-77OMyMBKD6hdesijas,1337
|
|
333
|
-
keyingsets_builtins/__init__.pyi,sha256=
|
|
333
|
+
keyingsets_builtins/__init__.pyi,sha256=rO0rRJwSXg47-v-wiEi5rjLzkab26KLKRveoozMK7GI,16636
|
|
334
334
|
keyingsets_builtins/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
335
335
|
keyingsets_utils/__init__.pyi,sha256=GM90DATed06QP-LtGvltmKfalWq6tTUeHhUeuRb3hNE,863
|
|
336
336
|
keyingsets_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -341,7 +341,7 @@ mathutils/geometry/__init__.pyi,sha256=V86d1sF454Aiu7gAfx4zWkaf4vrsgzDgz6Q_S9vRJ
|
|
|
341
341
|
mathutils/interpolate/__init__.pyi,sha256=Zl76R_uMDu1-zJkGvOiqlBKv2btUpJpcOG71RZVupn0,403
|
|
342
342
|
mathutils/kdtree/__init__.pyi,sha256=W86zDhpTYhp7pMN1FPJWWkM0vtGohS-FEE-H5HIq_IQ,2334
|
|
343
343
|
mathutils/noise/__init__.pyi,sha256=ViPYbgm865PRIwttOqSzUBl531ueEqabhln_rNoAYgs,12872
|
|
344
|
-
nodeitems_builtins/__init__.pyi,sha256=
|
|
344
|
+
nodeitems_builtins/__init__.pyi,sha256=VThQOPuWQPwMWtBYb8CRR-PEv1JCxuDBvhchzlwLNlA,715
|
|
345
345
|
nodeitems_builtins/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
346
346
|
nodeitems_utils/__init__.pyi,sha256=81IIY6RJHw_nm6y_sYSlwLOTO8m4QRwOJfI3VBco2lk,864
|
|
347
347
|
nodeitems_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -355,7 +355,7 @@ rna_xml/__init__.pyi,sha256=aUk0kaxu1bMT5z1b2S_CnI0r-p7119GGYDjeV65sx6w,670
|
|
|
355
355
|
rna_xml/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
356
356
|
sys_info/__init__.pyi,sha256=-GCmGVtiditgEnxiqi7hwH2wbEMmrtUNGvMEbxVezU4,189
|
|
357
357
|
sys_info/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
358
|
-
fake_bpy_module-
|
|
359
|
-
fake_bpy_module-
|
|
360
|
-
fake_bpy_module-
|
|
361
|
-
fake_bpy_module-
|
|
358
|
+
fake_bpy_module-20240722.dist-info/METADATA,sha256=iCYf2m63IS4JmJ1FTRDBwUzmkO_O993WLFH18zcSo0A,7188
|
|
359
|
+
fake_bpy_module-20240722.dist-info/WHEEL,sha256=Wyh-_nZ0DJYolHNn1_hMa4lM7uDedD_RGVwbmTjyItk,91
|
|
360
|
+
fake_bpy_module-20240722.dist-info/top_level.txt,sha256=laOLfHIg0_6N4ntsGrWh85yODawYeLVGI-wex_FGLUI,509
|
|
361
|
+
fake_bpy_module-20240722.dist-info/RECORD,,
|
keyingsets_builtins/__init__.pyi
CHANGED
|
@@ -594,7 +594,7 @@ class BUILTIN_KSI_VisualScaling(bpy.types.KeyingSetInfo):
|
|
|
594
594
|
"""
|
|
595
595
|
...
|
|
596
596
|
|
|
597
|
-
class BUILTIN_KSI_WholeCharacter(
|
|
597
|
+
class BUILTIN_KSI_WholeCharacter(bpy.types.KeyingSetInfo):
|
|
598
598
|
"""Insert a keyframe for all properties that are likely to get animated in a character rig (useful when blocking out a shot)"""
|
|
599
599
|
|
|
600
600
|
badBonePrefixes: typing.Any
|
|
@@ -619,7 +619,7 @@ class BUILTIN_KSI_WholeCharacter(WholeCharacterMixin, bpy.types.KeyingSetInfo):
|
|
|
619
619
|
"""
|
|
620
620
|
...
|
|
621
621
|
|
|
622
|
-
class BUILTIN_KSI_WholeCharacterSelected(
|
|
622
|
+
class BUILTIN_KSI_WholeCharacterSelected(bpy.types.KeyingSetInfo):
|
|
623
623
|
"""Insert a keyframe for all properties that are likely to get animated in a character rig (only selected bones)"""
|
|
624
624
|
|
|
625
625
|
badBonePrefixes: typing.Any
|
nodeitems_builtins/__init__.pyi
CHANGED
|
@@ -6,7 +6,7 @@ import nodeitems_utils
|
|
|
6
6
|
GenericType1 = typing.TypeVar("GenericType1")
|
|
7
7
|
GenericType2 = typing.TypeVar("GenericType2")
|
|
8
8
|
|
|
9
|
-
class CompositorNodeCategory(
|
|
9
|
+
class CompositorNodeCategory(nodeitems_utils.NodeCategory):
|
|
10
10
|
@classmethod
|
|
11
11
|
def poll(cls, context):
|
|
12
12
|
"""
|
|
@@ -15,7 +15,7 @@ class CompositorNodeCategory(SortedNodeCategory, nodeitems_utils.NodeCategory):
|
|
|
15
15
|
"""
|
|
16
16
|
...
|
|
17
17
|
|
|
18
|
-
class ShaderNodeCategory(
|
|
18
|
+
class ShaderNodeCategory(nodeitems_utils.NodeCategory):
|
|
19
19
|
@classmethod
|
|
20
20
|
def poll(cls, context):
|
|
21
21
|
"""
|
|
@@ -24,7 +24,7 @@ class ShaderNodeCategory(SortedNodeCategory, nodeitems_utils.NodeCategory):
|
|
|
24
24
|
"""
|
|
25
25
|
...
|
|
26
26
|
|
|
27
|
-
class SortedNodeCategory
|
|
27
|
+
class SortedNodeCategory: ...
|
|
28
28
|
|
|
29
29
|
def group_input_output_item_poll(context): ...
|
|
30
30
|
def group_tools_draw(_self, layout, _context): ...
|
|
File without changes
|