fake-bpy-module 20240620__py3-none-any.whl → 20240621__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 (77) hide show
  1. bl_ui/space_userpref/__init__.pyi +225 -0
  2. bpy/ops/action/__init__.pyi +50 -50
  3. bpy/ops/anim/__init__.pyi +94 -94
  4. bpy/ops/armature/__init__.pyi +54 -54
  5. bpy/ops/asset/__init__.pyi +50 -50
  6. bpy/ops/brush/__init__.pyi +10 -10
  7. bpy/ops/buttons/__init__.pyi +88 -88
  8. bpy/ops/cachefile/__init__.pyi +88 -88
  9. bpy/ops/camera/__init__.pyi +14 -14
  10. bpy/ops/clip/__init__.pyi +175 -174
  11. bpy/ops/cloth/__init__.pyi +6 -6
  12. bpy/ops/collection/__init__.pyi +8 -8
  13. bpy/ops/console/__init__.pyi +26 -26
  14. bpy/ops/constraint/__init__.pyi +42 -42
  15. bpy/ops/curve/__init__.pyi +167 -122
  16. bpy/ops/curves/__init__.pyi +75 -58
  17. bpy/ops/cycles/__init__.pyi +10 -10
  18. bpy/ops/ed/__init__.pyi +50 -50
  19. bpy/ops/export_anim/__init__.pyi +14 -14
  20. bpy/ops/export_scene/__init__.pyi +250 -250
  21. bpy/ops/extensions/__init__.pyi +73 -73
  22. bpy/ops/file/__init__.pyi +94 -94
  23. bpy/ops/fluid/__init__.pyi +6 -6
  24. bpy/ops/font/__init__.pyi +100 -100
  25. bpy/ops/geometry/__init__.pyi +20 -20
  26. bpy/ops/gizmogroup/__init__.pyi +10 -10
  27. bpy/ops/gpencil/__init__.pyi +411 -410
  28. bpy/ops/graph/__init__.pyi +194 -194
  29. bpy/ops/grease_pencil/__init__.pyi +100 -100
  30. bpy/ops/image/__init__.pyi +399 -390
  31. bpy/ops/import_anim/__init__.pyi +16 -16
  32. bpy/ops/import_curve/__init__.pyi +4 -4
  33. bpy/ops/import_scene/__init__.pyi +56 -56
  34. bpy/ops/info/__init__.pyi +14 -14
  35. bpy/ops/lattice/__init__.pyi +8 -8
  36. bpy/ops/marker/__init__.pyi +34 -34
  37. bpy/ops/mask/__init__.pyi +63 -62
  38. bpy/ops/mball/__init__.pyi +12 -12
  39. bpy/ops/mesh/__init__.pyi +893 -790
  40. bpy/ops/nla/__init__.pyi +70 -70
  41. bpy/ops/node/__init__.pyi +192 -192
  42. bpy/ops/object/__init__.pyi +1013 -840
  43. bpy/ops/outliner/__init__.pyi +44 -44
  44. bpy/ops/paint/__init__.pyi +169 -168
  45. bpy/ops/paintcurve/__init__.pyi +12 -12
  46. bpy/ops/palette/__init__.pyi +4 -4
  47. bpy/ops/particle/__init__.pyi +34 -34
  48. bpy/ops/pose/__init__.pyi +60 -60
  49. bpy/ops/poselib/__init__.pyi +18 -18
  50. bpy/ops/preferences/__init__.pyi +150 -150
  51. bpy/ops/ptcache/__init__.pyi +4 -4
  52. bpy/ops/render/__init__.pyi +56 -56
  53. bpy/ops/rigidbody/__init__.pyi +8 -8
  54. bpy/ops/scene/__init__.pyi +20 -20
  55. bpy/ops/screen/__init__.pyi +128 -128
  56. bpy/ops/script/__init__.pyi +6 -6
  57. bpy/ops/sculpt/__init__.pyi +207 -202
  58. bpy/ops/sculpt_curves/__init__.pyi +12 -12
  59. bpy/ops/sequencer/__init__.pyi +465 -464
  60. bpy/ops/sound/__init__.pyi +154 -154
  61. bpy/ops/spreadsheet/__init__.pyi +6 -6
  62. bpy/ops/surface/__init__.pyi +109 -60
  63. bpy/ops/text/__init__.pyi +110 -110
  64. bpy/ops/text_editor/__init__.pyi +6 -6
  65. bpy/ops/transform/__init__.pyi +628 -566
  66. bpy/ops/ui/__init__.pyi +25 -24
  67. bpy/ops/uilist/__init__.pyi +12 -12
  68. bpy/ops/uv/__init__.pyi +235 -234
  69. bpy/ops/view2d/__init__.pyi +72 -72
  70. bpy/ops/view3d/__init__.pyi +144 -144
  71. bpy/ops/wm/__init__.pyi +1813 -1806
  72. bpy/ops/workspace/__init__.pyi +4 -4
  73. bpy/types/__init__.pyi +1611 -1802
  74. {fake_bpy_module-20240620.dist-info → fake_bpy_module-20240621.dist-info}/METADATA +1 -1
  75. {fake_bpy_module-20240620.dist-info → fake_bpy_module-20240621.dist-info}/RECORD +77 -77
  76. {fake_bpy_module-20240620.dist-info → fake_bpy_module-20240621.dist-info}/WHEEL +0 -0
  77. {fake_bpy_module-20240620.dist-info → fake_bpy_module-20240621.dist-info}/top_level.txt +0 -0
