fake-bpy-module 20240508__py3-none-any.whl → 20240509__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.

Files changed (83) hide show
  1. bpy/ops/action/__init__.pyi +152 -76
  2. bpy/ops/anim/__init__.pyi +212 -106
  3. bpy/ops/armature/__init__.pyi +192 -96
  4. bpy/ops/asset/__init__.pyi +64 -32
  5. bpy/ops/boid/__init__.pyi +32 -16
  6. bpy/ops/brush/__init__.pyi +36 -18
  7. bpy/ops/buttons/__init__.pyi +24 -12
  8. bpy/ops/cachefile/__init__.pyi +20 -10
  9. bpy/ops/camera/__init__.pyi +8 -4
  10. bpy/ops/clip/__init__.pyi +368 -184
  11. bpy/ops/cloth/__init__.pyi +4 -2
  12. bpy/ops/collection/__init__.pyi +36 -18
  13. bpy/ops/console/__init__.pyi +84 -42
  14. bpy/ops/constraint/__init__.pyi +72 -36
  15. bpy/ops/curve/__init__.pyi +204 -102
  16. bpy/ops/curves/__init__.pyi +108 -54
  17. bpy/ops/cycles/__init__.pyi +12 -6
  18. bpy/ops/dpaint/__init__.pyi +20 -10
  19. bpy/ops/ed/__init__.pyi +48 -24
  20. bpy/ops/export_anim/__init__.pyi +4 -2
  21. bpy/ops/export_mesh/__init__.pyi +4 -2
  22. bpy/ops/export_scene/__init__.pyi +16 -10
  23. bpy/ops/file/__init__.pyi +160 -80
  24. bpy/ops/fluid/__init__.pyi +56 -28
  25. bpy/ops/font/__init__.pyi +92 -46
  26. bpy/ops/geometry/__init__.pyi +40 -20
  27. bpy/ops/gizmogroup/__init__.pyi +8 -4
  28. bpy/ops/gpencil/__init__.pyi +600 -300
  29. bpy/ops/graph/__init__.pyi +260 -130
  30. bpy/ops/grease_pencil/__init__.pyi +268 -134
  31. bpy/ops/image/__init__.pyi +188 -94
  32. bpy/ops/import_anim/__init__.pyi +4 -2
  33. bpy/ops/import_curve/__init__.pyi +4 -2
  34. bpy/ops/import_mesh/__init__.pyi +4 -2
  35. bpy/ops/import_scene/__init__.pyi +12 -6
  36. bpy/ops/info/__init__.pyi +28 -14
  37. bpy/ops/lattice/__init__.pyi +32 -16
  38. bpy/ops/marker/__init__.pyi +44 -22
  39. bpy/ops/mask/__init__.pyi +156 -78
  40. bpy/ops/material/__init__.pyi +12 -6
  41. bpy/ops/mball/__init__.pyi +32 -16
  42. bpy/ops/mesh/__init__.pyi +652 -326
  43. bpy/ops/nla/__init__.pyi +159 -81
  44. bpy/ops/node/__init__.pyi +404 -202
  45. bpy/ops/object/__init__.pyi +1002 -490
  46. bpy/ops/outliner/__init__.pyi +276 -138
  47. bpy/ops/paint/__init__.pyi +212 -106
  48. bpy/ops/paintcurve/__init__.pyi +32 -16
  49. bpy/ops/palette/__init__.pyi +28 -14
  50. bpy/ops/particle/__init__.pyi +144 -72
  51. bpy/ops/pose/__init__.pyi +156 -78
  52. bpy/ops/poselib/__init__.pyi +36 -18
  53. bpy/ops/preferences/__init__.pyi +152 -76
  54. bpy/ops/ptcache/__init__.pyi +28 -14
  55. bpy/ops/render/__init__.pyi +48 -24
  56. bpy/ops/rigidbody/__init__.pyi +52 -26
  57. bpy/ops/scene/__init__.pyi +156 -78
  58. bpy/ops/screen/__init__.pyi +156 -78
  59. bpy/ops/script/__init__.pyi +12 -6
  60. bpy/ops/sculpt/__init__.pyi +134 -68
  61. bpy/ops/sculpt_curves/__init__.pyi +16 -8
  62. bpy/ops/sequencer/__init__.pyi +340 -170
  63. bpy/ops/sound/__init__.pyi +28 -14
  64. bpy/ops/spreadsheet/__init__.pyi +16 -8
  65. bpy/ops/surface/__init__.pyi +24 -12
  66. bpy/ops/text/__init__.pyi +172 -86
  67. bpy/ops/text_editor/__init__.pyi +4 -2
  68. bpy/ops/texture/__init__.pyi +16 -8
  69. bpy/ops/transform/__init__.pyi +108 -54
  70. bpy/ops/ui/__init__.pyi +132 -66
  71. bpy/ops/uilist/__init__.pyi +12 -6
  72. bpy/ops/uv/__init__.pyi +196 -98
  73. bpy/ops/view2d/__init__.pyi +56 -28
  74. bpy/ops/view3d/__init__.pyi +268 -134
  75. bpy/ops/wm/__init__.pyi +493 -224
  76. bpy/ops/workspace/__init__.pyi +28 -14
  77. bpy/ops/world/__init__.pyi +4 -2
  78. bpy/types/__init__.pyi +396 -28
  79. {fake_bpy_module-20240508.dist-info → fake_bpy_module-20240509.dist-info}/METADATA +1 -1
  80. {fake_bpy_module-20240508.dist-info → fake_bpy_module-20240509.dist-info}/RECORD +83 -83
  81. mathutils/__init__.pyi +20 -0
  82. {fake_bpy_module-20240508.dist-info → fake_bpy_module-20240509.dist-info}/WHEEL +0 -0
  83. {fake_bpy_module-20240508.dist-info → fake_bpy_module-20240509.dist-info}/top_level.txt +0 -0
