scenery editor node bank search. node label and node group support

This commit is contained in:
tmj-fstate
2020-07-12 04:46:21 +02:00
parent c4bcb94d79
commit 93c92e5ae9
5 changed files with 110 additions and 18 deletions

View File

@@ -164,6 +164,17 @@ ui_layer::on_key( int const Key, int const Scancode, int const Action, int const
return on_key_( Key, Scancode, Action, Mods );
}
bool
ui_layer::on_char( unsigned int const Char ) {
if( m_imguiio->WantTextInput ) {
m_imguiio->AddInputCharacter( Char );
return true;
}
return on_char_( Char );
}
bool
ui_layer::on_cursor_pos( double const Horizontal, double const Vertical ) {