Skip to content

Animation InterpolationTypeEnum

Eduard Gushchin edited this page Jul 1, 2026 · 5 revisions

Home | API by Category | Complete API Index | API Compatibility

Field Value
Full name Electron2D.Animation.InterpolationTypeEnum
Namespace Electron2D
Kind enum
Category Animation and Tweening

Overview

Describes how value tracks produce values between neighboring keys.

Syntax

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

Godot 4.7 C# profile compatibility

Profile: Electron2D 0.1.0 2D
Status: Partial / Not verified
Out of profile: yes
Godot reference: Animation.InterpolationType

Nearest and linear interpolation modes for value tracks.

Remarks

Method tracks ignore this value because their keys represent discrete calls.

Since

This enum is available since Electron2D 0.1.0 Preview.

Members

Member Kind Summary
Linear Enum value Interpolates supported numeric and 2D value types between keys.
Nearest Enum value Reuses the latest key at or before the requested time.

Member Details

Linear

Kind: Enum value

public const Electron2D.Animation.InterpolationTypeEnum Linear

Summary

Interpolates supported numeric and 2D value types between keys.

Remarks

Use this value with APIs that accept InterpolationTypeEnum.

Since

This API is available since Electron2D 0.1.0 Preview.

See Also

  • Electron2D.Animation.InterpolationTypeEnum

Nearest

Kind: Enum value

public const Electron2D.Animation.InterpolationTypeEnum Nearest

Summary

Reuses the latest key at or before the requested time.

Remarks

Use this value with APIs that accept InterpolationTypeEnum.

Since

This API is available since Electron2D 0.1.0 Preview.

See Also

  • Electron2D.Animation.InterpolationTypeEnum

Clone this wiki locally