fake-bpy-module 20241207__py3-none-any.whl → 20241209__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 (115) hide show
  1. addon_utils/__init__.pyi +2 -1
  2. bl_console_utils/autocomplete/complete_calltip/__init__.pyi +5 -2
  3. bl_console_utils/autocomplete/complete_import/__init__.pyi +6 -3
  4. bl_console_utils/autocomplete/complete_namespace/__init__.pyi +2 -1
  5. bl_console_utils/autocomplete/intellisense/__init__.pyi +8 -2
  6. blf/__init__.pyi +2 -1
  7. bmesh/ops/__init__.pyi +110 -53
  8. bmesh/types/__init__.pyi +18 -10
  9. bmesh/utils/__init__.pyi +14 -4
  10. bpy/app/icons/__init__.pyi +4 -1
  11. bpy/app/translations/__init__.pyi +4 -1
  12. bpy/msgbus/__init__.pyi +8 -5
  13. bpy/ops/action/__init__.pyi +38 -138
  14. bpy/ops/anim/__init__.pyi +61 -179
  15. bpy/ops/armature/__init__.pyi +48 -147
  16. bpy/ops/asset/__init__.pyi +16 -71
  17. bpy/ops/boid/__init__.pyi +8 -41
  18. bpy/ops/brush/__init__.pyi +13 -39
  19. bpy/ops/buttons/__init__.pyi +6 -29
  20. bpy/ops/cachefile/__init__.pyi +5 -19
  21. bpy/ops/camera/__init__.pyi +2 -5
  22. bpy/ops/clip/__init__.pyi +92 -290
  23. bpy/ops/cloth/__init__.pyi +1 -3
  24. bpy/ops/collection/__init__.pyi +9 -25
  25. bpy/ops/console/__init__.pyi +21 -79
  26. bpy/ops/constraint/__init__.pyi +18 -45
  27. bpy/ops/curve/__init__.pyi +51 -180
  28. bpy/ops/curves/__init__.pyi +28 -100
  29. bpy/ops/cycles/__init__.pyi +3 -9
  30. bpy/ops/dpaint/__init__.pyi +5 -19
  31. bpy/ops/ed/__init__.pyi +12 -53
  32. bpy/ops/export_anim/__init__.pyi +1 -3
  33. bpy/ops/export_scene/__init__.pyi +2 -5
  34. bpy/ops/extensions/__init__.pyi +34 -110
  35. bpy/ops/file/__init__.pyi +40 -167
  36. bpy/ops/fluid/__init__.pyi +14 -77
  37. bpy/ops/font/__init__.pyi +23 -85
  38. bpy/ops/geometry/__init__.pyi +10 -27
  39. bpy/ops/gizmogroup/__init__.pyi +2 -9
  40. bpy/ops/gpencil/__init__.pyi +8 -32
  41. bpy/ops/graph/__init__.pyi +65 -184
  42. bpy/ops/grease_pencil/__init__.pyi +108 -290
  43. bpy/ops/image/__init__.pyi +49 -154
  44. bpy/ops/import_anim/__init__.pyi +1 -3
  45. bpy/ops/import_curve/__init__.pyi +1 -3
  46. bpy/ops/import_scene/__init__.pyi +2 -4
  47. bpy/ops/info/__init__.pyi +7 -29
  48. bpy/ops/lattice/__init__.pyi +8 -29
  49. bpy/ops/marker/__init__.pyi +11 -31
  50. bpy/ops/mask/__init__.pyi +39 -132
  51. bpy/ops/material/__init__.pyi +3 -19
  52. bpy/ops/mball/__init__.pyi +8 -19
  53. bpy/ops/mesh/__init__.pyi +164 -401
  54. bpy/ops/nla/__init__.pyi +39 -147
  55. bpy/ops/node/__init__.pyi +115 -390
  56. bpy/ops/object/__init__.pyi +237 -630
  57. bpy/ops/outliner/__init__.pyi +71 -263
  58. bpy/ops/paint/__init__.pyi +54 -140
  59. bpy/ops/paintcurve/__init__.pyi +8 -33
  60. bpy/ops/palette/__init__.pyi +7 -27
  61. bpy/ops/particle/__init__.pyi +36 -134
  62. bpy/ops/pose/__init__.pyi +51 -169
  63. bpy/ops/poselib/__init__.pyi +9 -33
  64. bpy/ops/preferences/__init__.pyi +35 -94
  65. bpy/ops/ptcache/__init__.pyi +7 -33
  66. bpy/ops/render/__init__.pyi +13 -37
  67. bpy/ops/rigidbody/__init__.pyi +13 -45
  68. bpy/ops/scene/__init__.pyi +37 -121
  69. bpy/ops/screen/__init__.pyi +39 -137
  70. bpy/ops/script/__init__.pyi +3 -11
  71. bpy/ops/sculpt/__init__.pyi +37 -94
  72. bpy/ops/sculpt_curves/__init__.pyi +4 -10
  73. bpy/ops/sequencer/__init__.pyi +89 -284
  74. bpy/ops/sound/__init__.pyi +7 -23
  75. bpy/ops/spreadsheet/__init__.pyi +4 -15
  76. bpy/ops/surface/__init__.pyi +6 -13
  77. bpy/ops/text/__init__.pyi +43 -175
  78. bpy/ops/text_editor/__init__.pyi +1 -3
  79. bpy/ops/texture/__init__.pyi +4 -21
  80. bpy/ops/transform/__init__.pyi +27 -61
  81. bpy/ops/ui/__init__.pyi +34 -117
  82. bpy/ops/uilist/__init__.pyi +3 -7
  83. bpy/ops/uv/__init__.pyi +49 -134
  84. bpy/ops/view2d/__init__.pyi +14 -39
  85. bpy/ops/view3d/__init__.pyi +67 -232
  86. bpy/ops/wm/__init__.pyi +114 -298
  87. bpy/ops/workspace/__init__.pyi +7 -33
  88. bpy/ops/world/__init__.pyi +2 -11
  89. bpy/path/__init__.pyi +4 -2
  90. bpy/types/__init__.pyi +68 -32
  91. bpy/utils/__init__.pyi +18 -9
  92. bpy_extras/bmesh_utils/__init__.pyi +2 -1
  93. bpy_extras/io_utils/__init__.pyi +7 -2
  94. bpy_extras/mesh_utils/__init__.pyi +19 -7
  95. bpy_extras/view3d_utils/__init__.pyi +2 -2
  96. {fake_bpy_module-20241207.dist-info → fake_bpy_module-20241209.dist-info}/METADATA +1 -1
  97. {fake_bpy_module-20241207.dist-info → fake_bpy_module-20241209.dist-info}/RECORD +115 -115
  98. freestyle/functions/__init__.pyi +16 -4
  99. freestyle/types/__init__.pyi +60 -23
  100. freestyle/utils/ContextFunctions/__init__.pyi +2 -2
  101. gpu/capabilities/__init__.pyi +2 -1
  102. gpu/state/__init__.pyi +2 -2
  103. gpu/types/__init__.pyi +2 -2
  104. gpu_extras/batch/__init__.pyi +6 -3
  105. idprop/types/__init__.pyi +4 -3
  106. imbuf/__init__.pyi +2 -1
  107. imbuf/types/__init__.pyi +5 -2
  108. mathutils/__init__.pyi +25 -14
  109. mathutils/bvhtree/__init__.pyi +8 -7
  110. mathutils/geometry/__init__.pyi +38 -17
  111. mathutils/interpolate/__init__.pyi +2 -1
  112. mathutils/kdtree/__init__.pyi +11 -6
  113. mathutils/noise/__init__.pyi +2 -1
  114. {fake_bpy_module-20241207.dist-info → fake_bpy_module-20241209.dist-info}/WHEEL +0 -0
  115. {fake_bpy_module-20241207.dist-info → fake_bpy_module-20241209.dist-info}/top_level.txt +0 -0
