fake-bpy-module 20241128__py3-none-any.whl → 20241130__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.

@@ -311,6 +311,31 @@ class GREASE_PENCIL_MT_snap_pie(bpy.types.Menu):
311
311
  :param _context:
312
312
  """
313
313
 
314
+ class GREASE_PENCIL_MT_stroke_simplify(bpy.types.Menu):
315
+ bl_label: typing.Any
316
+ bl_rna: typing.Any
317
+ id_data: typing.Any
318
+
319
+ def bl_rna_get_subclass(self) -> bpy.types.Struct:
320
+ """
321
+
322
+ :return: The RNA type or default when not found.
323
+ :rtype: bpy.types.Struct
324
+ """
325
+
326
+ def bl_rna_get_subclass_py(self) -> typing.Any:
327
+ """
328
+
329
+ :return: The class or default when not found.
330
+ :rtype: typing.Any
331
+ """
332
+
333
+ def draw(self, context):
334
+ """
335
+
336
+ :param context:
337
+ """
338
+
314
339
  class GreasePencilBrushFalloff:
315
340
  bl_label: typing.Any
316
341
  bl_options: typing.Any
@@ -1637,14 +1637,38 @@ def stroke_simplify(
1637
1637
  undo: bool | None = None,
1638
1638
  *,
1639
1639
  factor: float | None = 0.01,
1640
+ length: float | None = 0.05,
1641
+ distance: float | None = 0.01,
1642
+ steps: int | None = 1,
1643
+ mode: typing.Literal["FIXED", "ADAPTIVE", "SAMPLE", "MERGE"] | None = "FIXED",
1640
1644
  ):
1641
1645
  """Simplify selected strokes
1642
1646
 
1643
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1644
- :type execution_context: int | str | None
1645
- :type undo: bool | None
1646
- :param factor: Factor
1647
- :type factor: float | None
1647
+ :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1648
+ :type execution_context: int | str | None
1649
+ :type undo: bool | None
1650
+ :param factor: Factor
1651
+ :type factor: float | None
1652
+ :param length: Length
1653
+ :type length: float | None
1654
+ :param distance: Distance
1655
+ :type distance: float | None
1656
+ :param steps: Steps
1657
+ :type steps: int | None
1658
+ :param mode: Mode, Method used for simplifying stroke points
1659
+
1660
+ FIXED
1661
+ Fixed -- Delete alternating vertices in the stroke, except extremes.
1662
+
1663
+ ADAPTIVE
1664
+ Adaptive -- Use a Ramer-Douglas-Peucker algorithm to simplify the stroke preserving main shape.
1665
+
1666
+ SAMPLE
1667
+ Sample -- Re-sample the stroke with segments of the specified length.
1668
+
1669
+ MERGE
1670
+ Merge -- Simplify the stroke by merging vertices closer than a given distance.
1671
+ :type mode: typing.Literal['FIXED','ADAPTIVE','SAMPLE','MERGE'] | None
1648
1672
  """
1649
1673
 
1650
1674
  def stroke_smooth(
@@ -131,6 +131,8 @@ def gltf(
131
131
  bone_shape_scale_factor: float | None = 1.0,
132
132
  guess_original_bind_pose: bool | None = True,
133
133
  import_webp_texture: bool | None = False,
134
+ import_select_created_objects: bool | None = True,
135
+ import_scene_extras: bool | None = True,
134
136
  ):
135
137
  """Load a glTF 2.0 file
136
138
 
