fake-bge-module 20250103__py3-none-any.whl → 20250201__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.
Files changed (153) hide show
  1. addon_utils/__init__.pyi +11 -6
  2. aud/__init__.pyi +4 -0
  3. bge/types/__init__.pyi +66 -27
  4. bgl/__init__.pyi +2 -2
  5. bgui/image/__init__.pyi +3 -1
  6. bgui/system/__init__.pyi +12 -4
  7. bl_console_utils/autocomplete/complete_calltip/__init__.pyi +5 -2
  8. bl_console_utils/autocomplete/complete_import/__init__.pyi +6 -3
  9. bl_console_utils/autocomplete/complete_namespace/__init__.pyi +2 -1
  10. bl_console_utils/autocomplete/intellisense/__init__.pyi +8 -2
  11. bl_operators/node/__init__.pyi +78 -0
  12. bl_ui/anim/__init__.pyi +6 -0
  13. bl_ui/generic_ui_list/__init__.pyi +2 -2
  14. bl_ui/node_add_menu_shader/__init__.pyi +0 -1
  15. bl_ui/node_add_menu_texture/__init__.pyi +1 -0
  16. bl_ui/properties_data_camera/__init__.pyi +0 -2
  17. bl_ui/properties_mask_common/__init__.pyi +17 -0
  18. bl_ui/properties_material_gpencil/__init__.pyi +29 -0
  19. bl_ui/properties_scene/__init__.pyi +6 -0
  20. bl_ui/properties_view_layer/__init__.pyi +1 -0
  21. bl_ui/space_clip/__init__.pyi +53 -0
  22. bl_ui/space_graph/__init__.pyi +2 -0
  23. bl_ui/space_image/__init__.pyi +25 -0
  24. bl_ui/space_node/__init__.pyi +0 -1
  25. bl_ui/space_sequencer/__init__.pyi +2 -1
  26. blf/__init__.pyi +6 -3
  27. bmesh/ops/__init__.pyi +111 -54
  28. bmesh/types/__init__.pyi +134 -46
  29. bmesh/utils/__init__.pyi +17 -5
  30. bpy/__init__.pyi +1 -2
  31. bpy/_typing/__init__.pyi +4 -0
  32. bpy/{typing → _typing/rna_enums}/__init__.pyi +36 -36
  33. bpy/app/__init__.pyi +13 -5
  34. bpy/app/handlers/__init__.pyi +4 -2
  35. bpy/app/icons/__init__.pyi +6 -2
  36. bpy/app/translations/__init__.pyi +17 -8
  37. bpy/msgbus/__init__.pyi +14 -2
  38. bpy/ops/action/__init__.pyi +51 -151
  39. bpy/ops/anim/__init__.pyi +61 -179
  40. bpy/ops/armature/__init__.pyi +48 -147
  41. bpy/ops/asset/__init__.pyi +16 -71
  42. bpy/ops/boid/__init__.pyi +11 -44
  43. bpy/ops/brush/__init__.pyi +16 -42
  44. bpy/ops/buttons/__init__.pyi +6 -29
  45. bpy/ops/cachefile/__init__.pyi +5 -19
  46. bpy/ops/camera/__init__.pyi +2 -5
  47. bpy/ops/clip/__init__.pyi +95 -293
  48. bpy/ops/cloth/__init__.pyi +1 -3
  49. bpy/ops/collection/__init__.pyi +10 -26
  50. bpy/ops/console/__init__.pyi +21 -79
  51. bpy/ops/constraint/__init__.pyi +18 -45
  52. bpy/ops/curve/__init__.pyi +57 -186
  53. bpy/ops/curves/__init__.pyi +37 -109
  54. bpy/ops/cycles/__init__.pyi +3 -9
  55. bpy/ops/dpaint/__init__.pyi +8 -22
  56. bpy/ops/ed/__init__.pyi +20 -52
  57. bpy/ops/export_anim/__init__.pyi +1 -3
  58. bpy/ops/export_scene/__init__.pyi +55 -32
  59. bpy/ops/extensions/__init__.pyi +34 -110
  60. bpy/ops/file/__init__.pyi +40 -167
  61. bpy/ops/fluid/__init__.pyi +14 -77
  62. bpy/ops/font/__init__.pyi +23 -85
  63. bpy/ops/geometry/__init__.pyi +29 -46
  64. bpy/ops/gizmogroup/__init__.pyi +2 -9
  65. bpy/ops/gpencil/__init__.pyi +8 -32
  66. bpy/ops/graph/__init__.pyi +82 -201
  67. bpy/ops/grease_pencil/__init__.pyi +125 -324
  68. bpy/ops/image/__init__.pyi +61 -163
  69. bpy/ops/import_anim/__init__.pyi +1 -3
  70. bpy/ops/import_curve/__init__.pyi +1 -3
  71. bpy/ops/import_scene/__init__.pyi +4 -6
  72. bpy/ops/info/__init__.pyi +7 -29
  73. bpy/ops/lattice/__init__.pyi +11 -32
  74. bpy/ops/logic/__init__.pyi +26 -65
  75. bpy/ops/marker/__init__.pyi +11 -31
  76. bpy/ops/mask/__init__.pyi +39 -132
  77. bpy/ops/material/__init__.pyi +3 -19
  78. bpy/ops/mball/__init__.pyi +8 -19
  79. bpy/ops/mesh/__init__.pyi +223 -470
  80. bpy/ops/nla/__init__.pyi +42 -150
  81. bpy/ops/node/__init__.pyi +169 -393
  82. bpy/ops/object/__init__.pyi +320 -749
  83. bpy/ops/outliner/__init__.pyi +76 -268
  84. bpy/ops/paint/__init__.pyi +67 -147
  85. bpy/ops/paintcurve/__init__.pyi +8 -33
  86. bpy/ops/palette/__init__.pyi +7 -27
  87. bpy/ops/particle/__init__.pyi +39 -134
  88. bpy/ops/pose/__init__.pyi +64 -182
  89. bpy/ops/poselib/__init__.pyi +9 -33
  90. bpy/ops/preferences/__init__.pyi +35 -94
  91. bpy/ops/ptcache/__init__.pyi +7 -33
  92. bpy/ops/render/__init__.pyi +13 -37
  93. bpy/ops/rigidbody/__init__.pyi +22 -54
  94. bpy/ops/scene/__init__.pyi +47 -130
  95. bpy/ops/screen/__init__.pyi +46 -144
  96. bpy/ops/script/__init__.pyi +3 -11
  97. bpy/ops/sculpt/__init__.pyi +40 -94
  98. bpy/ops/sculpt_curves/__init__.pyi +4 -10
  99. bpy/ops/sequencer/__init__.pyi +104 -327
  100. bpy/ops/sound/__init__.pyi +17 -28
  101. bpy/ops/spreadsheet/__init__.pyi +4 -15
  102. bpy/ops/surface/__init__.pyi +6 -13
  103. bpy/ops/text/__init__.pyi +43 -175
  104. bpy/ops/text_editor/__init__.pyi +1 -3
  105. bpy/ops/texture/__init__.pyi +4 -21
  106. bpy/ops/transform/__init__.pyi +114 -134
  107. bpy/ops/ui/__init__.pyi +39 -120
  108. bpy/ops/uilist/__init__.pyi +3 -7
  109. bpy/ops/uv/__init__.pyi +58 -143
  110. bpy/ops/view2d/__init__.pyi +14 -39
  111. bpy/ops/view3d/__init__.pyi +68 -238
  112. bpy/ops/wm/__init__.pyi +178 -319
  113. bpy/ops/workspace/__init__.pyi +7 -33
  114. bpy/ops/world/__init__.pyi +2 -11
  115. bpy/path/__init__.pyi +16 -6
  116. bpy/props/__init__.pyi +157 -127
  117. bpy/types/__init__.pyi +35227 -34838
  118. bpy/utils/__init__.pyi +71 -25
  119. bpy/utils/previews/__init__.pyi +2 -1
  120. bpy/utils/units/__init__.pyi +2 -1
  121. bpy_extras/anim_utils/__init__.pyi +11 -3
  122. bpy_extras/bmesh_utils/__init__.pyi +2 -1
  123. bpy_extras/image_utils/__init__.pyi +5 -2
  124. bpy_extras/io_utils/__init__.pyi +12 -5
  125. bpy_extras/mesh_utils/__init__.pyi +27 -6
  126. bpy_extras/object_utils/__init__.pyi +6 -5
  127. bpy_extras/view3d_utils/__init__.pyi +9 -2
  128. {fake_bge_module-20250103.dist-info → fake_bge_module-20250201.dist-info}/METADATA +3 -3
  129. {fake_bge_module-20250103.dist-info → fake_bge_module-20250201.dist-info}/RECORD +153 -152
  130. {fake_bge_module-20250103.dist-info → fake_bge_module-20250201.dist-info}/WHEEL +1 -1
  131. freestyle/chainingiterators/__init__.pyi +7 -2
  132. freestyle/functions/__init__.pyi +16 -4
  133. freestyle/shaders/__init__.pyi +5 -1
  134. freestyle/types/__init__.pyi +103 -30
  135. freestyle/utils/ContextFunctions/__init__.pyi +2 -2
  136. freestyle/utils/__init__.pyi +2 -1
  137. gpu/capabilities/__init__.pyi +2 -1
  138. gpu/matrix/__init__.pyi +4 -2
  139. gpu/state/__init__.pyi +2 -2
  140. gpu/types/__init__.pyi +40 -8
  141. gpu_extras/batch/__init__.pyi +13 -1
  142. gpu_extras/presets/__init__.pyi +10 -1
  143. idprop/types/__init__.pyi +4 -2
  144. imbuf/__init__.pyi +6 -3
  145. imbuf/types/__init__.pyi +5 -2
  146. mathutils/__init__.pyi +126 -35
  147. mathutils/bvhtree/__init__.pyi +21 -6
  148. mathutils/geometry/__init__.pyi +68 -22
  149. mathutils/interpolate/__init__.pyi +5 -1
  150. mathutils/kdtree/__init__.pyi +21 -8
  151. mathutils/noise/__init__.pyi +2 -1
  152. rna_info/__init__.pyi +2 -1
  153. {fake_bge_module-20250103.dist-info → fake_bge_module-20250201.dist-info}/top_level.txt +0 -0