bpy/ops/ui/__init__.pyi CHANGED
@@ -1,6 +1,7 @@
1
1
  import typing
2
2
  import collections.abc
3
3
  import bpy.types
4
+ import mathutils
4
5
 
5
6
  GenericType1 = typing.TypeVar("GenericType1")
6
7
  GenericType2 = typing.TypeVar("GenericType2")
@@ -24,7 +25,7 @@ def button_execute(
24
25
  execution_context: int | str | None = None,
25
26
  undo: bool | None = None,
26
27
  *,
27
- skip_depressed: bool | typing.Any | None = False,
28
+ skip_depressed: bool | None = False,
28
29
  ):
29
30
  """Presses active button
30
31
 
@@ -32,7 +33,7 @@ def button_execute(
32
33
  :type execution_context: int | str | None
33
34
  :type undo: bool | None
34
35
  :param skip_depressed: Skip Depressed
35
- :type skip_depressed: bool | typing.Any | None
36
+ :type skip_depressed: bool | None
36
37
  """
37
38
 
38
39
  ...
@@ -70,7 +71,7 @@ def copy_data_path_button(
70
71
  execution_context: int | str | None = None,
71
72
  undo: bool | None = None,
72
73
  *,
73
- full_path: bool | typing.Any | None = False,
74
+ full_path: bool | None = False,
74
75
  ):
75
76
  """Copy the RNA data path for this property to the clipboard
76
77
 
@@ -78,7 +79,7 @@ def copy_data_path_button(
78
79
  :type execution_context: int | str | None
79
80
  :type undo: bool | None
80
81
  :param full_path: full_path, Copy full data path
81
- :type full_path: bool | typing.Any | None
82
+ :type full_path: bool | None
82
83
  """
83
84
 
84
85
  ...
@@ -88,7 +89,7 @@ def copy_driver_to_selected_button(
88
89
  execution_context: int | str | None = None,
89
90
  undo: bool | None = None,
90
91
  *,
91
- all: bool | typing.Any | None = False,
92
+ all: bool | None = False,
92
93
  ):
93
94
  """Copy the property's driver from the active item to the same property of all selected items, if the same property exists
94
95
 
@@ -96,7 +97,7 @@ def copy_driver_to_selected_button(
96
97
  :type execution_context: int | str | None
97
98
  :type undo: bool | None
98
99
  :param all: All, Copy to selected the drivers of all elements of the array
99
- :type all: bool | typing.Any | None
100
+ :type all: bool | None
100
101
  """
101
102
 
102
103
  ...
@@ -120,7 +121,7 @@ def copy_to_selected_button(
120
121
  execution_context: int | str | None = None,
121
122
  undo: bool | None = None,
122
123
  *,
123
- all: bool | typing.Any | None = True,
124
+ all: bool | None = True,
124
125
  ):
