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

@@ -544,7 +544,7 @@ def gltf(
544
544
  :type export_frame_step: int | None
545
545
  :param export_force_sampling: Always Sample Animations, Apply sampling to all animations
546
546
  :type export_force_sampling: bool | None
547
- :param export_pointer_animation: Export Animation Pointer (Experimental), Export material, Light & Camera animation as Animation Pointer
547
+ :param export_pointer_animation: Export Animation Pointer (Experimental), Export material, Light & Camera animation as Animation Pointer. Available only for baked animation mode 'NLA Tracks' and 'Scene'
548
548
  :type export_pointer_animation: bool | None
549
549
  :param export_animation_mode: Animation mode, Export Animation mode
550
550
 
@@ -1154,6 +1154,24 @@ def set_active_material(
1154
1154
 
1155
1155
  ...
1156
1156
 
1157
+ def set_curve_resolution(
1158
+ override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1159
+ execution_context: int | str | None = None,
1160
+ undo: bool | None = None,
1161
+ *,
1162
+ resolution: int | None = 12,
1163
+ ):
1164
+ """Set resolution of selected curves
1165
+
1166
+ :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1167
+ :type execution_context: int | str | None
1168
+ :type undo: bool | None
1169
+ :param resolution: Resolution, The resolution to use for each curve segment
1170
+ :type resolution: int | None
1171
+ """
1172
+
1173
+ ...
1174
+
1157
1175
  def set_curve_type(
1158
1176
  override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1159
1177
  execution_context: int | str | None = None,
bpy/ops/wm/__init__.pyi CHANGED
@@ -4926,7 +4926,6 @@ def url_open_preset(
4926
4926
  undo: bool | None = None,
4927
4927
  *,
4928
4928
  type: str | None = "",
4929
- id: str = "",
4930
4929
  ):
4931
4930
  """Open a preset website in the web browser
4932
4931
 
@@ -4935,8 +4934,6 @@ def url_open_preset(
4935
4934
  :type undo: bool | None
4936
4935
  :param type: Site
4937
4936
  :type type: str | None
4938
- :param id: Identifier, Optional identifier
4939
- :type id: str
4940
4937
  """
4941
4938
 
4942
4939
  ...
bpy/types/__init__.pyi CHANGED
@@ -52112,7 +52112,7 @@ Property types used in class declarations are all in bpy.props
52112
52112
 
52113
52113
  * bpy.context.active_gpencil_frame
52114
52114
  * GreasePencilv3.layers
52115
- * GreasePencilv3Layers.active_layer
52115
+ * GreasePencilv3Layers.active
52116
52116
  * GreasePencilv3Layers.move
52117
52117
  * GreasePencilv3Layers.move_bottom
52118
52118
  * GreasePencilv3Layers.move_to_layer_group
@@ -64556,6 +64556,7 @@ example of how to create/use filtering/reordering callbacks.
64556
64556
 
64557
64557
  * bpy.context.grease_pencil
64558
64558
  * BlendData.grease_pencils_v3
64559
+ * BlendDataGreasePencilsV3.new
64559
64560
 
64560
64561
  :columns: 2
64561
64562
 
@@ -76829,7 +76830,7 @@ of the scene and only show nodes of the renderer they are designed for.
76829
76830
 
76830
76831
  * GreasePencilLayer.parent_group
76831
76832
  * GreasePencilv3.layer_groups
76832
- * GreasePencilv3LayerGroup.active_group
76833
+ * GreasePencilv3LayerGroup.active
76833
76834
  * GreasePencilv3LayerGroup.move
76834
76835
  * GreasePencilv3LayerGroup.move_bottom
76835
76836
  * GreasePencilv3LayerGroup.move_to_layer_group
@@ -90022,6 +90023,7 @@ Base class for integrating USD Hydra based renderers.
90022
90023
  * BlendData.grease_pencils
90023
90024
  * BlendDataGreasePencils.new
90024
90025
  * BlendDataGreasePencils.remove
90026
+ * BlendDataGreasePencilsV3.remove
90025
90027
  * MovieClip.grease_pencil
90026
90028
  * MovieTrackingTrack.grease_pencil
90027
90029
  * NodeTree.grease_pencil
@@ -102575,6 +102577,44 @@ class BlendDataGreasePencils(bpy_prop_collection[GreasePencil], bpy_struct):
102575
102577
  class BlendDataGreasePencilsV3(bpy_prop_collection[GreasePencilv3], bpy_struct):
102576
102578
  """Collection of grease pencils"""
102577
102579
 
102580
+ def tag(self, value: bool | None):
102581
+ """tag
102582
+
102583
+ :param value: Value
102584
+ :type value: bool | None
102585
+ """
102586
+ ...
102587
+
102588
+ def new(self, name: str) -> GreasePencilv3:
102589
+ """Add a new grease pencil datablock to the main database
102590
+
102591
+ :param name: New name for the data-block
102592
+ :type name: str
102593
+ :return: New grease pencil data-block
102594
+ :rtype: GreasePencilv3
102595
+ """
102596
+ ...
102597
+
102598
+ def remove(
102599
+ self,
102600
+ grease_pencil: GreasePencil,
102601
+ do_unlink: bool | None = True,
102602
+ do_id_user: bool | None = True,
102603
+ do_ui_user: bool | None = True,
102604
+ ):
102605
+ """Remove a grease pencil instance from the current blendfile
102606
+
102607
+ :param grease_pencil: Grease Pencil to remove
102608
+ :type grease_pencil: GreasePencil
102609
+ :param do_unlink: Unlink all usages of this grease pencil before deleting it
102610
+ :type do_unlink: bool | None
102611
+ :param do_id_user: Decrement user counter of all datablocks used by this grease pencil
102612
+ :type do_id_user: bool | None
102613
+ :param do_ui_user: Make sure interface does not reference this grease pencil
102614
+ :type do_ui_user: bool | None
102615
+ """
102616
+ ...
102617
+
102578
102618
  @classmethod
102579
102619
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
102580
102620
  """
@@ -105719,7 +105759,7 @@ class GreasePencilMaskLayers(bpy_prop_collection[GPencilLayerMask], bpy_struct):
105719
105759
  class GreasePencilv3LayerGroup(bpy_prop_collection[GreasePencilLayerGroup], bpy_struct):
105720
105760
  """Collection of Grease Pencil layers"""
105721
105761
 
105722
- active_group: GreasePencilLayerGroup | None
105762
+ active: GreasePencilLayerGroup | None
105723
105763
  """ Active Grease Pencil layer group
105724
105764
 
105725
105765
  :type: GreasePencilLayerGroup | None
@@ -105818,7 +105858,7 @@ class GreasePencilv3LayerGroup(bpy_prop_collection[GreasePencilLayerGroup], bpy_
105818
105858
  class GreasePencilv3Layers(bpy_prop_collection[GreasePencilLayer], bpy_struct):
105819
105859
  """Collection of Grease Pencil layers"""
105820
105860
 
105821
- active_layer: GreasePencilLayer | None
105861
+ active: GreasePencilLayer | None
105822
105862
  """ Active Grease Pencil layer
105823
105863
 
105824
105864
  :type: GreasePencilLayer | None
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: fake-bpy-module
3
- Version: 20240723
3
+ Version: 20240725
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
@@ -213,7 +213,7 @@ bpy/ops/cycles/__init__.pyi,sha256=g6zCTO76b8pR8KJCjz4b_45bnab-NFRMIaCcgJz3OW8,2
213
213
  bpy/ops/dpaint/__init__.pyi,sha256=Mk-ORgwsplFG-cuVONdPxiNIuIeGUKb54DobVz58OFU,2339
214
214
  bpy/ops/ed/__init__.pyi,sha256=lWGqLxM8lBq_LdwPyLyEZnBP2y2MSRm2KNLn5keucpk,8861
215
215
  bpy/ops/export_anim/__init__.pyi,sha256=7u0wOyjGQ-HELm1xSu6x7Nx63P76goxOfg1JeMm-AEg,2175
216
- bpy/ops/export_scene/__init__.pyi,sha256=GLF6JjE7e2oR0HDAXynfhVyL0knCLEG0SKuP_wcfHA4,37199
216
+ bpy/ops/export_scene/__init__.pyi,sha256=uIBqRRi6DjxsEYrfZw_HtDpl5h-RQKyaG1KQJ_vRCPM,37265
217
217
  bpy/ops/extensions/__init__.pyi,sha256=cHR6ZSa5YolBW18jx8PZEezo5RaKOi6-gM8aJf2BexY,18447
218
218
  bpy/ops/file/__init__.pyi,sha256=CANYFThUN7CT2P9M_1bljnFNKEVuQFEMUDmpe9j-abc,24756
219
219
  bpy/ops/fluid/__init__.pyi,sha256=7yful-0ZVHyVm8K23VxBCF_AcBGzGoihchUf0OjHuQ4,5735
@@ -222,7 +222,7 @@ bpy/ops/geometry/__init__.pyi,sha256=k_UzjNCq3OZzWFfOg2Q6qgSw78HELzW4IHH4Vu6RiAw
222
222
  bpy/ops/gizmogroup/__init__.pyi,sha256=_h2xG2u0gb4KPmAn3DnBC9ERO2NJqiAXeeH4kGyi3Ms,1706
223
223
  bpy/ops/gpencil/__init__.pyi,sha256=WQ_kmpacqzoGdpPqZds_43nNz8koeIjUy0CDn7m68es,107438
224
224
  bpy/ops/graph/__init__.pyi,sha256=Yzrm-K3D0g2FehtRtf9TevKQIUvbXUpyvYtItgWGmXw,49912
225
- bpy/ops/grease_pencil/__init__.pyi,sha256=IDKZGsfdH1TZxJWRgwnKF-NrryKkz9cyHPYgQblsm28,47450
225
+ bpy/ops/grease_pencil/__init__.pyi,sha256=2bT_4bfnkYPDiknOSeEvNIskCJKCfhBLn5SgevAiwa8,48000
226
226
  bpy/ops/image/__init__.pyi,sha256=IuEU6nfl103qOKX0R45PjyFMtXYx2Hvy9ujW0c4q_X8,57772
227
227
  bpy/ops/import_anim/__init__.pyi,sha256=sc5jYBSzFy-LM8137hRPNlOPeVGrjXCxIe80ZUpP_r8,2922
228
228
  bpy/ops/import_curve/__init__.pyi,sha256=iE5haqhq6lCoqK39ir0DO88JQChanDbRw9EDcmVvB94,753
@@ -266,12 +266,12 @@ bpy/ops/uilist/__init__.pyi,sha256=WhityU_t7v5Lnvs10fCIeOpmR5Ws77bX1PkhL1tAhCE,2
266
266
  bpy/ops/uv/__init__.pyi,sha256=x4V-n92PiXPDnKvFMb2CTBj7eXKOYFQfblXkgM-6DA4,48977
267
267
  bpy/ops/view2d/__init__.pyi,sha256=gXNF0dBhiPqX3rOb40Ev8J1sX2TDbve35FAQSfcF1XQ,9356
268
268
  bpy/ops/view3d/__init__.pyi,sha256=Tmxe1tUhHtqfUWqnFAin2o9g9E4IAVw0n9DBexKXG5s,40607
269
- bpy/ops/wm/__init__.pyi,sha256=3pYvC0MPQF8f5oDsimU2bcabex1Dy4fnuBqju6vdt9U,215991
269
+ bpy/ops/wm/__init__.pyi,sha256=rRmGAxeuganS1mtTQn68alZb8CFCE6TJLwd7i33jgMg,215908
270
270
  bpy/ops/workspace/__init__.pyi,sha256=OSELKT_HUs2W6cOk2wOigZgkbieGezMVWTi45f4x-Ik,3289
271
271
  bpy/ops/world/__init__.pyi,sha256=_z3cX9CYV0nTmSiSQcC82nRiXYriWMcHomfxmSl2GxM,1057
272
272
  bpy/path/__init__.pyi,sha256=eHZZMKEe97JZsx7p5YzG8YtEJ6X7T2gVtMUO8oRFevU,5924
273
273
  bpy/props/__init__.pyi,sha256=Ve1JEXbDvR1jPFE21dZEQQaBz15sdZ0IG-N3CVxtV40,29575
274
- bpy/types/__init__.pyi,sha256=GlD6d24TPP2PEL1w45_caX0EtzTYsp66SeFcDAxq8G8,5275536
274
+ bpy/types/__init__.pyi,sha256=7O75ID34OrsssEnXXYxldn9Scgi5IDGezbGsat3IZ8U,5276771
275
275
  bpy/utils/__init__.pyi,sha256=rG2EBRXMb8Mzr99UoscRuEqtAQHYqRMob8vYyaRF6-g,13752
276
276
  bpy/utils/previews/__init__.pyi,sha256=0mvcirUV7D4ByWzEUIBVEEJ1VTFhBjBcstllI7L6MRc,2439
277
277
  bpy/utils/units/__init__.pyi,sha256=2OtqF54xi6peGyNeSGkuaLpytf2EESF753zqooe8bwc,2719
@@ -355,7 +355,7 @@ rna_xml/__init__.pyi,sha256=aUk0kaxu1bMT5z1b2S_CnI0r-p7119GGYDjeV65sx6w,670
355
355
  rna_xml/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
356
356
  sys_info/__init__.pyi,sha256=-GCmGVtiditgEnxiqi7hwH2wbEMmrtUNGvMEbxVezU4,189
357
357
  sys_info/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
358
- fake_bpy_module-20240723.dist-info/METADATA,sha256=rvOo1f7gukOjqRrZLYk4yPObNc2CxSVkLAWCpqLlx8I,7188
359
- fake_bpy_module-20240723.dist-info/WHEEL,sha256=Wyh-_nZ0DJYolHNn1_hMa4lM7uDedD_RGVwbmTjyItk,91
360
- fake_bpy_module-20240723.dist-info/top_level.txt,sha256=laOLfHIg0_6N4ntsGrWh85yODawYeLVGI-wex_FGLUI,509
361
- fake_bpy_module-20240723.dist-info/RECORD,,
358
+ fake_bpy_module-20240725.dist-info/METADATA,sha256=54-M3xh4f3fmpxEqswTsnEkkngnCH3E9dN91FTyy-XU,7188
359
+ fake_bpy_module-20240725.dist-info/WHEEL,sha256=Wyh-_nZ0DJYolHNn1_hMa4lM7uDedD_RGVwbmTjyItk,91
360
+ fake_bpy_module-20240725.dist-info/top_level.txt,sha256=laOLfHIg0_6N4ntsGrWh85yODawYeLVGI-wex_FGLUI,509
361
+ fake_bpy_module-20240725.dist-info/RECORD,,