@@ -1,12 +1,11 @@
1
1
  import typing
2
2
  import collections.abc
3
3
  import typing_extensions
4
- import bpy.types
5
4
 
6
5
  def color_management_white_balance_preset_add(
7
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
8
6
  execution_context: int | str | None = None,
9
7
  undo: bool | None = None,
8
+ /,
10
9
  *,
11
10
  name: str = "",
12
11
  remove_name: bool | None = False,
@@ -14,7 +13,6 @@ def color_management_white_balance_preset_add(
14
13
  ):
15
14
  """Add or remove a white balance preset
16
15
 
17
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
18
16
  :type execution_context: int | str | None
19
17
  :type undo: bool | None
20
18
  :param name: Name, Name of the preset, used to make the path name
@@ -26,9 +24,9 @@ def color_management_white_balance_preset_add(
26
24
  """
27
25
 
28
26
  def cycles_integrator_preset_add(
29
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
30
27
  execution_context: int | str | None = None,
31
28
  undo: bool | None = None,
29
+ /,
32
30
  *,
33
31
  name: str = "",
34
32
  remove_name: bool | None = False,
@@ -36,7 +34,6 @@ def cycles_integrator_preset_add(
36
34
  ):
37
35
  """Add an Integrator Preset
38
36
 
39
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
40
37
  :type execution_context: int | str | None
41
38
  :type undo: bool | None
42
39
  :param name: Name, Name of the preset, used to make the path name
@@ -48,9 +45,9 @@ def cycles_integrator_preset_add(
48
45
  """
49
46
 
50
47
  def cycles_performance_preset_add(
51
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
52
48
  execution_context: int | str | None = None,
53
49
  undo: bool | None = None,
50
+ /,
54
51
  *,
55
52
  name: str = "",
56
53
  remove_name: bool | None = False,
@@ -58,7 +55,6 @@ def cycles_performance_preset_add(
58
55
  ):
59
56
  """Add an Performance Preset
60
57
 
61
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
62
58
  :type execution_context: int | str | None
63
59
  :type undo: bool | None
64
60
  :param name: Name, Name of the preset, used to make the path name
@@ -70,9 +66,9 @@ def cycles_performance_preset_add(
70
66
  """
71
67
 
72
68
  def cycles_sampling_preset_add(
73
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
74
69
  execution_context: int | str | None = None,
75
70
  undo: bool | None = None,
71
+ /,
76
72
  *,
77
73
  name: str = "",
78
74
  remove_name: bool | None = False,
@@ -80,7 +76,6 @@ def cycles_sampling_preset_add(
80
76
  ):
81
77
  """Add a Sampling Preset
82
78
 
83
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
84
79
  :type execution_context: int | str | None
85
80
  :type undo: bool | None
86
81
  :param name: Name, Name of the preset, used to make the path name
@@ -92,9 +87,9 @@ def cycles_sampling_preset_add(
92
87
  """
93
88
 
94
89
  def cycles_viewport_sampling_preset_add(
95
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
96
90
  execution_context: int | str | None = None,
97
91
  undo: bool | None = None,
92
+ /,
98
93
  *,
99
94
  name: str = "",
100
95
  remove_name: bool | None = False,
@@ -102,7 +97,6 @@ def cycles_viewport_sampling_preset_add(
102
97
  ):
103
98
  """Add a Viewport Sampling Preset
104
99
 
105
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
106
100
  :type execution_context: int | str | None
107
101
  :type undo: bool | None
108
102
  :param name: Name, Name of the preset, used to make the path name
@@ -114,9 +108,9 @@ def cycles_viewport_sampling_preset_add(
114
108
  """
115
109
 
116
110
  def eevee_raytracing_preset_add(
117
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
118
111
  execution_context: int | str | None = None,
119
112
  undo: bool | None = None,
113
+ /,
120
114
  *,
121
115
  name: str = "",
122
116
  remove_name: bool | None = False,
@@ -124,7 +118,6 @@ def eevee_raytracing_preset_add(
124
118
  ):
125
119
  """Add or remove an EEVEE ray-tracing preset
126
120
 
127
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
128
121
  :type execution_context: int | str | None
129
122
  :type undo: bool | None
130
123
  :param name: Name, Name of the preset, used to make the path name
@@ -136,9 +129,9 @@ def eevee_raytracing_preset_add(
136
129
  """
137
130
 
138
131
  def opengl(
139
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
140
132
  execution_context: int | str | None = None,
141
133
  undo: bool | None = None,
134
+ /,
142
135
  *,
143
136
  animation: bool | None = False,
144
137
  render_keyed_only: bool | None = False,
@@ -148,7 +141,6 @@ def opengl(
148
141
  ):
149
142
  """Take a snapshot of the active viewport
150
143
 
151
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
152
144
  :type execution_context: int | str | None
153
145
  :type undo: bool | None
154
146
  :param animation: Animation, Render files from the animation range of this scene
@@ -164,21 +156,18 @@ def opengl(
164
156
  """
165
157
 
166
158
  def play_rendered_anim(
167
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
168
- execution_context: int | str | None = None,
169
- undo: bool | None = None,
159
+ execution_context: int | str | None = None, undo: bool | None = None
170
160
  ):
171
161
  """Play back rendered frames/movies using an external player
172
162
 
173
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
174
163
  :type execution_context: int | str | None
175
164
  :type undo: bool | None
176
165
  """
177
166
 
178
167
  def preset_add(
179
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
180
168
  execution_context: int | str | None = None,
181
169
  undo: bool | None = None,
170
+ /,
182
171
  *,
183
172
  name: str = "",
184
173
  remove_name: bool | None = False,
@@ -186,7 +175,6 @@ def preset_add(
186
175
  ):
187
176
  """Add or remove a Render Preset
188
177
 
189
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
190
178
  :type execution_context: int | str | None
191
179
  :type undo: bool | None
192
180
  :param name: Name, Name of the preset, used to make the path name
@@ -198,9 +186,9 @@ def preset_add(
198
186
  """
199
187
 
200
188
  def render(
201
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
202
189
  execution_context: int | str | None = None,
203
190
  undo: bool | None = None,
191
+ /,
204
192
  *,
205
193
  animation: bool | None = False,
206
194
  write_still: bool | None = False,
@@ -210,7 +198,6 @@ def render(
210
198
  ):
211
199
  """Render active scene
212
200
 
213
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
214
201
  :type execution_context: int | str | None
215
202
  :type undo: bool | None
216
203
  :param animation: Animation, Render files from the animation range of this scene
@@ -226,42 +213,31 @@ def render(
226
213
  """
227
214
 
228
215
  def shutter_curve_preset(
229
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
230
216
  execution_context: int | str | None = None,
231
217
  undo: bool | None = None,
218
+ /,
232
219
  *,
233
220
  shape: typing.Literal["SHARP", "SMOOTH", "MAX", "LINE", "ROUND", "ROOT"]
234
221
  | None = "SMOOTH",
235
222
  ):
236
223
  """Set shutter curve
237
224
 
238
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
239
225
  :type execution_context: int | str | None
240
226
  :type undo: bool | None
241
227
  :param shape: Mode
242
228
  :type shape: typing.Literal['SHARP','SMOOTH','MAX','LINE','ROUND','ROOT'] | None
243
229
  """
244
230
 
245
- def view_cancel(
246
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
247
- execution_context: int | str | None = None,
248
- undo: bool | None = None,
249
- ):
231
+ def view_cancel(execution_context: int | str | None = None, undo: bool | None = None):
250
232
  """Cancel show render view
251
233
 
252
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
253
234
  :type execution_context: int | str | None
254
235
  :type undo: bool | None
255
236
  """
256
237
 
257
- def view_show(
258
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
259
- execution_context: int | str | None = None,
260
- undo: bool | None = None,
261
- ):
238
+ def view_show(execution_context: int | str | None = None, undo: bool | None = None):
262
239
  """Toggle show render view
263
240
 
264
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
265
241
  :type execution_context: int | str | None
266
242
  :type undo: bool | None
267
243
  """
@@ -1,13 +1,12 @@
1
1
  import typing
2
2
  import collections.abc
3
3
  import typing_extensions
4
- import bpy.types
5
4
  import bpy.typing
6
5
 
7
6
  def bake_to_keyframes(
8
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
9
7
  execution_context: int | str | None = None,
10
8
  undo: bool | None = None,
9
+ /,
11
10
  *,
12
11
  frame_start: int | None = 1,
13
12
  frame_end: int | None = 250,
@@ -15,7 +14,6 @@ def bake_to_keyframes(
15
14
  ):
16
15
  """Bake rigid body transformations of selected objects to keyframes
17
16
 
18
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
19
17
  :type execution_context: int | str | None
20
18
  :type undo: bool | None
21
19
  :param frame_start: Start Frame, Start frame for baking
@@ -27,9 +25,9 @@ def bake_to_keyframes(
27
25
  """
28
26
 
29
27
  def connect(
30
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
31
28
  execution_context: int | str | None = None,
32
29
  undo: bool | None = None,
30
+ /,
33
31
  *,
34
32
  con_type: typing.Literal[
35
33
  "FIXED",
@@ -48,7 +46,6 @@ def connect(
48
46
  ):
49
47
  """Create rigid body constraints between selected rigid bodies
50
48
 
51
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
52
49
  :type execution_context: int | str | None
53
50
  :type undo: bool | None
54
51
  :param con_type: Type, Type of generated constraint
@@ -99,15 +96,14 @@ def connect(
99
96
  """
100
97
 
101
98
  def constraint_add(
102
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
103
99
  execution_context: int | str | None = None,
104
100
  undo: bool | None = None,
101
+ /,
105
102
  *,
106
103
  type: bpy.typing.RigidbodyConstraintTypeItems | None = "FIXED",
107
104
  ):
108
105
  """Add Rigid Body Constraint to active object
109
106
 
110
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
111
107
  :type execution_context: int | str | None
112
108
  :type undo: bool | None
113
109
  :param type: Rigid Body Constraint Type
@@ -115,28 +111,24 @@ def constraint_add(
115
111
  """
116
112
 
117
113
  def constraint_remove(
118
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
119
- execution_context: int | str | None = None,
120
- undo: bool | None = None,
114
+ execution_context: int | str | None = None, undo: bool | None = None
121
115
  ):
122
116
  """Remove Rigid Body Constraint from Object
123
117
 
124
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
125
118
  :type execution_context: int | str | None
126
119
  :type undo: bool | None
127
120
  """
128
121
 
129
122
  def mass_calculate(
130
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
131
123
  execution_context: int | str | None = None,
132
124
  undo: bool | None = None,
125
+ /,
133
126
  *,
134
127
  material: str | None = "DEFAULT",
135
128
  density: float | None = 1.0,
136
129
  ):
137
130
  """Automatically calculate mass values for Rigid Body Objects based on volume
138
131
 
139
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
140
132
  :type execution_context: int | str | None
141
133
  :type undo: bool | None
142
134
  :param material: Material Preset, Type of material that objects are made of (determines material density)
@@ -146,55 +138,45 @@ def mass_calculate(
146
138
  """
147
139
 
148
140
  def object_add(
149
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
150
141
  execution_context: int | str | None = None,
151
142
  undo: bool | None = None,
143
+ /,
152
144
  *,
153
145
  type: bpy.typing.RigidbodyObjectTypeItems | None = "ACTIVE",
154
146
  ):
155
147
  """Add active object as Rigid Body
156
148
 
157
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
158
149
  :type execution_context: int | str | None
159
150
  :type undo: bool | None
160
151
  :param type: Rigid Body Type
161
152
  :type type: bpy.typing.RigidbodyObjectTypeItems | None
162
153
  """
163
154
 
164
- def object_remove(
165
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
166
- execution_context: int | str | None = None,
167
- undo: bool | None = None,
168
- ):
155
+ def object_remove(execution_context: int | str | None = None, undo: bool | None = None):
169
156
  """Remove Rigid Body settings from Object
170
157
 
171
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
172
158
  :type execution_context: int | str | None
173
159
  :type undo: bool | None
174
160
  """
175
161
 
176
162
  def object_settings_copy(
177
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
178
- execution_context: int | str | None = None,
179
- undo: bool | None = None,
163
+ execution_context: int | str | None = None, undo: bool | None = None
180
164
  ):
181
165
  """Copy Rigid Body settings from active object to selected
182
166
 
183
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
184
167
  :type execution_context: int | str | None
185
168
  :type undo: bool | None
186
169
  """
187
170
 
188
171
  def objects_add(
189
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
190
172
  execution_context: int | str | None = None,
191
173
  undo: bool | None = None,
174
+ /,
192
175
  *,
193
176
  type: bpy.typing.RigidbodyObjectTypeItems | None = "ACTIVE",
194
177
  ):
195
178
  """Add selected objects as Rigid Bodies
196
179
 
197
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
198
180
  :type execution_context: int | str | None
199
181
  :type undo: bool | None
200
182
  :param type: Rigid Body Type
@@ -202,53 +184,39 @@ def objects_add(
202
184
  """
203
185
 
204
186
  def objects_remove(
205
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
206
- execution_context: int | str | None = None,
207
- undo: bool | None = None,
187
+ execution_context: int | str | None = None, undo: bool | None = None
208
188
  ):
209
189
  """Remove selected objects from Rigid Body simulation
210
190
 
211
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
212
191
  :type execution_context: int | str | None
213
192
  :type undo: bool | None
214
193
  """
215
194
 
216
195
  def shape_change(
217
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
218
196
  execution_context: int | str | None = None,
219
197
  undo: bool | None = None,
198
+ /,
220
199
  *,
221
200
  type: bpy.typing.RigidbodyObjectShapeItems | None = "MESH",
222
201
  ):
223
202
  """Change collision shapes for selected Rigid Body Objects
224
203
 
225
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
226
204
  :type execution_context: int | str | None
227
205
  :type undo: bool | None
228
206
  :param type: Rigid Body Shape
229
207
  :type type: bpy.typing.RigidbodyObjectShapeItems | None
230
208
  """
231
209
 
232
- def world_add(
233
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
234
- execution_context: int | str | None = None,
235
- undo: bool | None = None,
236
- ):
210
+ def world_add(execution_context: int | str | None = None, undo: bool | None = None):
237
211
  """Add Rigid Body simulation world to the current scene
238
212
 
239
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
240
213
  :type execution_context: int | str | None
241
214
  :type undo: bool | None
242
215
  """
243
216
 
244
- def world_remove(
245
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
246
- execution_context: int | str | None = None,
247
- undo: bool | None = None,
248
- ):
217
+ def world_remove(execution_context: int | str | None = None, undo: bool | None = None):
249
218
  """Remove Rigid Body simulation world from the current scene
250
219
 
251
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
252
220
  :type execution_context: int | str | None
253
221
  :type undo: bool | None
254
222
  """