Exemple #1
0
 private void StopGestureRecognition(GestureConfig config)
 {
     gestureConfigToRecognizer.Remove(config);
 }
Exemple #2
0
 protected GestureRecognizer(GestureConfig config, float screenRatio)
 {
     Config = config;
     ScreenRatio = screenRatio;
 }
Exemple #3
0
 private void StartGestureRecognition(GestureConfig config)
 {
     gestureConfigToRecognizer.Add(config, config.CreateRecognizer(ScreenAspectRatio));
 }
 protected GestureRecognizerContMotion(GestureConfig config, float screenRatio)
     : base(config, screenRatio)
 {
 }
Exemple #5
0
 protected GestureRecognizer(GestureConfig config, float screenRatio)
 {
     Config      = config;
     ScreenRatio = screenRatio;
 }
Exemple #6
0
 protected GestureRecognizer(GestureConfig config, float screenRatio)
 {
     CurrentGestureEvents = new PoolListStruct <GestureEvent>(8, NewEventFactory);
     Config      = config;
     ScreenRatio = screenRatio;
 }
 protected GestureRecognizerContMotion(GestureConfig config, float screenRatio)
     : base(config, screenRatio)
 {
 }