@@ -4,32 +4,33 @@ import typing_extensions
4
4
  import bpy.types
5
5
 
6
6
  def brush_edit(
7
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
8
7
  execution_context: int | str | None = None,
9
8
  undo: bool | None = None,
9
+ /,
10
10
  *,
11
11
  stroke: bpy.types.bpy_prop_collection[bpy.types.OperatorStrokeElement]
12
12
  | None = None,
13
+ pen_flip: bool | None = False,
13
14
  ):
14
15
  """Apply a stroke of brush to the particles
15
16
 
16
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
17
17
  :type execution_context: int | str | None
18
18
  :type undo: bool | None
19
19
  :param stroke: Stroke
20
20
  :type stroke: bpy.types.bpy_prop_collection[bpy.types.OperatorStrokeElement] | None
21
+ :param pen_flip: Pen Flip, Whether a tablet's eraser mode is being used
22
+ :type pen_flip: bool | None
21
23
  """
22
24
 
23
25
  def connect_hair(
24
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
25
26
  execution_context: int | str | None = None,
26
27
  undo: bool | None = None,
28
+ /,
27
29
  *,
28
30
  all: bool | None = False,
29
31
  ):
30
32
  """Connect hair to the emitter mesh
31
33
 
32
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
33
34
  :type execution_context: int | str | None
34
35
  :type undo: bool | None
35
36
  :param all: All Hair, Connect all hair systems to the emitter mesh
@@ -37,9 +38,9 @@ def connect_hair(
37
38
  """
