fake-bpy-module 20240508__py3-none-any.whl → 20240510__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 (84) hide show
  1. bmesh/ops/__init__.pyi +106 -106
  2. bpy/ops/action/__init__.pyi +152 -76
  3. bpy/ops/anim/__init__.pyi +212 -106
  4. bpy/ops/armature/__init__.pyi +192 -96
  5. bpy/ops/asset/__init__.pyi +64 -32
  6. bpy/ops/boid/__init__.pyi +32 -16
  7. bpy/ops/brush/__init__.pyi +36 -18
  8. bpy/ops/buttons/__init__.pyi +24 -12
  9. bpy/ops/cachefile/__init__.pyi +20 -10
  10. bpy/ops/camera/__init__.pyi +8 -4
  11. bpy/ops/clip/__init__.pyi +368 -184
  12. bpy/ops/cloth/__init__.pyi +4 -2
  13. bpy/ops/collection/__init__.pyi +36 -18
  14. bpy/ops/console/__init__.pyi +84 -42
  15. bpy/ops/constraint/__init__.pyi +72 -36
  16. bpy/ops/curve/__init__.pyi +204 -102
  17. bpy/ops/curves/__init__.pyi +108 -54
  18. bpy/ops/cycles/__init__.pyi +12 -6
  19. bpy/ops/dpaint/__init__.pyi +20 -10
  20. bpy/ops/ed/__init__.pyi +48 -24
  21. bpy/ops/export_anim/__init__.pyi +4 -2
  22. bpy/ops/export_mesh/__init__.pyi +4 -2
  23. bpy/ops/export_scene/__init__.pyi +15 -9
  24. bpy/ops/file/__init__.pyi +160 -80
  25. bpy/ops/fluid/__init__.pyi +56 -28
  26. bpy/ops/font/__init__.pyi +92 -46
  27. bpy/ops/geometry/__init__.pyi +40 -20
  28. bpy/ops/gizmogroup/__init__.pyi +8 -4
  29. bpy/ops/gpencil/__init__.pyi +600 -300
  30. bpy/ops/graph/__init__.pyi +260 -130
  31. bpy/ops/grease_pencil/__init__.pyi +268 -134
  32. bpy/ops/image/__init__.pyi +188 -94
  33. bpy/ops/import_anim/__init__.pyi +4 -2
  34. bpy/ops/import_curve/__init__.pyi +4 -2
  35. bpy/ops/import_mesh/__init__.pyi +4 -2
  36. bpy/ops/import_scene/__init__.pyi +12 -6
  37. bpy/ops/info/__init__.pyi +28 -14
  38. bpy/ops/lattice/__init__.pyi +32 -16
  39. bpy/ops/marker/__init__.pyi +44 -22
  40. bpy/ops/mask/__init__.pyi +156 -78
  41. bpy/ops/material/__init__.pyi +12 -6
  42. bpy/ops/mball/__init__.pyi +32 -16
  43. bpy/ops/mesh/__init__.pyi +652 -326
  44. bpy/ops/nla/__init__.pyi +158 -80
  45. bpy/ops/node/__init__.pyi +404 -202
  46. bpy/ops/object/__init__.pyi +1002 -490
  47. bpy/ops/outliner/__init__.pyi +276 -138
  48. bpy/ops/paint/__init__.pyi +212 -106
  49. bpy/ops/paintcurve/__init__.pyi +32 -16
  50. bpy/ops/palette/__init__.pyi +28 -14
  51. bpy/ops/particle/__init__.pyi +144 -72
  52. bpy/ops/pose/__init__.pyi +156 -78
  53. bpy/ops/poselib/__init__.pyi +36 -18
  54. bpy/ops/preferences/__init__.pyi +152 -76
  55. bpy/ops/ptcache/__init__.pyi +28 -14
  56. bpy/ops/render/__init__.pyi +48 -24
  57. bpy/ops/rigidbody/__init__.pyi +52 -26
  58. bpy/ops/scene/__init__.pyi +156 -78
  59. bpy/ops/screen/__init__.pyi +156 -78
  60. bpy/ops/script/__init__.pyi +12 -6
  61. bpy/ops/sculpt/__init__.pyi +134 -68
  62. bpy/ops/sculpt_curves/__init__.pyi +16 -8
  63. bpy/ops/sequencer/__init__.pyi +340 -170
  64. bpy/ops/sound/__init__.pyi +28 -14
  65. bpy/ops/spreadsheet/__init__.pyi +16 -8
  66. bpy/ops/surface/__init__.pyi +24 -12
  67. bpy/ops/text/__init__.pyi +172 -86
  68. bpy/ops/text_editor/__init__.pyi +4 -2
  69. bpy/ops/texture/__init__.pyi +16 -8
  70. bpy/ops/transform/__init__.pyi +108 -54
  71. bpy/ops/ui/__init__.pyi +132 -66
  72. bpy/ops/uilist/__init__.pyi +12 -6
  73. bpy/ops/uv/__init__.pyi +196 -98
  74. bpy/ops/view2d/__init__.pyi +56 -28
  75. bpy/ops/view3d/__init__.pyi +268 -134
  76. bpy/ops/wm/__init__.pyi +496 -227
  77. bpy/ops/workspace/__init__.pyi +28 -14
  78. bpy/ops/world/__init__.pyi +4 -2
  79. bpy/types/__init__.pyi +434 -37
  80. {fake_bpy_module-20240508.dist-info → fake_bpy_module-20240510.dist-info}/METADATA +1 -1
  81. {fake_bpy_module-20240508.dist-info → fake_bpy_module-20240510.dist-info}/RECORD +84 -84
  82. mathutils/__init__.pyi +20 -0
  83. {fake_bpy_module-20240508.dist-info → fake_bpy_module-20240510.dist-info}/WHEEL +0 -0
  84. {fake_bpy_module-20240508.dist-info → fake_bpy_module-20240510.dist-info}/top_level.txt +0 -0
