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

@@ -341,8 +341,8 @@ class _defs_sequencer_generic:
341
341
 
342
342
  class _defs_sequencer_select:
343
343
  box_preview: typing.Any
344
+ box_timeline: typing.Any
344
345
  select_preview: typing.Any
345
- select_timeline: typing.Any
346
346
 
347
347
  class _defs_texture_paint:
348
348
  blur: typing.Any
@@ -175,6 +175,18 @@ def asset_revert(
175
175
  :type undo: bool | None
176
176
  """
177
177
 
178
+ def asset_save(
179
+ override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
180
+ execution_context: int | str | None = None,
181
+ undo: bool | None = None,
182
+ ):
183
+ """Update the active brush asset in the asset library with current settings
184
+
185
+ :type override_context: bpy.types.Context | dict[str, typing.Any] | None
186
+ :type execution_context: int | str | None
187
+ :type undo: bool | None
188
+ """
189
+
178
190
  def asset_save_as(
179
191
  override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
180
192
  execution_context: int | str | None = None,
@@ -197,18 +209,6 @@ def asset_save_as(
197
209
  :type catalog_path: str
198
210
  """
199
211
 
200
- def asset_update(
201
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
202
- execution_context: int | str | None = None,
203
- undo: bool | None = None,
204
- ):
205
- """Update the active brush asset in the asset library with current settings
206
-
207
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
208
- :type execution_context: int | str | None
209
- :type undo: bool | None
210
- """
211
-
212
212
  def curve_preset(
213
213
  override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
214
214
  execution_context: int | str | None = None,
@@ -374,6 +374,7 @@ def interpolate(
374
374
  shift: float | None = 0.0,
375
375
  layers: typing.Literal["ACTIVE", "ALL"] | None = "ACTIVE",
376
376
  exclude_breakdowns: bool | None = False,
377
+ use_selection: bool | None = False,
377
378
  flip: typing.Literal["NONE", "FLIP", "AUTO"] | None = "AUTO",
378
379
  smooth_steps: int | None = 1,
379
380
  smooth_factor: float | None = 0.0,
@@ -389,6 +390,8 @@ def interpolate(
389
390
  :type layers: typing.Literal['ACTIVE','ALL'] | None
390
391
  :param exclude_breakdowns: Exclude Breakdowns, Exclude existing Breakdowns keyframes as interpolation extremes
391
392
  :type exclude_breakdowns: bool | None
393
+ :param use_selection: Use Selection, Use only selected strokes for interpolating
394
+ :type use_selection: bool | None
392
395
  :param flip: Flip Mode, Invert destination stroke to match start and end with source stroke
393
396
  :type flip: typing.Literal['NONE','FLIP','AUTO'] | None
394
397
  :param smooth_steps: Iterations, Number of times to smooth newly created strokes
@@ -404,7 +407,6 @@ def interpolate_sequence(
404
407
  *,
405
408
  step: int | None = 1,
406
409
  layers: typing.Literal["ACTIVE", "ALL"] | None = "ACTIVE",
407
- interpolate_selected_only: bool | None = False,
408
410
  exclude_breakdowns: bool | None = False,
409
411
  flip: typing.Literal["NONE", "FLIP", "AUTO"] | None = "AUTO",
410
412
  smooth_steps: int | None = 1,
@@ -438,8 +440,6 @@ def interpolate_sequence(
438
440
  :type step: int | None
439
441
  :param layers: Layer, Layers included in the interpolation
440
442
  :type layers: typing.Literal['ACTIVE','ALL'] | None
441
- :param interpolate_selected_only: Only Selected, Interpolate only selected strokes
442
- :type interpolate_selected_only: bool | None
443
443
  :param exclude_breakdowns: Exclude Breakdowns, Exclude existing Breakdowns keyframes as interpolation extremes
444
444
  :type exclude_breakdowns: bool | None
445
445
  :param flip: Flip Mode, Invert destination stroke to match start and end with source stroke
@@ -96,8 +96,8 @@ def area_join(
96
96
  execution_context: int | str | None = None,
97
97
  undo: bool | None = None,
98
98
  *,
99
- source_xy: collections.abc.Iterable[int] | None = (0, 0),
100
- target_xy: collections.abc.Iterable[int] | None = (0, 0),
99
+ source_xy: collections.abc.Iterable[int] | None = (211171749, 32766),
100
+ target_xy: collections.abc.Iterable[int] | None = (211171749, 32766),
101
101
  ):
102
102
  """Join selected areas into new window
103
103
 
bpy/types/__init__.pyi CHANGED
@@ -80398,6 +80398,7 @@ of the scene and only show nodes of the renderer they are designed for.
80398
80398
  --------------------
80399
80399
 
80400
80400
  * GreasePencilLayer.parent_group
80401
+ * GreasePencilLayerGroup.parent_group
80401
80402
  * GreasePencilv3.layer_groups
80402
80403
  * GreasePencilv3LayerGroup.active
80403
80404
  * GreasePencilv3LayerGroup.move
@@ -158214,6 +158215,12 @@ class GreasePencilLayerGroup(bpy_struct):
158214
158215
  :type: str
158215
158216
  """
158216
158217
 
158218
+ parent_group: typing_extensions.Self
158219
+ """ The parent group this group is part of
158220
+
158221
+ :type: typing_extensions.Self
158222
+ """
158223
+
158217
158224
  use_masks: bool
158218
158225
  """ The visibility of drawings in the layers in this group is affected by the layers in the masks lists
158219
158226
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: fake-bpy-module
3
- Version: 20241017
3
+ Version: 20241019
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
@@ -169,7 +169,7 @@ bl_ui/space_statusbar/__init__.pyi,sha256=Kb64lM_S6RVATyQB1kQu-x7JSGceXsGqNyJ6AR
169
169
  bl_ui/space_text/__init__.pyi,sha256=l5CwsrWjvBl_CQQQqfjH7SbRVeAkK7z9R8UAi7GY59c,8799
170
170
  bl_ui/space_time/__init__.pyi,sha256=CsHClliVjg_FdPpaJzh2EgWkPTMZ0-_l0DCEXhx0fP8,4723
171
171
  bl_ui/space_toolsystem_common/__init__.pyi,sha256=IFq4tTh_oM6-dQWMZbuRo6HhYinOLBFC8ORj0S5ZWcs,3185
172
- bl_ui/space_toolsystem_toolbar/__init__.pyi,sha256=hyZX3v4vN-0nUrbXuSFbRMElaNuZtIvGMJfAjTaErt0,9927
172
+ bl_ui/space_toolsystem_toolbar/__init__.pyi,sha256=FSYElbb_hnP0urIqymcVuHIJEaA4oA0DNSdg-VufPFI,9924
173
173
  bl_ui/space_topbar/__init__.pyi,sha256=tVupsHc6IdA1o_axDcB1Cbf0o8ARZzgLncMXgguQnWY,15316
174
174
  bl_ui/space_userpref/__init__.pyi,sha256=EGCdnPQ4iTmERhhzHcb3l-QZBQpZGoGjHMGeTlcyryY,79706
175
175
  bl_ui/space_view3d/__init__.pyi,sha256=HyTTm0awNZtEwDNkDYINCyklRpnXy0Rfr07ki5TGt3A,155025
@@ -202,7 +202,7 @@ bpy/ops/anim/__init__.pyi,sha256=YFwVzrwUyXXNubpsPs1bD4YLxPJqBiB_uhCwqiak96M,344
202
202
  bpy/ops/armature/__init__.pyi,sha256=HvwRtnX0DbGxiFHvyo4qMW736mxUJrKI9QQgDFeHftw,28342
203
203
  bpy/ops/asset/__init__.pyi,sha256=1VaZTErx5Gtv2EQsTDnJ-8-bU5EEy1CfGWC-SlrTYrE,11279
204
204
  bpy/ops/boid/__init__.pyi,sha256=OZTYsYsABxDbsAt5ni7hN1z1KymV_Q4Pll__NQVDezM,3253
205
- bpy/ops/brush/__init__.pyi,sha256=9aOZ5qiX6ZZG2i4TseMWmG_CigypmCT27fQtQXFi8q4,11757
205
+ bpy/ops/brush/__init__.pyi,sha256=bLGox27gIsExbj8k1KnTqEafBvjwahpyTqTyPThK_b8,11755
206
206
  bpy/ops/buttons/__init__.pyi,sha256=8KxoTsxG3Xyu56sfSKKjntI0pGJGUrkHCR3Byz030_s,9909
207
207
  bpy/ops/cachefile/__init__.pyi,sha256=epLtrYV_rXpSNVPa0PQC_dJk8HYJsyhPQAyGYwiEb5I,9680
208
208
  bpy/ops/camera/__init__.pyi,sha256=S_QZcF94MM43nyyZ8Ldkp49ymdMWagFAmxOErczGbqA,1699
@@ -226,7 +226,7 @@ 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=bw4uIeVRbzi9FCzmFGVH8Qmts_mCCyHfUMSYt-SxOQE,74881
229
+ bpy/ops/grease_pencil/__init__.pyi,sha256=gEODEiBglzLM1kzQFtZs8mJnyNJqa5UJqIkdHMQp2Io,74847
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
@@ -253,7 +253,7 @@ bpy/ops/ptcache/__init__.pyi,sha256=UXfqM90z4atRrWfj-u_OG0wi7OgvMzs0r8usiBp5Sow,
253
253
  bpy/ops/render/__init__.pyi,sha256=qgjTSltZ5-pvjFibfkbuahh5PPzPKe1Feo1lRzuxUMQ,9427
254
254
  bpy/ops/rigidbody/__init__.pyi,sha256=kH3fZft8NevNiVP44o_RMGUqx0bj4e1k3ADbJYM3_90,8647
255
255
  bpy/ops/scene/__init__.pyi,sha256=ZCDXo6ygGlCoFNgXs5BixfFTalKQJk48Tn5JKFK4EN4,19445
256
- bpy/ops/screen/__init__.pyi,sha256=brjCQalre8Km7BxXPI6t0j3NBggA1IrsiOwNZ9AmhKc,26004
256
+ bpy/ops/screen/__init__.pyi,sha256=ESGWAhW-hS6NHNMRwRpGoi_jeaoLRF3Ukn9UzOtc5ss,26028
257
257
  bpy/ops/script/__init__.pyi,sha256=qJGs4LY_-NgCKFwGkOBwvig0LFr5v72A9nL-LQ21HrY,1460
258
258
  bpy/ops/sculpt/__init__.pyi,sha256=rx6Cwe39UDt57ekD4u3CsfjrbBIGmGxNGHY7I4St0zg,52342
259
259
  bpy/ops/sculpt_curves/__init__.pyi,sha256=h9WZL7nJe6THcD9vxr7_qxeHb3s9dLuE-GSqd5s8dac,3310
@@ -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=lXSqQ4p4zukM_-6TaN4v7lNWFVY0xbYGMkOVLpkbpsI,5444
277
277
  bpy/props/__init__.pyi,sha256=eVVh1KTFtNf6c-4uSWt4wANzTv1RvN2I2FQ7ewdrKCQ,31045
278
- bpy/types/__init__.pyi,sha256=_3EL_72Cct7bQLKQ5xod-Aot9phzqsOfpUAHP2oMsjE,5368454
278
+ bpy/types/__init__.pyi,sha256=lS7qlNHIMoPXoSglOCcs1aCPO10qeP_opHaxfIxYDQM,5368624
279
279
  bpy/typing/__init__.pyi,sha256=l9zIo04M9gyNPPOCFAvFDOwgWgd-dyKCv5yGV6bx41Y,138523
280
280
  bpy/utils/__init__.pyi,sha256=AEb3oVPPh_gqLyKORj6rsxDPWvXIHjqp_eME3z98GcM,13117
281
281
  bpy/utils/previews/__init__.pyi,sha256=AsbDN4vRLbSTZ7_S_4LqmI1sJmV_8NnqDt1QfBdH94Y,2280
@@ -311,7 +311,7 @@ freestyle/functions/__init__.pyi,sha256=sEPnGHwZm8XBlfE7CKLros3CKJlAh1h1FI74nBTE
311
311
  freestyle/predicates/__init__.pyi,sha256=TI-9arpIRbq7ePsxHS-d-4iIj54uHMp-ZyGhPVODMPg,13461
312
312
  freestyle/shaders/__init__.pyi,sha256=1Ov48B4P7LV3dwjBqHqqqbPFRBZWjENqIDaFb97Qdj0,23835
313
313
  freestyle/types/__init__.pyi,sha256=NkyVRi0oSwC1hAVdFnytoMnluE6T2W4tyx73CMwYnRo,99019
314
- freestyle/utils/__init__.pyi,sha256=lW5JWrilkFTvRmtYoS3hbmWfj2abo2hHsvp4eyGLbcQ,5108
314
+ freestyle/utils/__init__.pyi,sha256=DdX3Qj2yTIu8jXdOAnf_9yKhJ5AQFnS_zVvSAdTfBpU,5108
315
315
  freestyle/utils/ContextFunctions/__init__.pyi,sha256=uPNpwsSaqruftJiGu-P0a3YrjEkE4vLigWGh0Lvrtx4,3405
316
316
  gpu/__init__.pyi,sha256=vySMnQlOzFH_SMmm7p86InVADL4-y4m5_8wTYtYOLPo,7975
317
317
  gpu/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -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-20241017.dist-info/METADATA,sha256=wEKvSU_4DBJsAjfixqyaS3Egy1Altpa4N-vxFeGei1I,7204
362
- fake_bpy_module-20241017.dist-info/WHEEL,sha256=OVMc5UfuAQiSplgO0_WdW7vXVGAt9Hdd6qtN4HotdyA,91
363
- fake_bpy_module-20241017.dist-info/top_level.txt,sha256=SZm3DVRKif7dFSjYKiIIg3_7uqjIwRAwOnCIcT4hRNM,500
364
- fake_bpy_module-20241017.dist-info/RECORD,,
361
+ fake_bpy_module-20241019.dist-info/METADATA,sha256=ne0GvF14z29nDTlYM66SkY8vk9FWKF1AdVP3ghctshA,7204
362
+ fake_bpy_module-20241019.dist-info/WHEEL,sha256=OVMc5UfuAQiSplgO0_WdW7vXVGAt9Hdd6qtN4HotdyA,91
363
+ fake_bpy_module-20241019.dist-info/top_level.txt,sha256=SZm3DVRKif7dFSjYKiIIg3_7uqjIwRAwOnCIcT4hRNM,500
364
+ fake_bpy_module-20241019.dist-info/RECORD,,
@@ -124,7 +124,7 @@ def material_from_fedge(fe):
124
124
  """get the diffuse RGBA color from an FEdge"""
125
125
 
126
126
  def normal_at_I0D(it): ...
127
- def pairwise(iterable, types={Stroke, StrokeVertexIterator}):
127
+ def pairwise(iterable, types={StrokeVertexIterator, Stroke}):
128
128
  """Yields a tuple containing the previous and current object"""
129
129
 
130
130
  def rgb_to_bw(r, g, b):