struct Curve.Frame

in global :: Sandbox

Keyframes times and values should range between 0 and 1


public float Time { get; set; }

The delta position on the time line (0-1)

public float Value { get; set; }

The delta position on the value line (0-1)

public float In { get; set; }

This is the slope of entry, formula is something like tan( angle )

public float Out { get; set; }

This is the slope of exit, formula is something like tan( angle )

public Curve.HandleMode Mode { get; set; }

How the line should behave when entering/leaving this frame

public Curve.Frame WithTime( float time )

😔 No documentation found.

public Curve.Frame WithValue( float value )

😔 No documentation found.

public bool Equals( object obj )

😔 No documentation found.

public int GetHashCode( )

😔 No documentation found.

public string ToString( )

😔 No documentation found.

public Type GetType( )

😔 No documentation found.

public Curve.Frame( float timedelta, float valuedelta )

😔 No documentation found.

public Curve.Frame( float timedelta, float valuedelta, float inTangent, float outTangent )

😔 No documentation found.