Skip to content

@ue-too/animate / index / StringAnimationHelper

クラス: StringAnimationHelper

定義: animatable-attribute.ts:194

Interface for type-specific interpolation helpers.

Remarks

Animation helpers provide the lerp (linear interpolation) logic for specific types. Different types require different interpolation strategies:

  • Numbers: Simple linear interpolation
  • Points: Component-wise interpolation
  • Colors (RGB): Component-wise color interpolation
  • Strings: Step-based (threshold) interpolation

typescript
const myHelper: AnimatableAttributeHelper<number> = {
  lerp: (ratio, start, end) => {
    const t = (ratio - start.percentage) / (end.percentage - start.percentage);
    return start.value + t * (end.value - start.value);
  }
};

実装

コンストラクター

コンストラクター

new StringAnimationHelper(): StringAnimationHelper

定義: animatable-attribute.ts:195

戻り値

StringAnimationHelper

メソッド

lerp()

lerp(ratio, start, end): string

定義: animatable-attribute.ts:197

Interpolates between two keyframes at a given ratio.

パラメータ

ratio

number

Current animation progress (0.0 to 1.0)

start

Keyframe<string>

Starting keyframe

end

Keyframe<string>

Ending keyframe

戻り値

string

Interpolated value at the given ratio

の実装

AnimatableAttributeHelper.lerp