示例#1
0
 private void StopGestureRecognition(GestureConfig config)
 {
     gestureConfigToRecognizer.Remove(config);
 }
示例#2
0
 protected GestureRecognizer(GestureConfig config, float screenRatio)
 {
     Config = config;
     ScreenRatio = screenRatio;
 }
示例#3
0
 private void StartGestureRecognition(GestureConfig config)
 {
     gestureConfigToRecognizer.Add(config, config.CreateRecognizer(ScreenAspectRatio));
 }
 protected GestureRecognizerContMotion(GestureConfig config, float screenRatio)
     : base(config, screenRatio)
 {
 }
示例#5
0
 protected GestureRecognizer(GestureConfig config, float screenRatio)
 {
     Config      = config;
     ScreenRatio = screenRatio;
 }
示例#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)
 {
 }