Show / Hide Table of Contents

Delegate Channel<TValue>.LerpFunc

A function that returns a generic Type. The Functions can be seen in Lerp.cs

Namespace: Fusee.Xirkit
Assembly: Fusee.Xirkit.dll
Syntax
public delegate TValue LerpFunc(TValue firstVal, TValue secondVal, float time1, float time2);
Parameters
Type Name Description
TValue firstVal

The first value.

TValue secondVal

The second value.

System.Single time1

The time1.

System.Single time2

The time2.

Returns
Type Description
TValue
Generated by DocFX
GitHub Repo
Back to top