Skip to content

Animation LoopModeEnum

Eduard Gushchin edited this page Jun 21, 2026 · 5 revisions

Animation.LoopModeEnum

Back to API Reference

Namespace: Electron2D

Summary

Describes how playback behaves when it reaches the end of the resource.

Declaration

public enum Electron2D.Animation.LoopModeEnum : System.IComparable, System.IConvertible, System.IFormattable, System.ISpanFormattable

Remarks

The loop mode is consumed by Electron2D.AnimationPlayer; the resource itself only stores the selected value.

Since

This enum is available since Electron2D 0.1.0 Preview.

Members

Member Kind Summary
Linear Enum value Playback wraps from Electron2D.Animation.Length back to the beginning.
None Enum value Playback stops when it reaches Electron2D.Animation.Length.

Member Details

Linear

Kind: Enum value

public const Electron2D.Animation.LoopModeEnum Linear

Summary

Playback wraps from Electron2D.Animation.Length back to the beginning.

Remarks

Use this value with APIs that accept LoopModeEnum.

Since

This API is available since Electron2D 0.1.0 Preview.

See Also

  • Electron2D.Animation.LoopModeEnum

None

Kind: Enum value

public const Electron2D.Animation.LoopModeEnum None

Summary

Playback stops when it reaches Electron2D.Animation.Length.

Remarks

Use this value with APIs that accept LoopModeEnum.

Since

This API is available since Electron2D 0.1.0 Preview.

See Also

  • Electron2D.Animation.LoopModeEnum

Clone this wiki locally