Table of Contents

Interface IBlendableProperty<T>

Namespace
Gasimo.CineBlend
Assembly
Cineblend.CSharp.dll

Interface for properties that can be blended

public interface IBlendableProperty<T>

Type Parameters

T

Properties

CurrentValue

Current value of the property

T CurrentValue { get; set; }

Property Value

T

Methods

Lerp(T, T, float)

Linearly interpolates between two values

public static abstract T Lerp(T start, T end, float t)

Parameters

start T
end T
t float

Returns

T

Interpolated value