38
39
 
39
40
  def copy_particle_systems(
40
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
41
41
  execution_context: int | str | None = None,
42
42
  undo: bool | None = None,
43
+ /,
43
44
  *,
44
45
  space: typing.Literal["OBJECT", "WORLD"] | None = "OBJECT",
45
46
  remove_target_particles: bool | None = True,
@@ -47,7 +48,6 @@ def copy_particle_systems(
47
48
  ):
48
49
  """Copy particle systems from the active object to selected objects
49
50
 
50
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
51
51
  :type execution_context: int | str | None
52
52
  :type undo: bool | None
53
53
  :param space: Space, Space transform for copying from one object to another
@@ -65,15 +65,14 @@ def copy_particle_systems(
65
65
  """
66
66
 
67
67
  def delete(
68
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
69
68
  execution_context: int | str | None = None,
70
69
  undo: bool | None = None,
70
+ /,
71
71
  *,
72
72
  type: typing.Literal["PARTICLE", "KEY"] | None = "PARTICLE",
73
73
  ):
74
74
  """Delete selected particles or keys
75
75
 
76
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
77
76
  :type execution_context: int | str | None
78
77
  :type undo: bool | None
79
78
  :param type: Type, Delete a full particle or only keys
@@ -81,15 +80,14 @@ def delete(
81
80
  """
82
81
 
83
82
  def disconnect_hair(
84
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
85
83
  execution_context: int | str | None = None,
86
84
  undo: bool | None = None,
85
+ /,
87
86
  *,
88
87
  all: bool | None = False,
89
88
  ):
90
89
  """Disconnect hair from the emitter mesh
91
90
 
92
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
93
91
  :type execution_context: int | str | None
94
92
  :type undo: bool | None
95
93
  :param all: All Hair, Disconnect all hair systems from the emitter mesh
@@ -97,97 +95,74 @@ def disconnect_hair(
97
95
  """
98
96
 
99
97
  def duplicate_particle_system(
100
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
101
98
  execution_context: int | str | None = None,
102
99
  undo: bool | None = None,
100
+ /,
103
101
  *,
104
102
  use_duplicate_settings: bool | None = False,
105
103
  ):
106
104
  """Duplicate particle system within the active object
107
105
 
108
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
109
106
  :type execution_context: int | str | None
110
107
  :type undo: bool | None
111
108
  :param use_duplicate_settings: Duplicate Settings, Duplicate settings as well, so the new particle system uses its own settings
112
109
  :type use_duplicate_settings: bool | None
113
110
  """
114
111
 
115
- def dupliob_copy(
116
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
117
- execution_context: int | str | None = None,
118
- undo: bool | None = None,
119
- ):
112
+ def dupliob_copy(execution_context: int | str | None = None, undo: bool | None = None):
120
113
  """Duplicate the current instance object
121
114
 
122
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
123
115
  :type execution_context: int | str | None
124
116
  :type undo: bool | None
125
117
  """
126
118
 
127
119
  def dupliob_move_down(
128
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
129
- execution_context: int | str | None = None,
130
- undo: bool | None = None,
120
+ execution_context: int | str | None = None, undo: bool | None = None
131
121
  ):
132
122
  """Move instance object down in the list
133
123
 
134
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
135
124
  :type execution_context: int | str | None
136
125
  :type undo: bool | None
137
126
  """
138
127
 
139
128
  def dupliob_move_up(
140
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
141
- execution_context: int | str | None = None,
142
- undo: bool | None = None,
129
+ execution_context: int | str | None = None, undo: bool | None = None
143
130
  ):
144
131
  """Move instance object up in the list
145
132
 
146
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
147
133
  :type execution_context: int | str | None
148
134
  :type undo: bool | None
149
135
  """
150
136
 
151
137
  def dupliob_refresh(
152
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
153
- execution_context: int | str | None = None,
154
- undo: bool | None = None,
138
+ execution_context: int | str | None = None, undo: bool | None = None
155
139
  ):
156
140
  """Refresh list of instance objects and their weights
157
141
 
158
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
159
142
  :type execution_context: int | str | None
160
143
  :type undo: bool | None
161
144
  """
162
145
 
163
146
  def dupliob_remove(
164
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
165
- execution_context: int | str | None = None,
166
- undo: bool | None = None,
147
+ execution_context: int | str | None = None, undo: bool | None = None
167
148
  ):
168
149
  """Remove the selected instance object
169
150
 
170
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
171
151
  :type execution_context: int | str | None
172
152
  :type undo: bool | None
173
153
  """
174
154
 
175
- def edited_clear(
176
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
177
- execution_context: int | str | None = None,
178
- undo: bool | None = None,
179
- ):
155
+ def edited_clear(execution_context: int | str | None = None, undo: bool | None = None):
180
156
  """Undo all edition performed on the particle system
181
157
 
182
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
183
158
  :type execution_context: int | str | None
184
159
  :type undo: bool | None
185
160
  """
186
161
 
187
162
  def hair_dynamics_preset_add(
188
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
189
163
  execution_context: int | str | None = None,
190
164
  undo: bool | None = None,
165
+ /,
191
166
  *,
192
167
  name: str = "",
193
168
  remove_name: bool | None = False,
@@ -195,7 +170,6 @@ def hair_dynamics_preset_add(
195
170
  ):
196
171
  """Add or remove a Hair Dynamics Preset
197
172
 
198
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
199
173
  :type execution_context: int | str | None
200
174
  :type undo: bool | None
201
175
  :param name: Name, Name of the preset, used to make the path name
@@ -207,79 +181,59 @@ def hair_dynamics_preset_add(
207
181
  """
208
182
 
209
183
  def hide(
210
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
211
184
  execution_context: int | str | None = None,
212
185
  undo: bool | None = None,
186
+ /,
213
187
  *,
214
188
  unselected: bool | None = False,
215
189
  ):
216
190
  """Hide selected particles
217
191
 
218
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
219
192
  :type execution_context: int | str | None
220
193
  :type undo: bool | None
221
194
  :param unselected: Unselected, Hide unselected rather than selected
222
195
  :type unselected: bool | None
223
196
  """
224
197
 
225
- def mirror(
226
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
227
- execution_context: int | str | None = None,
228
- undo: bool | None = None,
229
- ):
198
+ def mirror(execution_context: int | str | None = None, undo: bool | None = None):
230
199
  """Duplicate and mirror the selected particles along the local X axis
231
200
 
232
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
233
201
  :type execution_context: int | str | None
234
202
  :type undo: bool | None
235
203
  """
236
204
 
237
- def new(
238
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
239
- execution_context: int | str | None = None,
240
- undo: bool | None = None,
241
- ):
205
+ def new(execution_context: int | str | None = None, undo: bool | None = None):
242
206
  """Add new particle settings
243
207
 
244
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
245
208
  :type execution_context: int | str | None
246
209
  :type undo: bool | None
247
210
  """
248
211
 
249
- def new_target(
250
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
251
- execution_context: int | str | None = None,
252
- undo: bool | None = None,
253
- ):
212
+ def new_target(execution_context: int | str | None = None, undo: bool | None = None):
254
213
  """Add a new particle target
255
214
 
256
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
257
215
  :type execution_context: int | str | None
258
216
  :type undo: bool | None
259
217
  """
260
218
 
261
219
  def particle_edit_toggle(
262
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
263
- execution_context: int | str | None = None,
264
- undo: bool | None = None,
220
+ execution_context: int | str | None = None, undo: bool | None = None
265
221
  ):
266
222
  """Toggle particle edit mode
267
223
 
268
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
269
224
  :type execution_context: int | str | None
270
225
  :type undo: bool | None
271
226
  """
272
227
 
273
228
  def rekey(
274
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
275
229
  execution_context: int | str | None = None,
276
230
  undo: bool | None = None,
231
+ /,
277
232
  *,
278
233
  keys_number: int | None = 2,
279
234
  ):
280
235
  """Change the number of keys of selected particles (root and tip keys included)
281
236
 
282
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
283
237
  :type execution_context: int | str | None
284
238
  :type undo: bool | None
285
239
  :param keys_number: Number of Keys
@@ -287,15 +241,14 @@ def rekey(
287
241
  """
288
242
 
289
243
  def remove_doubles(
290
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
291
244
  execution_context: int | str | None = None,
292
245
  undo: bool | None = None,
246
+ /,
293
247
  *,
294
248
  threshold: float | None = 0.0002,
295
249
  ):
296
250
  """Remove selected particles close enough of others
297
251
 
298
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
299
252
  :type execution_context: int | str | None
300
253
  :type undo: bool | None
301
254
  :param threshold: Merge Distance, Threshold distance within which particles are removed
@@ -303,15 +256,14 @@ def remove_doubles(
303
256
  """
304
257
 
305
258
  def reveal(
306
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
307
259
  execution_context: int | str | None = None,
308
260
  undo: bool | None = None,
261
+ /,
309
262
  *,
310
263
  select: bool | None = True,
311
264
  ):
312
265
  """Show hidden particles
313
266
 
314
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
315
267
  :type execution_context: int | str | None
316
268
  :type undo: bool | None
317
269
  :param select: Select
@@ -319,15 +271,14 @@ def reveal(
319
271
  """
320
272
 
321
273
  def select_all(
322
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
323
274
  execution_context: int | str | None = None,
324
275
  undo: bool | None = None,
276
+ /,
325
277
  *,
326
278
  action: typing.Literal["TOGGLE", "SELECT", "DESELECT", "INVERT"] | None = "TOGGLE",
327
279
  ):
328
280
  """(De)select all particles' keys
329
281
 
330
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
331
282
  :type execution_context: int | str | None
332
283
  :type undo: bool | None
333
284
  :param action: Action, Selection action to execute
@@ -346,41 +297,30 @@ def select_all(
346
297
  :type action: typing.Literal['TOGGLE','SELECT','DESELECT','INVERT'] | None
347
298
  """
348
299
 
349
- def select_less(
350
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
351
- execution_context: int | str | None = None,
352
- undo: bool | None = None,
353
- ):
300
+ def select_less(execution_context: int | str | None = None, undo: bool | None = None):
354
301
  """Deselect boundary selected keys of each particle
355
302
 
356
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
357
303
  :type execution_context: int | str | None
358
304
  :type undo: bool | None
359
305
  """
360
306
 
361
- def select_linked(
362
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
363
- execution_context: int | str | None = None,
364
- undo: bool | None = None,
365
- ):
307
+ def select_linked(execution_context: int | str | None = None, undo: bool | None = None):
366
308
  """Select all keys linked to already selected ones
367
309
 
368
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
369
310
  :type execution_context: int | str | None
370
311
  :type undo: bool | None
371
312
  """
372
313
 
373
314
  def select_linked_pick(
374
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
375
315
  execution_context: int | str | None = None,
376
316
  undo: bool | None = None,
317
+ /,
377
318
  *,
378
319
  deselect: bool | None = False,
379
320
  location: collections.abc.Iterable[int] | None = (0, 0),
380
321
  ):
381
322
  """Select nearest particle from mouse pointer
382
323
 
383
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
384
324
  :type execution_context: int | str | None
385
325
  :type undo: bool | None
386
326
  :param deselect: Deselect, Deselect linked keys rather than selecting them
@@ -389,22 +329,17 @@ def select_linked_pick(
389
329
  :type location: collections.abc.Iterable[int] | None
390
330
  """
391
331
 
392
- def select_more(
393
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
394
- execution_context: int | str | None = None,
395
- undo: bool | None = None,
396
- ):
332
+ def select_more(execution_context: int | str | None = None, undo: bool | None = None):
397
333
  """Select keys linked to boundary selected keys of each particle
398
334
 
399
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
400
335
  :type execution_context: int | str | None
401
336
  :type undo: bool | None
402
337
  """
403
338
 
404
339
  def select_random(
405
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
406
340
  execution_context: int | str | None = None,
407
341
  undo: bool | None = None,
342
+ /,
408
343
  *,
409
344
  ratio: float | None = 0.5,
410
345
  seed: int | None = 0,
@@ -413,7 +348,6 @@ def select_random(
413
348
  ):
414
349
  """Select a randomly distributed set of hair or points
415
350
 
416
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
417
351
  :type execution_context: int | str | None
418
352
  :type undo: bool | None
419
353
  :param ratio: Ratio, Portion of items to select randomly
@@ -433,15 +367,14 @@ def select_random(
433
367
  """
434
368
 
435
369
  def select_roots(
436
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
437
370
  execution_context: int | str | None = None,
438
371
  undo: bool | None = None,
372
+ /,
439
373
  *,
440
374
  action: typing.Literal["TOGGLE", "SELECT", "DESELECT", "INVERT"] | None = "SELECT",
441
375
  ):
442
376
  """Select roots of all visible particles
443
377
 
444
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
445
378
  :type execution_context: int | str | None
446
379
  :type undo: bool | None
447
380
  :param action: Action, Selection action to execute
@@ -461,15 +394,14 @@ def select_roots(
461
394
  """
462
395
 
463
396
  def select_tips(
464
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
465
397
  execution_context: int | str | None = None,
466
398
  undo: bool | None = None,
399
+ /,
467
400
  *,
468
401
  action: typing.Literal["TOGGLE", "SELECT", "DESELECT", "INVERT"] | None = "SELECT",
469
402
  ):
470
403
  """Select tips of all visible particles
471
404
 
472
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
473
405
  :type execution_context: int | str | None
474
406
  :type undo: bool | None
475
407
  :param action: Action, Selection action to execute
@@ -488,88 +420,61 @@ def select_tips(
488
420
  :type action: typing.Literal['TOGGLE','SELECT','DESELECT','INVERT'] | None
489
421
  """
490
422
 
491
- def shape_cut(
492
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
493
- execution_context: int | str | None = None,
494
- undo: bool | None = None,
495
- ):
423
+ def shape_cut(execution_context: int | str | None = None, undo: bool | None = None):
496
424
  """Cut hair to conform to the set shape object
497
425
 
498
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
499
426
  :type execution_context: int | str | None
500
427
  :type undo: bool | None
501
428
  """
502
429
 
503
- def subdivide(
504
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
505
- execution_context: int | str | None = None,
506
- undo: bool | None = None,
507
- ):
430
+ def subdivide(execution_context: int | str | None = None, undo: bool | None = None):
508
431
  """Subdivide selected particles segments (adds keys)
509
432
 
510
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
511
433
  :type execution_context: int | str | None
512
434
  :type undo: bool | None
513
435
  """
514
436
 
515
437
  def target_move_down(
516
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
517
- execution_context: int | str | None = None,
518
- undo: bool | None = None,
438
+ execution_context: int | str | None = None, undo: bool | None = None
519
439
  ):
520
440
  """Move particle target down in the list
521
441
 
522
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
523
442
  :type execution_context: int | str | None
524
443
  :type undo: bool | None
525
444
  """
526
445
 
527
446
  def target_move_up(
528
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
529
- execution_context: int | str | None = None,
530
- undo: bool | None = None,
447
+ execution_context: int | str | None = None, undo: bool | None = None
531
448
  ):
532
449
  """Move particle target up in the list
533
450
 
534
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
535
451
  :type execution_context: int | str | None
536
452
  :type undo: bool | None
537
453
  """
538
454
 
539
- def target_remove(
540
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
541
- execution_context: int | str | None = None,
542
- undo: bool | None = None,
543
- ):
455
+ def target_remove(execution_context: int | str | None = None, undo: bool | None = None):
544
456
  """Remove the selected particle target
545
457
 
546
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
547
458
  :type execution_context: int | str | None
548
459
  :type undo: bool | None
549
460
  """
550
461
 
551
- def unify_length(
552
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
553
- execution_context: int | str | None = None,
554
- undo: bool | None = None,
555
- ):
462
+ def unify_length(execution_context: int | str | None = None, undo: bool | None = None):
556
463
  """Make selected hair the same length
557
464
 
558
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
559
465
  :type execution_context: int | str | None
560
466
  :type undo: bool | None
561
467
  """
562
468
 
563
469
  def weight_set(
564
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
565
470
  execution_context: int | str | None = None,
566
471
  undo: bool | None = None,
472
+ /,
567
473
  *,
568
474
  factor: float | None = 1.0,
569
475
  ):
570
476
  """Set the weight of selected keys
571
477
 
572
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
573
478
  :type execution_context: int | str | None
574
479
  :type undo: bool | None
575
480
  :param factor: Factor, Interpolation factor between current brush weight, and keys' weights