125
126
  """Copy the property's value from the active item to the same property of all selected items if the same property exists
126
127
 
@@ -128,7 +129,7 @@ def copy_to_selected_button(
128
129
  :type execution_context: int | str | None
129
130
  :type undo: bool | None
130
131
  :param all: All, Copy to selected all elements of the array
131
- :type all: bool | typing.Any | None
132
+ :type all: bool | None
132
133
  """
133
134
 
134
135
  ...
@@ -138,8 +139,8 @@ def drop_color(
138
139
  execution_context: int | str | None = None,
139
140
  undo: bool | None = None,
140
141
  *,
141
- color: typing.Any | None = (0.0, 0.0, 0.0),
142
- gamma: bool | typing.Any | None = False,
142
+ color: collections.abc.Sequence[float] | mathutils.Color | None = (0.0, 0.0, 0.0),
143
+ gamma: bool | None = False,
143
144
  ):
144
145
  """Drop colors to buttons
145
146
 
@@ -147,9 +148,9 @@ def drop_color(
147
148
  :type execution_context: int | str | None
148
149
  :type undo: bool | None
149
150
  :param color: Color, Source color
150
- :type color: typing.Any | None
151
+ :type color: collections.abc.Sequence[float] | mathutils.Color | None
151
152
  :param gamma: Gamma Corrected, The source color is gamma corrected
152
- :type gamma: bool | typing.Any | None
153
+ :type gamma: bool | None
153
154
  """
154
155
 
155
156
  ...
@@ -159,7 +160,7 @@ def drop_material(
159
160
  execution_context: int | str | None = None,
160
161
  undo: bool | None = None,
161
162
  *,
162
- session_uid: typing.Any | None = 0,
163
+ session_uid: int | None = 0,
163
164
  ):
164
165
  """Drag material to Material slots in Properties
165
166
 
@@ -167,7 +168,7 @@ def drop_material(
167
168
  :type execution_context: int | str | None
168
169
  :type undo: bool | None
169
170
  :param session_uid: Session UID, Session UID of the data-block to use by the operator
170
- :type session_uid: typing.Any | None
171
+ :type session_uid: int | None
171
172
  """
172
173
 
173
174
  ...
@@ -177,7 +178,7 @@ def drop_name(
177
178
  execution_context: int | str | None = None,
178
179
  undo: bool | None = None,
179
180
  *,
180
- string: str | typing.Any = "",
181
+ string: str = "",
181
182
  ):
182
183
  """Drop name to button
183
184
 
@@ -185,7 +186,7 @@ def drop_name(
185
186
  :type execution_context: int | str | None
186
187
  :type undo: bool | None
187
188
  :param string: String, The string value to drop into the button
188
- :type string: str | typing.Any
189
+ :type string: str
189
190
  """
190
191
 
191
192
  ...
@@ -251,7 +252,7 @@ def eyedropper_depth(
251
252
  execution_context: int | str | None = None,
252
253
  undo: bool | None = None,
253
254
  *,
254
- prop_data_path: str | typing.Any = "",
255
+ prop_data_path: str = "",
255
256
  ):
256
257
  """Sample depth from the 3D view
257
258
 
@@ -259,7 +260,7 @@ def eyedropper_depth(
259
260
  :type execution_context: int | str | None
260
261
  :type undo: bool | None
261
262
  :param prop_data_path: Data Path, Path of property to be set with the depth
262
- :type prop_data_path: str | typing.Any
263
+ :type prop_data_path: str
263
264
  """
264
265
 
265
266
  ...
@@ -404,7 +405,7 @@ def override_remove_button(
404
405
  execution_context: int | str | None = None,
405
406
  undo: bool | None = None,
406
407
  *,
407
- all: bool | typing.Any | None = True,
408
+ all: bool | None = True,
408
409
  ):
409
410
  """Remove an override operation
410
411
 
@@ -412,7 +413,7 @@ def override_remove_button(
412
413
  :type execution_context: int | str | None
413
414
  :type undo: bool | None
414
415
  :param all: All, Reset to default values all elements of the array
415
- :type all: bool | typing.Any | None
416
+ :type all: bool | None
416
417
  """
