fake-bpy-module 20240304__py3-none-any.whl → 20240306__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.
@@ -20,12 +20,12 @@ def fbx(
20
20
  use_space_transform: typing.Optional[typing.Union[bool, typing.Any]] = True,
21
21
  bake_space_transform: typing.Optional[typing.Union[bool, typing.Any]] = False,
22
22
  object_types: typing.Optional[typing.Any] = {
23
+ '"CAMERA"',
23
24
  '"MESH"',
25
+ '"EMPTY"',
24
26
  '"OTHER"',
25
- '"CAMERA"',
26
- '"ARMATURE"',
27
27
  '"LIGHT"',
28
- '"EMPTY"',
28
+ '"ARMATURE"',
29
29
  },
30
30
  use_mesh_modifiers: typing.Optional[typing.Union[bool, typing.Any]] = True,
31
31
  use_mesh_modifiers_render: typing.Optional[typing.Union[bool, typing.Any]] = True,
@@ -84,6 +84,16 @@ def clean_loose(
84
84
 
85
85
  ...
86
86
 
87
+ def copy(override_context=None, execution_context=None, undo=None):
88
+ """Copy the selected Grease Pencil points or strokes to the internal clipboard
89
+
90
+ :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
91
+ :type execution_context: typing.Optional[typing.Union[int, str]]
92
+ :type undo: typing.Optional[bool]
93
+ """
94
+
95
+ ...
96
+
87
97
  def cyclical_set(
88
98
  override_context=None,
89
99
  execution_context=None,
@@ -517,6 +527,24 @@ def move_to_layer(
517
527
 
518
528
  ...
519
529
 
530
+ def paste(
531
+ override_context=None,
532
+ execution_context=None,
533
+ undo=None,
534
+ *,
535
+ paste_back: typing.Optional[typing.Union[bool, typing.Any]] = False,
536
+ ):
537
+ """Paste Grease Pencil points or strokes from the internal clipboard to the active layer
538
+
539
+ :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
540
+ :type execution_context: typing.Optional[typing.Union[int, str]]
541
+ :type undo: typing.Optional[bool]
542
+ :param paste_back: Paste on Back, Add pasted strokes behind all strokes
543
+ :type paste_back: typing.Optional[typing.Union[bool, typing.Any]]
544
+ """
545
+
546
+ ...
547
+
520
548
  def reorder(
521
549
  override_context=None,
522
550
  execution_context=None,
bpy/ops/nla/__init__.pyi CHANGED
@@ -102,10 +102,10 @@ def bake(
102
102
  clean_curves: typing.Optional[typing.Union[bool, typing.Any]] = False,
103
103
  bake_types: typing.Optional[typing.Any] = {'"POSE"'},
104
104
  channel_types: typing.Optional[typing.Any] = {
105
- '"BBONE"',
106
- '"LOCATION"',
107
105
  '"PROPS"',
106
+ '"BBONE"',
108
107
  '"SCALE"',
108
+ '"LOCATION"',
109
109
  '"ROTATION"',
110
110
  },
111
111
  ):
@@ -51,7 +51,7 @@ def cloth_filter(
51
51
  bpy.types.bpy_prop_collection["bpy.types.OperatorStrokeElement"]
52
52
  ] = None,
53
53
  type: typing.Optional[typing.Any] = "GRAVITY",
54
- force_axis: typing.Optional[typing.Any] = {'"Z"', '"Y"', '"X"'},
54
+ force_axis: typing.Optional[typing.Any] = {'"X"', '"Z"', '"Y"'},
55
55
  orientation: typing.Optional[typing.Any] = "LOCAL",
56
56
  cloth_mass: typing.Optional[typing.Any] = 1.0,
57
57
  cloth_damping: typing.Optional[typing.Any] = 0.0,
@@ -610,7 +610,7 @@ def mesh_filter(
610
610
  bpy.types.bpy_prop_collection["bpy.types.OperatorStrokeElement"]
611
611
  ] = None,
612
612
  type: typing.Optional[typing.Any] = "INFLATE",
613
- deform_axis: typing.Optional[typing.Any] = {'"Z"', '"Y"', '"X"'},
613
+ deform_axis: typing.Optional[typing.Any] = {'"X"', '"Z"', '"Y"'},
614
614
  orientation: typing.Optional[typing.Any] = "LOCAL",
615
615
  surface_smooth_shape_preservation: typing.Optional[typing.Any] = 0.5,
616
616
  surface_smooth_current_vertex: typing.Optional[typing.Any] = 0.5,
bpy/types/__init__.pyi CHANGED
@@ -3342,7 +3342,7 @@ class BoneCollections(bpy_struct):
3342
3342
  """
3343
3343
 
3344
3344
  is_solo_active: typing.Union[bool, typing.Any]
3345
- """ Read-ony flag that indicates there is at least one bone collection marked as 'solo'
3345
+ """ Read-only flag that indicates there is at least one bone collection marked as 'solo'
3346
3346
 
3347
3347
  :type: typing.Union[bool, typing.Any]
3348
3348
  """
@@ -27537,7 +27537,7 @@ class PreferencesFilePaths(bpy_struct):
27537
27537
  """
27538
27538
 
27539
27539
  temporary_directory: typing.Union[str, typing.Any]
27540
- """ The directory for storing temporary save files
27540
+ """ The directory for storing temporary save files. The path must reference an existing directory or it will be ignored
27541
27541
 
27542
27542
  :type: typing.Union[str, typing.Any]
27543
27543
  """
@@ -44576,7 +44576,7 @@ class UserExtensionRepo(bpy_struct):
44576
44576
  """
44577
44577
 
44578
44578
  use_remote_path: bool
44579
- """ Synchonize the repository with a remote URL/path
44579
+ """ Synchronize the repository with a remote URL/path
44580
44580
 
44581
44581
  :type: bool
44582
44582
  """
@@ -67863,10 +67863,10 @@ class KeyConfigurations(bpy_prop_collection[KeyConfig], bpy_struct):
67863
67863
  context: typing.Optional[typing.Any] = "INVOKE_DEFAULT",
67864
67864
  properties: typing.Optional["OperatorProperties"] = None,
67865
67865
  include: typing.Optional[typing.Any] = {
67866
- '"MOUSE"',
67866
+ '"NDOF"',
67867
67867
  '"KEYBOARD"',
67868
+ '"MOUSE"',
67868
67869
  '"ACTIONZONE"',
67869
- '"NDOF"',
67870
67870
  },
67871
67871
  exclude: typing.Optional[typing.Any] = {},
67872
67872
  ):
@@ -68150,10 +68150,10 @@ class KeyMapItems(bpy_prop_collection[KeyMapItem], bpy_struct):
68150
68150
  idname: typing.Union[str, typing.Any],
68151
68151
  properties: typing.Optional["OperatorProperties"] = None,
68152
68152
  include: typing.Optional[typing.Any] = {
68153
- '"MOUSE"',
68153
+ '"NDOF"',
68154
68154
  '"KEYBOARD"',
68155
+ '"MOUSE"',
68155
68156
  '"ACTIONZONE"',
68156
- '"NDOF"',
68157
68157
  },
68158
68158
  exclude: typing.Optional[typing.Any] = {},
68159
68159
  ) -> "KeyMapItem":
@@ -73066,6 +73066,137 @@ class GreasePencilOpacityModifier(Modifier, bpy_struct):
73066
73066
  """
73067
73067
  ...
73068
73068
 
73069
+ class GreasePencilOutlineModifier(Modifier, bpy_struct):
73070
+ """Outline of Strokes modifier from camera view"""
73071
+
73072
+ invert_layer_filter: bool
73073
+ """ Invert layer filter
73074
+
73075
+ :type: bool
73076
+ """
73077
+
73078
+ invert_layer_pass_filter: bool
73079
+ """ Invert layer pass filter
73080
+
73081
+ :type: bool
73082
+ """
73083
+
73084
+ invert_material_filter: bool
73085
+ """ Invert material filter
73086
+
73087
+ :type: bool
73088
+ """
73089
+
73090
+ invert_material_pass_filter: bool
73091
+ """ Invert material pass filter
73092
+
73093
+ :type: bool
73094
+ """
73095
+
73096
+ layer_filter: typing.Union[str, typing.Any]
73097
+ """ Layer name
73098
+
73099
+ :type: typing.Union[str, typing.Any]
73100
+ """
73101
+
73102
+ layer_pass_filter: int
73103
+ """ Layer pass filter
73104
+
73105
+ :type: int
73106
+ """
73107
+
73108
+ material_filter: "Material"
73109
+ """ Material used for filtering
73110
+
73111
+ :type: 'Material'
73112
+ """
73113
+
73114
+ material_pass_filter: int
73115
+ """ Material pass
73116
+
73117
+ :type: int
73118
+ """
73119
+
73120
+ object: "Object"
73121
+ """ Target object to define stroke start
73122
+
73123
+ :type: 'Object'
73124
+ """
73125
+
73126
+ open_influence_panel: bool
73127
+ """
73128
+
73129
+ :type: bool
73130
+ """
73131
+
73132
+ outline_material: "Material"
73133
+ """ Material used for outline strokes
73134
+
73135
+ :type: 'Material'
73136
+ """
73137
+
73138
+ sample_length: float
73139
+ """
73140
+
73141
+ :type: float
73142
+ """
73143
+
73144
+ subdivision: int
73145
+ """ Number of subdivisions
73146
+
73147
+ :type: int
73148
+ """
73149
+
73150
+ thickness: int
73151
+ """ Thickness of the perimeter stroke
73152
+
73153
+ :type: int
73154
+ """
73155
+
73156
+ use_keep_shape: bool
73157
+ """ Try to keep global shape
73158
+
73159
+ :type: bool
73160
+ """
73161
+
73162
+ use_layer_pass_filter: bool
73163
+ """ Use layer pass filter
73164
+
73165
+ :type: bool
73166
+ """
73167
+
73168
+ use_material_pass_filter: bool
73169
+ """ Use material pass filter
73170
+
73171
+ :type: bool
73172
+ """
73173
+
73174
+ def bl_rna_get_subclass(self, id: typing.Optional[str], default=None) -> "Struct":
73175
+ """
73176
+
73177
+ :param id: The RNA type identifier.
73178
+ :type id: typing.Optional[str]
73179
+ :param default:
73180
+ :type default:
73181
+ :rtype: 'Struct'
73182
+ :return: The RNA type or default when not found.
73183
+ """
73184
+ ...
73185
+
73186
+ def bl_rna_get_subclass_py(
73187
+ self, id: typing.Optional[str], default=None
73188
+ ) -> typing.Any:
73189
+ """
73190
+
73191
+ :param id: The RNA type identifier.
73192
+ :type id: typing.Optional[str]
73193
+ :param default:
73194
+ :type default:
73195
+ :rtype: typing.Any
73196
+ :return: The class or default when not found.
73197
+ """
73198
+ ...
73199
+
73069
73200
  class GreasePencilSmoothModifier(Modifier, bpy_struct):
73070
73201
  """Smooth effect modifier"""
73071
73202
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: fake-bpy-module
3
- Version: 20240304
3
+ Version: 20240306
4
4
  Summary: Collection of the fake Blender Python API module for the code completion.
5
5
  Author: nutti
6
6
  Author-email: nutti.metro@gmail.com
@@ -199,7 +199,7 @@ bpy/ops/dpaint/__init__.pyi,sha256=f68AefeI15BnIR_tf5mVbfrAbaly83_RIBznTGmrTSo,2
199
199
  bpy/ops/ed/__init__.pyi,sha256=O354iq6Wg0tNzTDiLkXU7agqD6e6DoywuAKuAajDLGE,9974
200
200
  bpy/ops/export_anim/__init__.pyi,sha256=AnV2l6UH64F1xxXF9rWLXZv3EJmSzI6WsP0ICv0j6Sc,2420
201
201
  bpy/ops/export_mesh/__init__.pyi,sha256=agxQTGbW405r7WZOu-bBgNDJbahufUvBqfBSqLVKGe0,2913
202
- bpy/ops/export_scene/__init__.pyi,sha256=GkqB7zkaKzioa09zogvej8wQgMtxXNcGJSwyM9EhXks,46435
202
+ bpy/ops/export_scene/__init__.pyi,sha256=FmB9mJjpEMY3vSY3B2EMdVCniPSVVn8q6XJqS4qNxc0,46435
203
203
  bpy/ops/file/__init__.pyi,sha256=AOLAU6yIqsVvw4Ga9h77DvKdn0o-kOyAnG5Lmib1vI0,26137
204
204
  bpy/ops/fluid/__init__.pyi,sha256=LIkJyMJMAC5WH1ZKJ6eZGu7cB42FRLLiTeUAXy9j9cU,5094
205
205
  bpy/ops/font/__init__.pyi,sha256=5kN9cQw9Mcc2sUNRR8_9sHbFLswfyEcJ4Dg2EgcwR1M,20180
@@ -207,7 +207,7 @@ bpy/ops/geometry/__init__.pyi,sha256=K_S4AJ5d0zn2kloqOYgGoGdiVE-ZSo1nEEZV95ZgDDc
207
207
  bpy/ops/gizmogroup/__init__.pyi,sha256=tROWB4BpraNSF8OctPwb8KgwB_gUB2bernMIOvxN8ts,1877
208
208
  bpy/ops/gpencil/__init__.pyi,sha256=KZiYLMziSCdME4s88DjDrX9TvvbMCNGkG7R1cQawK40,113414
209
209
  bpy/ops/graph/__init__.pyi,sha256=9wdxa-X_mQt4B-hHsh1UKgvViXM-ujUYC00HKSo7aiI,52591
210
- bpy/ops/grease_pencil/__init__.pyi,sha256=l39ewSR-shLeo5kBSldAgLiW9VhlBVSuOkR4PUJS3Yc,28684
210
+ bpy/ops/grease_pencil/__init__.pyi,sha256=HM_ru8aSwyglMbhtu2yOJO0BWgE86WresUdeQv57Zbo,29674
211
211
  bpy/ops/image/__init__.pyi,sha256=tbvDOJbE5Dq3djAGAZinMJv9TJL8QrwhmOLzZsiuGec,51531
212
212
  bpy/ops/import_anim/__init__.pyi,sha256=Mhgal7xKIoXN2cD-OiiU6ZXr0di_Bv-TVygrMcuN9dQ,3379
213
213
  bpy/ops/import_curve/__init__.pyi,sha256=sGC5e7c1NJz9QAiYTp1NLqc5hqX84wZncgIMEPi9jIk,722
@@ -220,7 +220,7 @@ bpy/ops/mask/__init__.pyi,sha256=idXFdZ4Bfm4hF3-C0cPFDh5DUMGfDL-Zwc0LzmRG0DU,222
220
220
  bpy/ops/material/__init__.pyi,sha256=4u36fuqh_UeA9ZHX6lZp1yrcxvdPRjKjcEOzN2LX9F0,1049
221
221
  bpy/ops/mball/__init__.pyi,sha256=qpO_MAD_wUFIdb6Ky2lMrdVNsufZNfDRnuaixg6tVCw,5313
222
222
  bpy/ops/mesh/__init__.pyi,sha256=nDN8oKLTEOs1ZR-XMyVMg0Uni4slWy460dVzajXAJKE,162497
223
- bpy/ops/nla/__init__.pyi,sha256=4Q63H06ThysDiXT3W1kX_2LJqAyeFKSBQwhBqaONeXE,24744
223
+ bpy/ops/nla/__init__.pyi,sha256=WnJR9HUoTdVdbPHwD6HfDkMtWUx09mp-tBzlOyWYXe8,24744
224
224
  bpy/ops/node/__init__.pyi,sha256=NEtaFcYvlfH5BhYR1JdYR-4Jpb1AuzOgWMTtrxLpfKY,63060
225
225
  bpy/ops/object/__init__.pyi,sha256=514I-XR8WQNWR21EV7Thzeh9nRAeDzNubaSZoohTsXY,205750
226
226
  bpy/ops/outliner/__init__.pyi,sha256=ohgJm1n2tBnSU88O5FyXNUp9dTB_Sqb28_86gFjp79s,35759
@@ -237,7 +237,7 @@ bpy/ops/rigidbody/__init__.pyi,sha256=Gs2OZGl4NUXQ0wLPQImK9sVSg4FNHckHSfBnqKoyE8
237
237
  bpy/ops/scene/__init__.pyi,sha256=ZEpwgRw6gc6dWCIEsVFMAJK5gOsWGKWb8dOi2EItBuY,19495
238
238
  bpy/ops/screen/__init__.pyi,sha256=QwLMLVzQGagLKPPhBCZRH7xUeQcb2oLuY97zwTh2qt4,28074
239
239
  bpy/ops/script/__init__.pyi,sha256=pn2CKXaea19HjHsrF-SdWrDLfO9yDo0StYYhFYnYmTI,1508
240
- bpy/ops/sculpt/__init__.pyi,sha256=QaWUaaLZ8BVqiqad5Av1buJgES-2LvgHu-cNQ_w4I_4,39912
240
+ bpy/ops/sculpt/__init__.pyi,sha256=6terCC1ndnPTwFMNj7QzXEhRzoaR4Vevoo7VSLhSpRs,39912
241
241
  bpy/ops/sculpt_curves/__init__.pyi,sha256=VSftg3xozMLjVm43j51TDfEIvglcC_TlN2BZ1MMbh8E,3336
242
242
  bpy/ops/sequencer/__init__.pyi,sha256=4g6lIr_5oWw71xMdnCCpSHWXVRllvD9dNl3Qehhqank,93251
243
243
  bpy/ops/sound/__init__.pyi,sha256=jsnI0SFHoBtnf73dJwNl79fFScHjOhUWr2tcq2ymyzY,21562
@@ -257,7 +257,7 @@ bpy/ops/workspace/__init__.pyi,sha256=cfTHpfhZok-9W-Cv6xpLYIh1LaqCQB4RAeZNnNev_H
257
257
  bpy/ops/world/__init__.pyi,sha256=Jex-4HYHQCGb1L18edEx0_Bi6LLewdSOK0FRSMfR4a8,398
258
258
  bpy/path/__init__.pyi,sha256=QxWy6N5-7KFQWppjuhDhEV-3XNodrAcFXA6JvbbTbXQ,6388
259
259
  bpy/props/__init__.pyi,sha256=vG0dYQzpuh5QnOwqNwz8W-2yKdclHbNkC2jtXkgx4rQ,29405
260
- bpy/types/__init__.pyi,sha256=TQSGHGWWm_p2tmVCeLVasDI39Y097kinMZA3hrVSAOU,3460069
260
+ bpy/types/__init__.pyi,sha256=GdWHDScZ1hQVLLXO5xyZGvS8UpONvkO6rONA4LDA41k,3462445
261
261
  bpy/utils/__init__.pyi,sha256=tXg7jhIyeJmLMHrU85XbRTSYex_YJi8siXMvAiWamd0,10365
262
262
  bpy/utils/previews/__init__.pyi,sha256=gOgnSWVc0SRdn5n768T2WxDNYhJgTZdNwQnrSQv2D_0,2159
263
263
  bpy/utils/units/__init__.pyi,sha256=AzFFYMVq6akTZ3AHGW4GzA_n6jfeKV7O9qvqvBasBgY,2684
@@ -298,7 +298,7 @@ freestyle/utils/__init__.pyi,sha256=LRqWZRiRQIN6F3y3KxgpnatxkI1B8YrEuBzQHg_D2-0,
298
298
  freestyle/utils/ContextFunctions/__init__.pyi,sha256=cAYX_t2EX_RCmGXZJ9hUxQVNZoVerldNGJiWLZnE-U8,3442
299
299
  gpu/__init__.pyi,sha256=9AGTdrNyHWTjBpS8VqtPr2IINTOFU62oJ3QMnsHfzNc,234
300
300
  gpu/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
301
- gpu/capabilities/__init__.pyi,sha256=n-thdpeA5oqp7TOGch1zCp2yb3kNqEJZfyUcpOYZV7A,3713
301
+ gpu/capabilities/__init__.pyi,sha256=5m-TXkoKCgA7kIzqoNdbqDa1jP0KQpx0-0pL6dZnXiE,3865
302
302
  gpu/matrix/__init__.pyi,sha256=hO_20zeswDY00MH59cLbDjalNnvAT_A5Sa4D_aWr4Mo,2587
303
303
  gpu/platform/__init__.pyi,sha256=7R1hx24hMUQJdKd36jjsAVvJ-U431MGkzRtM4d-xYkQ,778
304
304
  gpu/select/__init__.pyi,sha256=VZ2jswTRLBZIUFk1CQO3x6kXnF7PCT99S6EI3UvxT80,161
@@ -343,7 +343,7 @@ rna_xml/__init__.pyi,sha256=oMdXh2K4vb_KNNhyhehXJPH20RJkrUExWFoGX6_8IoI,471
343
343
  rna_xml/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
344
344
  sys_info/__init__.pyi,sha256=8dAUaATaRsjhkMMCN8lWAlnEo_Z0qzeYMjashL-525k,93
345
345
  sys_info/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
346
- fake_bpy_module-20240304.dist-info/METADATA,sha256=P4cWrY1C9Y01D0YkmvrHCKxUHRlbNovKwbduGlHLsIk,7008
347
- fake_bpy_module-20240304.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
348
- fake_bpy_module-20240304.dist-info/top_level.txt,sha256=7r84ZPNSbRAopA50b0pH3uZ2ysQ2IvkuP0uXadxl7gs,495
349
- fake_bpy_module-20240304.dist-info/RECORD,,
346
+ fake_bpy_module-20240306.dist-info/METADATA,sha256=4cZ1dmk8Gm07OiZNhaAbBvBtJpZPN_9YoG4aaID2O1Y,7008
347
+ fake_bpy_module-20240306.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
348
+ fake_bpy_module-20240306.dist-info/top_level.txt,sha256=7r84ZPNSbRAopA50b0pH3uZ2ysQ2IvkuP0uXadxl7gs,495
349
+ fake_bpy_module-20240306.dist-info/RECORD,,
@@ -47,6 +47,15 @@ def max_batch_vertices_get() -> int:
47
47
 
48
48
  ...
49
49
 
50
+ def max_images_get() -> int:
51
+ """Get maximum supported number of image units.
52
+
53
+ :rtype: int
54
+ :return: Number of image units.
55
+ """
56
+
57
+ ...
58
+
50
59
  def max_texture_layers_get() -> int:
51
60
  """Get maximum number of layers in texture.
52
61