예제 #1
0
 protected GestureRecognizerContMotion(GestureConfig config, float screenRatio)
     : base(config, screenRatio)
 {
 }
예제 #2
0
 private void StopGestureRecognition(GestureConfig config)
 {
     gestureConfigToRecognizer.Remove(config);
 }
예제 #3
0
 private void StartGestureRecognition(GestureConfig config)
 {
     gestureConfigToRecognizer.Add(config, config.CreateRecognizer(ScreenAspectRatio));
 }
예제 #4
0
 protected GestureRecognizer(GestureConfig config, float screenRatio)
 {
     Config = config;
     ScreenRatio = screenRatio;
 }
예제 #5
0
 protected GestureRecognizer(GestureConfig config, float screenRatio)
 {
     Config      = config;
     ScreenRatio = screenRatio;
 }
 protected GestureRecognizerContMotion(GestureConfig config, float screenRatio)
     : base(config, screenRatio)
 {
 }