A class that is composed of Checks to represent a gesture. More...
Public Member Functions | |
Gesture () | |
Create a Gesture object. Use additional methods to specify gesture composition for events, checks, and normalizers. More... | |
bool | GestureCompleted (List< GTransform > transforms) |
Determines if the specified GTransforms generated satisfy the requirements of this gesture. More... | |
void | FireEvent (GestureMetaData metaData) |
Fires the specifie GestureEvent associated with this gesture. More... | |
Gesture | AddEvent (UnityAction< GestureMetaData > eventAction) |
Adds a GestureEvent to be called at gesture completion. More... | |
void | ClearEvents () |
Removes all events associated with this gesture. More... | |
Gesture | SetNormalizer (Normalizer normalizer) |
Sets the Normalizer to be applied to every incoming GTransform data point. More... | |
Normalizer | GetNormalizer () |
Gets the Normalizer attached to this Gesture More... | |
Gesture | AddCheck (Check newCheck) |
Adds a single check to the list of checks that only need to be satisfied once for gesture completion. More... | |
Gesture | AddChecks (IEnumerable< Check > newChecks) |
Adds a range of checks to the list of checks that only need to be satisfied once for gesture completion. More... | |
Gesture | AddAlwaysCheck (Check newCheck) |
Adds a single check to the list of checks that need to be satisfied by every data point for gesture completion. More... | |
Gesture | AddAlwaysChecks (IEnumerable< Check > newChecks) |
Adds a range of check to the list of checks that need to be satisfied by every data point for gesture completion. More... | |
Gesture | AddSequentialCheck (Check newCheck) |
Adds a single check to the list of checks that must be satisfied in sequential order for gesture completion. More... | |
Gesture | AddSequentialChecks (IEnumerable< Check > newChecks) |
Adds a range of checks to the list of chekcs that must be satisfied in sequential order for gesture completion. More... | |
List< Check > | GetAllChecks () |
Get all checks attached to this Gesture More... | |
Properties | |
bool | isEnabled [get, set] |
Whether the gesture is actively being detected or not. More... | |
float | gestureCompleteConfidence [get, set] |
The ratio of points that needs to satisfy gesture checks for gesture completion. More... | |
float | gestureCompletionPrecision [get, set] |
A measure of how close a set of GTransforms is to the gesture definition. More... | |
A class that is composed of Checks to represent a gesture.
|
inline |
Create a Gesture object. Use additional methods to specify gesture composition for events, checks, and normalizers.
Adds a single check to the list of checks that need to be satisfied by every data point for gesture completion.
newCheck | The check to be added to the always-check list. |
Adds a range of check to the list of checks that need to be satisfied by every data point for gesture completion.
newChecks | IEnumerable of Checks to be passed in. |
Adds a single check to the list of checks that only need to be satisfied once for gesture completion.
newCheck |
Adds a range of checks to the list of checks that only need to be satisfied once for gesture completion.
newChecks | IEnumerator of Checks |
|
inline |
Adds a GestureEvent to be called at gesture completion.
eventAction |
Adds a range of checks to the list of chekcs that must be satisfied in sequential order for gesture completion.
newChecks | IEnumerable of Checks to be passed in. |
|
inline |
Removes all events associated with this gesture.
|
inline |
Fires the specifie GestureEvent associated with this gesture.
metaData | The GestureMetaData created from the gesture data. |
|
inline |
Determines if the specified GTransforms generated satisfy the requirements of this gesture.
transforms | The List of Transforms to be checked |
|
inline |
Get all checks attached to this Gesture
|
inline |
Gets the Normalizer attached to this Gesture
|
inline |
Sets the Normalizer to be applied to every incoming GTransform data point.
normalizer | The Normalizer to be set. |
|
getset |
The ratio of points that needs to satisfy gesture checks for gesture completion.
Highly advised to leave at 1, or remain above 0.9. Low values will cause unwanted side effects like gesture overlap, or acceptance of random movements as gestures.
|
getset |
A measure of how close a set of GTransforms is to the gesture definition.
0.0 is a perfect gesture. Humanly impossible. 1.0 is as imperfect as possible while still passing the gesture at full confidence. When gesture confidence is not 1, the value is actual gesture completion precision minus the proportion of points satisfing gesture
.
|
getset |
Whether the gesture is actively being detected or not.