Targeting System 2.0.0
Plugin for multipurpose targeting and visual effects.
|
Represents a value associated with time interval information. The time interval can represent the time it took to produce the value, the interval relative to a previous value, the value's delivery time relative to a base, etc. More...
Public Member Functions | |
FrameInterval (T value, int interval) | |
Constructs a time interval value. More... | |
bool | Equals (FrameInterval< T > other) |
Determines whether the current FrameInterval<T> value has the same Value and Interval as a specified FrameInterval<T> value. More... | |
override bool | Equals (object obj) |
Determines whether the specified System.Object is equal to the current FrameInterval<T>. More... | |
override int | GetHashCode () |
Returns the hash code for the current FrameInterval<T> value. More... | |
override string | ToString () |
Returns a string representation of the current FrameInterval<T> value. More... | |
Static Public Member Functions | |
static bool | operator== (FrameInterval< T > first, FrameInterval< T > second) |
Determines whether the two specified FrameInterval<T> values have the same Value and Interval. More... | |
static bool | operator!= (FrameInterval< T > first, FrameInterval< T > second) |
Determines whether the two specified FrameInterval<T> values don't have the same Value and Interval. More... | |
Properties | |
T | Value [get] |
Gets the value. | |
int | Interval [get] |
Gets the interval. | |
Represents a value associated with time interval information. The time interval can represent the time it took to produce the value, the interval relative to a previous value, the value's delivery time relative to a base, etc.
T | The type of the value being annotated with time interval information. |
UniRx.FrameInterval< T >.FrameInterval | ( | T | value, |
int | interval | ||
) |
Constructs a time interval value.
value | The value to be annotated with a time interval. |
interval | Time interval associated with the value. |
bool UniRx.FrameInterval< T >.Equals | ( | FrameInterval< T > | other | ) |
Determines whether the current FrameInterval<T> value has the same Value and Interval as a specified FrameInterval<T> value.
other | An object to compare to the current FrameInterval<T> value. |
override bool UniRx.FrameInterval< T >.Equals | ( | object | obj | ) |
Determines whether the specified System.Object is equal to the current FrameInterval<T>.
obj | The System.Object to compare with the current FrameInterval<T>. |
override int UniRx.FrameInterval< T >.GetHashCode | ( | ) |
Returns the hash code for the current FrameInterval<T> value.
|
static |
Determines whether the two specified FrameInterval<T> values don't have the same Value and Interval.
first | The first FrameInterval<T> value to compare. |
second | The second FrameInterval<T> value to compare. |
|
static |
Determines whether the two specified FrameInterval<T> values have the same Value and Interval.
first | The first FrameInterval<T> value to compare. |
second | The second FrameInterval<T> value to compare. |
override string UniRx.FrameInterval< T >.ToString | ( | ) |
Returns a string representation of the current FrameInterval<T> value.