417
418
 
418
419
  ...
@@ -422,7 +423,7 @@ def override_type_set_button(
422
423
  execution_context: int | str | None = None,
423
424
  undo: bool | None = None,
424
425
  *,
425
- all: bool | typing.Any | None = True,
426
+ all: bool | None = True,
426
427
  type: str | None = "REPLACE",
427
428
  ):
428
429
  """Create an override operation, or set the type of an existing one
@@ -431,7 +432,7 @@ def override_type_set_button(
431
432
  :type execution_context: int | str | None
432
433
  :type undo: bool | None
433
434
  :param all: All, Reset to default values all elements of the array
434
- :type all: bool | typing.Any | None
435
+ :type all: bool | None
435
436
  :param type: Type, Type of override operation
436
437
 
437
438
  NOOP
@@ -469,7 +470,7 @@ def reset_default_button(
469
470
  execution_context: int | str | None = None,
470
471
  undo: bool | None = None,
471
472
  *,
472
- all: bool | typing.Any | None = True,
473
+ all: bool | None = True,
473
474
  ):
474
475
  """Reset this property's value to its default value
475
476
 
@@ -477,7 +478,7 @@ def reset_default_button(
477
478
  :type execution_context: int | str | None
478
479
  :type undo: bool | None
479
480
  :param all: All, Reset to default values all elements of the array
480
- :type all: bool | typing.Any | None
481
+ :type all: bool | None
481
482
  """
482
483
 
483
484
  ...
@@ -10,8 +10,8 @@ def entry_add(
10
10
  execution_context: int | str | None = None,
11
11
  undo: bool | None = None,
12
12
  *,
13
- list_path: str | typing.Any = "",
14
- active_index_path: str | typing.Any = "",
13
+ list_path: str = "",
14
+ active_index_path: str = "",
15
15
  ):
16
16
  """Add an entry to the list after the current active item
17
17
 
@@ -19,9 +19,9 @@ def entry_add(
19
19
  :type execution_context: int | str | None
20
20
  :type undo: bool | None
21
21
  :param list_path: list_path
22
- :type list_path: str | typing.Any
22
+ :type list_path: str
23
23
  :param active_index_path: active_index_path
24
- :type active_index_path: str | typing.Any
24
+ :type active_index_path: str
25
25
  """
26
26
 
27
27
  ...
@@ -31,8 +31,8 @@ def entry_move(
31
31
  execution_context: int | str | None = None,
32
32
  undo: bool | None = None,
33
33
  *,
34
- list_path: str | typing.Any = "",
35
- active_index_path: str | typing.Any = "",
34
+ list_path: str = "",
35
+ active_index_path: str = "",
36
36
  direction: str | None = "UP",
37
37
  ):
38
38
  """Move an entry in the list up or down
@@ -41,9 +41,9 @@ def entry_move(
41
41
  :type execution_context: int | str | None
42
42
  :type undo: bool | None
43
43
  :param list_path: list_path
44
- :type list_path: str | typing.Any
44
+ :type list_path: str
45
45
  :param active_index_path: active_index_path
46
- :type active_index_path: str | typing.Any
46
+ :type active_index_path: str
47
47
  :param direction: Direction
48
48
 
49
49
  UP
@@ -61,8 +61,8 @@ def entry_remove(
61
61
  execution_context: int | str | None = None,
62
62
  undo: bool | None = None,
63
63
  *,
64
- list_path: str | typing.Any = "",
65
- active_index_path: str | typing.Any = "",
64
+ list_path: str = "",
65
+ active_index_path: str = "",
66
66
  ):
67
67
  """Remove the selected entry from the list
68
68
 
@@ -70,9 +70,9 @@ def entry_remove(
70
70
  :type execution_context: int | str | None
71
71
  :type undo: bool | None
72
72
  :param list_path: list_path
73
- :type list_path: str | typing.Any
73
+ :type list_path: str
74
74
  :param active_index_path: active_index_path
75
- :type active_index_path: str | typing.Any
75
+ :type active_index_path: str
76
76
  """
77
77
 
78
78
  ...