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

@@ -350,6 +350,105 @@ def interpolate(
350
350
  :type smooth_factor: float | None
351
351
  """
352
352
 
353
+ def interpolate_sequence(
354
+ override_context: bpy.types.Context | dict[str, typing.Any] = None,
355
+ execution_context: int | str | None = None,
356
+ undo: bool | None = None,
357
+ *,
358
+ step: int | None = 1,
359
+ layers: typing.Literal["ACTIVE", "ALL"] | None = "ACTIVE",
360
+ interpolate_selected_only: bool | None = False,
361
+ exclude_breakdowns: bool | None = False,
362
+ flip: typing.Literal["NONE", "FLIP", "AUTO"] | None = "AUTO",
363
+ smooth_steps: int | None = 1,
364
+ smooth_factor: float | None = 0.0,
365
+ type: typing.Literal[
366
+ "LINEAR",
367
+ "CUSTOM",
368
+ "SINE",
369
+ "QUAD",
370
+ "CUBIC",
371
+ "QUART",
372
+ "QUINT",
373
+ "EXPO",
374
+ "CIRC",
375
+ "BACK",
376
+ "BOUNCE",
377
+ "ELASTIC",
378
+ ]
379
+ | None = "LINEAR",
380
+ easing: bpy.typing.BeztripleInterpolationEasingItems | None = "EASE_IN",
381
+ back: float | None = 1.702,
382
+ amplitude: float | None = 0.15,
383
+ period: float | None = 0.15,
384
+ ):
385
+ """Generate 'in-betweens' to smoothly interpolate between Grease Pencil frames
386
+
387
+ :type override_context: bpy.types.Context | dict[str, typing.Any]
388
+ :type execution_context: int | str | None
389
+ :type undo: bool | None
390
+ :param step: Step, Number of frames between generated interpolated frames
391
+ :type step: int | None
392
+ :param layers: Layer, Layers included in the interpolation
393
+ :type layers: typing.Literal['ACTIVE','ALL'] | None
394
+ :param interpolate_selected_only: Only Selected, Interpolate only selected strokes
395
+ :type interpolate_selected_only: bool | None
396
+ :param exclude_breakdowns: Exclude Breakdowns, Exclude existing Breakdowns keyframes as interpolation extremes
397
+ :type exclude_breakdowns: bool | None
398
+ :param flip: Flip Mode, Invert destination stroke to match start and end with source stroke
399
+ :type flip: typing.Literal['NONE','FLIP','AUTO'] | None
400
+ :param smooth_steps: Iterations, Number of times to smooth newly created strokes
401
+ :type smooth_steps: int | None
402
+ :param smooth_factor: Smooth, Amount of smoothing to apply to interpolated strokes, to reduce jitter/noise
403
+ :type smooth_factor: float | None
404
+ :param type: Type, Interpolation method to use the next time 'Interpolate Sequence' is run
405
+
406
+ LINEAR
407
+ Linear -- Straight-line interpolation between A and B (i.e. no ease in/out).
408
+
409
+ CUSTOM
410
+ Custom -- Custom interpolation defined using a curve map.
411
+
412
+ SINE
413
+ Sinusoidal -- Sinusoidal easing (weakest, almost linear but with a slight curvature).
414
+
415
+ QUAD
416
+ Quadratic -- Quadratic easing.
417
+
418
+ CUBIC
419
+ Cubic -- Cubic easing.
420
+
421
+ QUART
422
+ Quartic -- Quartic easing.
423
+
424
+ QUINT
425
+ Quintic -- Quintic easing.
426
+
427
+ EXPO
428
+ Exponential -- Exponential easing (dramatic).
429
+
430
+ CIRC
431
+ Circular -- Circular easing (strongest and most dynamic).
432
+
433
+ BACK
434
+ Back -- Cubic easing with overshoot and settle.
435
+
436
+ BOUNCE
437
+ Bounce -- Exponentially decaying parabolic bounce, like when objects collide.
438
+
439
+ ELASTIC
440
+ Elastic -- Exponentially decaying sine wave, like an elastic band.
441
+ :type type: typing.Literal['LINEAR','CUSTOM','SINE','QUAD','CUBIC','QUART','QUINT','EXPO','CIRC','BACK','BOUNCE','ELASTIC'] | None
442
+ :param easing: Easing, Which ends of the segment between the preceding and following grease pencil frames easing interpolation is applied to
443
+ :type easing: bpy.typing.BeztripleInterpolationEasingItems | None
444
+ :param back: Back, Amount of overshoot for 'back' easing
445
+ :type back: float | None
446
+ :param amplitude: Amplitude, Amount to boost elastic bounces for 'elastic' easing
447
+ :type amplitude: float | None
448
+ :param period: Period, Time between bounces for elastic easing
449
+ :type period: float | None
450
+ """
451
+
353
452
  def layer_active(
354
453
  override_context: bpy.types.Context | dict[str, typing.Any] = None,
355
454
  execution_context: int | str | None = None,