@@ -181,4 +183,8 @@ def gltf(
181
183
  :type guess_original_bind_pose: bool | None
182
184
  :param import_webp_texture: Import WebP textures, If a texture exists in WebP format, loads the WebP texture instead of the fallback PNG/JPEG one
183
185
  :type import_webp_texture: bool | None
186
+ :param import_select_created_objects: Select imported objects, Select created objects at the end of the import
187
+ :type import_select_created_objects: bool | None
188
+ :param import_scene_extras: Import Scene Extras, Import scene extras as custom properties. Existing custom properties will be overwritten
189
+ :type import_scene_extras: bool | None
184
190
  """
bpy/types/__init__.pyi CHANGED
@@ -231357,6 +231357,8 @@ GREASE_PENCIL_MT_snap: bl_ui.properties_grease_pencil_common.GREASE_PENCIL_MT_sn
231357
231357
 
231358
231358
  GREASE_PENCIL_MT_snap_pie: bl_ui.properties_grease_pencil_common.GREASE_PENCIL_MT_snap_pie
231359
231359
 
231360
+ GREASE_PENCIL_MT_stroke_simplify: bl_ui.properties_grease_pencil_common.GREASE_PENCIL_MT_stroke_simplify
231361
+
231360
231362
  GREASE_PENCIL_UL_attributes: bl_ui.properties_data_grease_pencil.GREASE_PENCIL_UL_attributes
231361
231363
 
231362
231364
  GREASE_PENCIL_UL_masks: bl_ui.properties_data_grease_pencil.GREASE_PENCIL_UL_masks
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: fake-bpy-module
3
- Version: 20241128
3
+ Version: 20241130
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
@@ -129,7 +129,7 @@ bl_ui/properties_data_shaderfx/__init__.pyi,sha256=qheRKCM-zgYYTypVdyJrjqgmD1yBX
129
129
  bl_ui/properties_data_speaker/__init__.pyi,sha256=YRayS4IxkfcvwOAJlqfSL4kjzBcaqo3gf-hmM0fcVeo,4857
130
130
  bl_ui/properties_data_volume/__init__.pyi,sha256=w6ct8kb74x8X0l1vLq6Ymq-fzezD387sQv-lBH7wohM,7115
131
131
  bl_ui/properties_freestyle/__init__.pyi,sha256=JxNJb9q2e8hRqNb7ynucmV5GKCG7y_HdQJgc9z9Th8w,22822
132
- bl_ui/properties_grease_pencil_common/__init__.pyi,sha256=3m4KaXZSiY2cJT8tNdUJyohBoBWTUw2dezlvmppgTbM,8319
132
+ bl_ui/properties_grease_pencil_common/__init__.pyi,sha256=S4FyfAJvAfZgUT6l5pyFWAVkrr86autF-iy5FavDDTo,8857
133
133
  bl_ui/properties_mask_common/__init__.pyi,sha256=-Ae0CtS1OQZRwJ38l1xj-115MJo9xEQieAarliMc40s,5796
134
134
  bl_ui/properties_material/__init__.pyi,sha256=J3GrRdWFeh4p5w2qKtC5Dwz0XF301ATcsCPcV4kXWe0,13499
135
135
  bl_ui/properties_material_gpencil/__init__.pyi,sha256=xY7bZUCPnZdCODKxzvJLWJ6EyrRSs0jiyNNsNxsTahk,7917
@@ -226,11 +226,11 @@ bpy/ops/geometry/__init__.pyi,sha256=Ix8MGXa5gZBQT3aWGmDfrKPx-MTtmloRflfwiHicuTU
226
226
  bpy/ops/gizmogroup/__init__.pyi,sha256=OFN5NNvr_HFc_L7pvjSWKY_D8nF2_Ue8z6nGjB-_xac,1595
227
227
  bpy/ops/gpencil/__init__.pyi,sha256=xef0m8m4jVKzqncUi9CezsXgqES8iAYJzcEKtDfTXTY,6112
228
228
  bpy/ops/graph/__init__.pyi,sha256=My3PsXepSrn3TGQ7ePFoYML5sjzTp8LRqsPqqng7iak,51523
229
- bpy/ops/grease_pencil/__init__.pyi,sha256=8WHt2hHwMNSd5Oc_jOMX4t7b-e7nR-TjB5nB5nmFcQs,75446
229
+ bpy/ops/grease_pencil/__init__.pyi,sha256=3T2rl3sHbhh4-yFql8N5r0NfAgSHLgas2xlm8OKE4PI,76366
230
230
  bpy/ops/image/__init__.pyi,sha256=SUn2SBcvRXEHMizauJfTVFY8KBvXV_7M2meGZDxEDu8,59838
231
231
  bpy/ops/import_anim/__init__.pyi,sha256=7BExOyxBpXdbfQQN_foBI0FIfqHte9U1nfWEvNKYH0Y,3216
232
232
  bpy/ops/import_curve/__init__.pyi,sha256=U3eiL0CsWblWZe8O58JOxSXhr2sgHRHKwVzozIMsck4,651
233
- bpy/ops/import_scene/__init__.pyi,sha256=2PpUKIKaBa5NVV2eSDFHAOQAjgupZerP1BDwyZHDv90,10119
233
+ bpy/ops/import_scene/__init__.pyi,sha256=C00iOTZre83B4hBsT8qGj0njxyeIUUDqLKrNLPjhwSw,10588
234
234
  bpy/ops/info/__init__.pyi,sha256=5W732zvHciwP38qfDft9N0PRArFlsDUH2KLFPJheEPc,4224
235
235
  bpy/ops/lattice/__init__.pyi,sha256=V7hbhHOlPrBUOeFDfI0csyZwZGY616ya5HKc-x0K-2I,4817
236
236
  bpy/ops/marker/__init__.pyi,sha256=Ny5T3pex5r11KmT8SfmDdJ2tUlRX7FZGrU9fVTCA6CQ,7076
@@ -275,7 +275,7 @@ bpy/ops/workspace/__init__.pyi,sha256=4qG0-HkVfaGfdBe9QvBCKUox03nb1ZfeV1fz-0b3KJ
275
275
  bpy/ops/world/__init__.pyi,sha256=ytaDhwJ-K4SbWylChL1za6lvMNM2-RX1S0BR7892Afg,946
276
276
  bpy/path/__init__.pyi,sha256=b_M-IUy-VEWMDZJH0bP9P-HHcLLcQo59S1dARRQrP9E,5064
277
277
  bpy/props/__init__.pyi,sha256=TfulJGBHgbMIc1aadTzLWiL6Q2NQdeO9Q4_ePasNesU,30717
278
- bpy/types/__init__.pyi,sha256=aGOXDygnPusHigMLHSqEPzol09vEgy2DTZkZWadwXzA,5366822
278
+ bpy/types/__init__.pyi,sha256=GKCQFIGI6Xi8r9yeJOICFgOZ9egHC5EnNzwmGkUsHho,5366928
279
279
  bpy/typing/__init__.pyi,sha256=u2XKjd6ZB1Wjt7JwabxexZdswEZLYR2jQpxzzp6AThg,138679
280
280
  bpy/utils/__init__.pyi,sha256=XXoE6J8aW13NQ-2FvnFORXyNVUFfO8hSno-xfgJ6ZNI,13078
281
281
  bpy/utils/previews/__init__.pyi,sha256=XEThA7jxMWet1sPTJ3mmngM6LdAdKiIVSZOKbCsbvzw,2217
@@ -358,7 +358,7 @@ rna_prop_ui/__init__.pyi,sha256=lShhkbbeJ_ANi2dy4J4HIkyp1HZrMqCfhcf8QpAQsj0,1281
358
358
  rna_prop_ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
359
359
  rna_xml/__init__.pyi,sha256=idYsAZj-_egBKMA2pQl2P9IoNhZxXIkBSALFuq-ylO8,577
360
360
  rna_xml/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
361
- fake_bpy_module-20241128.dist-info/METADATA,sha256=Xt9J8av39NhKLrd3dOTdDkOA70_ndc7Dy5ANKzri6Ow,7289
362
- fake_bpy_module-20241128.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
363
- fake_bpy_module-20241128.dist-info/top_level.txt,sha256=SZm3DVRKif7dFSjYKiIIg3_7uqjIwRAwOnCIcT4hRNM,500
364
- fake_bpy_module-20241128.dist-info/RECORD,,
361
+ fake_bpy_module-20241130.dist-info/METADATA,sha256=e_oV8Q2vF8s0cKs6AL2rinyVLWoiHsIFsd7eXm547qc,7289
362
+ fake_bpy_module-20241130.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
363
+ fake_bpy_module-20241130.dist-info/top_level.txt,sha256=SZm3DVRKif7dFSjYKiIIg3_7uqjIwRAwOnCIcT4hRNM,500
364
+ fake_bpy_module-20241130.dist-info/RECORD,,