fake-bpy-module 20240706__py3-none-any.whl → 20240707__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/assets/__init__.pyi +8 -8
- bl_operators/image_as_planes/__init__.pyi +43 -43
- bl_operators/node/__init__.pyi +234 -234
- bl_operators/object_quick_effects/__init__.pyi +21 -21
- bl_operators/presets/__init__.pyi +388 -388
- bl_ui/properties_collection/__init__.pyi +12 -12
- bl_ui/properties_constraint/__init__.pyi +954 -954
- bl_ui/properties_data_armature/__init__.pyi +85 -85
- bl_ui/properties_data_bone/__init__.pyi +12 -12
- bl_ui/properties_data_curve/__init__.pyi +92 -92
- bl_ui/properties_data_curves/__init__.pyi +12 -12
- bl_ui/properties_data_empty/__init__.pyi +12 -12
- bl_ui/properties_data_gpencil/__init__.pyi +265 -265
- bl_ui/properties_data_grease_pencil/__init__.pyi +312 -312
- bl_ui/properties_data_lattice/__init__.pyi +12 -12
- bl_ui/properties_data_light/__init__.pyi +12 -12
- bl_ui/properties_data_lightprobe/__init__.pyi +12 -12
- bl_ui/properties_data_mesh/__init__.pyi +527 -527
- bl_ui/properties_data_metaball/__init__.pyi +12 -12
- bl_ui/properties_data_modifier/__init__.pyi +19 -19
- bl_ui/properties_data_pointcloud/__init__.pyi +140 -140
- bl_ui/properties_data_shaderfx/__init__.pyi +5 -5
- bl_ui/properties_data_speaker/__init__.pyi +12 -12
- bl_ui/properties_data_volume/__init__.pyi +65 -65
- bl_ui/properties_freestyle/__init__.pyi +248 -248
- bl_ui/properties_material/__init__.pyi +145 -145
- bl_ui/properties_material_gpencil/__init__.pyi +86 -86
- bl_ui/properties_object/__init__.pyi +75 -75
- bl_ui/properties_output/__init__.pyi +201 -201
- bl_ui/properties_particle/__init__.pyi +220 -220
- bl_ui/properties_physics_cloth/__init__.pyi +12 -12
- bl_ui/properties_physics_common/__init__.pyi +12 -12
- bl_ui/properties_physics_dynamicpaint/__init__.pyi +187 -187
- bl_ui/properties_physics_field/__init__.pyi +19 -19
- bl_ui/properties_physics_fluid/__init__.pyi +61 -61
- bl_ui/properties_physics_rigidbody/__init__.pyi +5 -5
- bl_ui/properties_physics_rigidbody_constraint/__init__.pyi +5 -5
- bl_ui/properties_physics_softbody/__init__.pyi +12 -12
- bl_ui/properties_render/__init__.pyi +217 -217
- bl_ui/properties_scene/__init__.pyi +143 -143
- bl_ui/properties_texture/__init__.pyi +156 -156
- bl_ui/properties_view_layer/__init__.pyi +78 -78
- bl_ui/properties_workspace/__init__.pyi +64 -64
- bl_ui/properties_world/__init__.pyi +12 -12
- bl_ui/space_clip/__init__.pyi +366 -366
- bl_ui/space_dopesheet/__init__.pyi +176 -176
- bl_ui/space_filebrowser/__init__.pyi +735 -735
- bl_ui/space_image/__init__.pyi +646 -646
- bl_ui/space_sequencer/__init__.pyi +841 -389
- bl_ui/space_time/__init__.pyi +11 -11
- bl_ui/space_userpref/__init__.pyi +684 -684
- bl_ui/space_view3d/__init__.pyi +1152 -1152
- bl_ui/space_view3d_toolbar/__init__.pyi +2831 -2831
- bpy/types/__init__.pyi +69750 -69696
- {fake_bpy_module-20240706.dist-info → fake_bpy_module-20240707.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240706.dist-info → fake_bpy_module-20240707.dist-info}/RECORD +62 -62
- freestyle/utils/__init__.pyi +1 -1
- keyingsets_builtins/__init__.pyi +87 -87
- mathutils/__init__.pyi +156 -6
- nodeitems_builtins/__init__.pyi +7 -7
- {fake_bpy_module-20240706.dist-info → fake_bpy_module-20240707.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240706.dist-info → fake_bpy_module-20240707.dist-info}/top_level.txt +0 -0
|
@@ -14,8 +14,8 @@ class ObjectModeOperator:
|
|
|
14
14
|
"""
|
|
15
15
|
...
|
|
16
16
|
|
|
17
|
-
class
|
|
18
|
-
"""Make selected objects
|
|
17
|
+
class QuickExplode(ObjectModeOperator):
|
|
18
|
+
"""Make selected objects explode"""
|
|
19
19
|
|
|
20
20
|
bl_idname: typing.Any
|
|
21
21
|
bl_label: typing.Any
|
|
@@ -105,6 +105,14 @@ class QuickLiquid:
|
|
|
105
105
|
"""
|
|
106
106
|
...
|
|
107
107
|
|
|
108
|
+
def invoke(self, context, _event):
|
|
109
|
+
"""
|
|
110
|
+
|
|
111
|
+
:param context:
|
|
112
|
+
:param _event:
|
|
113
|
+
"""
|
|
114
|
+
...
|
|
115
|
+
|
|
108
116
|
def is_property_hidden(self) -> bool:
|
|
109
117
|
"""Check if a property is hidden.
|
|
110
118
|
|
|
@@ -182,6 +190,13 @@ class QuickLiquid:
|
|
|
182
190
|
"""Returns the property from the path, raise an exception when not found."""
|
|
183
191
|
...
|
|
184
192
|
|
|
193
|
+
def poll(self, context):
|
|
194
|
+
"""
|
|
195
|
+
|
|
196
|
+
:param context:
|
|
197
|
+
"""
|
|
198
|
+
...
|
|
199
|
+
|
|
185
200
|
def poll_message_set(self):
|
|
186
201
|
"""Set the message to show in the tool-tip when poll fails.When message is callable, additional user defined positional arguments are passed to the message function."""
|
|
187
202
|
...
|
|
@@ -221,8 +236,8 @@ class QuickLiquid:
|
|
|
221
236
|
"""
|
|
222
237
|
...
|
|
223
238
|
|
|
224
|
-
class
|
|
225
|
-
"""
|
|
239
|
+
class QuickFur(ObjectModeOperator):
|
|
240
|
+
"""Add a fur setup to the selected objects"""
|
|
226
241
|
|
|
227
242
|
bl_idname: typing.Any
|
|
228
243
|
bl_label: typing.Any
|
|
@@ -312,14 +327,6 @@ class QuickExplode(ObjectModeOperator):
|
|
|
312
327
|
"""
|
|
313
328
|
...
|
|
314
329
|
|
|
315
|
-
def invoke(self, context, _event):
|
|
316
|
-
"""
|
|
317
|
-
|
|
318
|
-
:param context:
|
|
319
|
-
:param _event:
|
|
320
|
-
"""
|
|
321
|
-
...
|
|
322
|
-
|
|
323
330
|
def is_property_hidden(self) -> bool:
|
|
324
331
|
"""Check if a property is hidden.
|
|
325
332
|
|
|
@@ -443,8 +450,8 @@ class QuickExplode(ObjectModeOperator):
|
|
|
443
450
|
"""
|
|
444
451
|
...
|
|
445
452
|
|
|
446
|
-
class
|
|
447
|
-
"""
|
|
453
|
+
class QuickLiquid:
|
|
454
|
+
"""Make selected objects liquid"""
|
|
448
455
|
|
|
449
456
|
bl_idname: typing.Any
|
|
450
457
|
bl_label: typing.Any
|
|
@@ -611,13 +618,6 @@ class QuickFur(ObjectModeOperator):
|
|
|
611
618
|
"""Returns the property from the path, raise an exception when not found."""
|
|
612
619
|
...
|
|
613
620
|
|
|
614
|
-
def poll(self, context):
|
|
615
|
-
"""
|
|
616
|
-
|
|
617
|
-
:param context:
|
|
618
|
-
"""
|
|
619
|
-
...
|
|
620
|
-
|
|
621
621
|
def poll_message_set(self):
|
|
622
622
|
"""Set the message to show in the tool-tip when poll fails.When message is callable, additional user defined positional arguments are passed to the message function."""
|
|
623
623
|
...
|