public Keyboard(
     View view,
     Noesis.Keyboard noesisKeyboard,
     NoesisConfig config)
 {
     this.view                     = view;
     this.noesisKeyboard           = noesisKeyboard;
     this.keyRepeatDelaySeconds    = (float)config.InputKeyRepeatDelaySeconds;
     this.keyRepeatIntervalSeconds = (float)config.InputKeyRepeatIntervalSeconds;
 }
Beispiel #2
0
 public Keyboard(
     View view,
     Noesis.Keyboard noesisKeyboard,
     NoesisConfig config)
 {
     this.view           = view;
     this.noesisKeyboard = noesisKeyboard;
     this.isEnableDirectionalNavigation = config.IsEnableDirectionalNavigation;
     this.keyRepeatDelaySeconds         = (float)config.InputKeyRepeatDelaySeconds;
     this.keyRepeatIntervalSeconds      = (float)config.InputKeyRepeatIntervalSeconds;
 }