@@ -4,7 +4,9 @@ import bpy.types
4
4
  GenericType = typing.TypeVar("GenericType")
5
5
 
6
6
  def execute_preset(
7
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
7
+ override_context: typing.Optional[
8
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
9
+ ] = None,
8
10
  execution_context: typing.Optional[typing.Union[str, int]] = None,
9
11
  undo: typing.Optional[bool] = None,
10
12
  filepath: typing.Union[str, typing.Any] = "",
@@ -12,7 +14,7 @@ def execute_preset(
12
14
  ):
13
15
  """Load a preset
14
16
 
15
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
17
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
16
18
  :type execution_context: typing.Optional[typing.Union[str, int]]
17
19
  :type undo: typing.Optional[bool]
18
20
  :param filepath: filepath
@@ -24,14 +26,16 @@ def execute_preset(
24
26
  ...
25
27
 
26
28
  def python_file_run(
27
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
29
+ override_context: typing.Optional[
30
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
31
+ ] = None,
28
32
  execution_context: typing.Optional[typing.Union[str, int]] = None,
29
33
  undo: typing.Optional[bool] = None,
30
34
  filepath: typing.Union[str, typing.Any] = "",
31
35
  ):
32
36
  """Run Python file
33
37
 
34
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
38
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
35
39
  :type execution_context: typing.Optional[typing.Union[str, int]]
36
40
  :type undo: typing.Optional[bool]
37
41
  :param filepath: Path
@@ -41,13 +45,15 @@ def python_file_run(
41
45
  ...
42
46
 
43
47
  def reload(
44
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
48
+ override_context: typing.Optional[
49
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
50
+ ] = None,
45
51
  execution_context: typing.Optional[typing.Union[str, int]] = None,
46
52
  undo: typing.Optional[bool] = None,
47
53
  ):
48
54
  """Reload scripts
49
55
 
50
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
56
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
51
57
  :type execution_context: typing.Optional[typing.Union[str, int]]
52
58
  :type undo: typing.Optional[bool]
53
59
  """