@@ -4,13 +4,15 @@ import bpy.types
4
4
  GenericType = typing.TypeVar("GenericType")
5
5
 
6
6
  def copy(
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
  ):
11
13
  """Copy the material settings and nodes
12
14
 
13
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
15
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
14
16
  :type execution_context: typing.Optional[typing.Union[str, int]]
15
17
  :type undo: typing.Optional[bool]
16
18
  """
@@ -18,13 +20,15 @@ def copy(
18
20
  ...
19
21
 
20
22
  def new(
21
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
23
+ override_context: typing.Optional[
24
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
25
+ ] = None,
22
26
  execution_context: typing.Optional[typing.Union[str, int]] = None,
23
27
  undo: typing.Optional[bool] = None,
24
28
  ):
25
29
  """Add a new material
26
30
 
27
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
31
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
28
32
  :type execution_context: typing.Optional[typing.Union[str, int]]
29
33
  :type undo: typing.Optional[bool]
30
34
  """
@@ -32,13 +36,15 @@ def new(
32
36
  ...
33
37
 
34
38
  def paste(
35
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
39
+ override_context: typing.Optional[
40
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
41
+ ] = None,
36
42
  execution_context: typing.Optional[typing.Union[str, int]] = None,
37
43
  undo: typing.Optional[bool] = None,
38
44
  ):
39
45
  """Paste the material settings and nodes
40
46
 
41
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
47
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
42
48
  :type execution_context: typing.Optional[typing.Union[str, int]]
43
49
  :type undo: typing.Optional[bool]
44
50
  """
@@ -5,14 +5,16 @@ import bpy.types
5
5
  GenericType = typing.TypeVar("GenericType")
6
6
 
7
7
  def delete_metaelems(
8
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
8
+ override_context: typing.Optional[
9
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
10
+ ] = None,
9
11
  execution_context: typing.Optional[typing.Union[str, int]] = None,
10
12
  undo: typing.Optional[bool] = None,
11
13
  confirm: typing.Optional[typing.Union[bool, typing.Any]] = True,
12
14
  ):
13
15
  """Delete selected metaball element(s)
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 confirm: Confirm, Prompt for confirmation
@@ -22,13 +24,15 @@ def delete_metaelems(
22
24
  ...
23
25
 
24
26
  def duplicate_metaelems(
25
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
27
+ override_context: typing.Optional[
28
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
29
+ ] = None,
26
30
  execution_context: typing.Optional[typing.Union[str, int]] = None,
27
31
  undo: typing.Optional[bool] = None,
28
32
  ):
29
33
  """Duplicate selected metaball element(s)
30
34
 
31
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
35
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
32
36
  :type execution_context: typing.Optional[typing.Union[str, int]]
33
37
  :type undo: typing.Optional[bool]
34
38
  """
@@ -36,7 +40,9 @@ def duplicate_metaelems(
36
40
  ...
37
41
 
38
42
  def duplicate_move(
39
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
43
+ override_context: typing.Optional[
44
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
45
+ ] = None,
40
46
  execution_context: typing.Optional[typing.Union[str, int]] = None,
41
47
  undo: typing.Optional[bool] = None,
42
48
  MBALL_OT_duplicate_metaelems: typing.Optional[duplicate_metaelems] = None,
@@ -44,7 +50,7 @@ def duplicate_move(
44
50
  ):
45
51
  """Make copies of the selected metaball elements and move them
46
52
 
47
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
53
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
48
54
  :type execution_context: typing.Optional[typing.Union[str, int]]
49
55
  :type undo: typing.Optional[bool]
50
56
  :param MBALL_OT_duplicate_metaelems: Duplicate Metaball Elements, Duplicate selected metaball element(s)
@@ -56,14 +62,16 @@ def duplicate_move(
56
62
  ...
57
63
 
58
64
  def hide_metaelems(
59
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
65
+ override_context: typing.Optional[
66
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
67
+ ] = None,
60
68
  execution_context: typing.Optional[typing.Union[str, int]] = None,
61
69
  undo: typing.Optional[bool] = None,
62
70
  unselected: typing.Optional[typing.Union[bool, typing.Any]] = False,
63
71
  ):
64
72
  """Hide (un)selected metaball element(s)
65
73
 
66
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
74
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
67
75
  :type execution_context: typing.Optional[typing.Union[str, int]]
68
76
  :type undo: typing.Optional[bool]
69
77
  :param unselected: Unselected, Hide unselected rather than selected
@@ -73,14 +81,16 @@ def hide_metaelems(
73
81
  ...
74
82
 
75
83
  def reveal_metaelems(
76
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
84
+ override_context: typing.Optional[
85
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
86
+ ] = None,
77
87
  execution_context: typing.Optional[typing.Union[str, int]] = None,
78
88
  undo: typing.Optional[bool] = None,
79
89
  select: typing.Optional[typing.Union[bool, typing.Any]] = True,
80
90
  ):
81
91
  """Reveal all hidden metaball elements
82
92
 
83
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
93
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
84
94
  :type execution_context: typing.Optional[typing.Union[str, int]]
85
95
  :type undo: typing.Optional[bool]
86
96
  :param select: Select
@@ -90,14 +100,16 @@ def reveal_metaelems(
90
100
  ...
91
101
 
92
102
  def select_all(
93
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
103
+ override_context: typing.Optional[
104
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
105
+ ] = None,
94
106
  execution_context: typing.Optional[typing.Union[str, int]] = None,
95
107
  undo: typing.Optional[bool] = None,
96
108
  action: typing.Optional[typing.Any] = "TOGGLE",
97
109
  ):
98
110
  """Change selection of all metaball elements
99
111
 
100
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
112
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
101
113
  :type execution_context: typing.Optional[typing.Union[str, int]]
102
114
  :type undo: typing.Optional[bool]
103
115
  :param action: Action, Selection action to execute
@@ -119,7 +131,9 @@ def select_all(
119
131
  ...
120
132
 
121
133
  def select_random_metaelems(
122
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
134
+ override_context: typing.Optional[
135
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
136
+ ] = None,
123
137
  execution_context: typing.Optional[typing.Union[str, int]] = None,
124
138
  undo: typing.Optional[bool] = None,
125
139
  ratio: typing.Optional[typing.Any] = 0.5,
@@ -128,7 +142,7 @@ def select_random_metaelems(
128
142
  ):
129
143
  """Randomly select metaball elements
130
144
 
131
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
145
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
132
146
  :type execution_context: typing.Optional[typing.Union[str, int]]
133
147
  :type undo: typing.Optional[bool]
134
148
  :param ratio: Ratio, Portion of items to select randomly
@@ -148,7 +162,9 @@ def select_random_metaelems(
148
162
  ...
149
163
 
150
164
  def select_similar(
151
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
165
+ override_context: typing.Optional[
166
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
167
+ ] = None,
152
168
  execution_context: typing.Optional[typing.Union[str, int]] = None,
153
169
  undo: typing.Optional[bool] = None,
154
170
  type: typing.Optional[typing.Any] = "TYPE",
@@ -156,7 +172,7 @@ def select_similar(
156
172
  ):
157
173
  """Select similar metaballs by property types
158
174
 
159
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
175
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
160
176
  :type execution_context: typing.Optional[typing.Union[str, int]]
161
177
  :type undo: typing.Optional[bool]
162
178
  :param type: Type