added color picking with ALT key, added crash report library for windows
This commit is contained in:
@@ -95,6 +95,7 @@ bool App::gesture_end()
|
||||
}
|
||||
bool App::key_down(kKey key)
|
||||
{
|
||||
keys[(int)key] = true;
|
||||
KeyEvent e;
|
||||
e.m_type = kEventType::KeyDown;
|
||||
e.m_key = key;
|
||||
@@ -104,6 +105,7 @@ bool App::key_down(kKey key)
|
||||
}
|
||||
bool App::key_up(kKey key)
|
||||
{
|
||||
keys[(int)key] = false;
|
||||
KeyEvent e;
|
||||
e.m_type = kEventType::KeyUp;
|
||||
e.m_key = key;
|
||||
|
||||
Reference in New Issue
Block a user