ataylor Posted April 7, 2016 Posted April 7, 2016 UnigineApp.cpp keyPressUnicodeFunc calls regular key press function. UnigineApp.cpp lines 324, 326: int keyPressFunc(unsigned int key) { if(key_press_func) return key_press_func(key); return 0; } int keyPressUnicodeFunc(unsigned int key) { if(key_press_func) return key_press_func(key); return 0; } should be key_press_unicode_func(key)
silent Posted April 8, 2016 Posted April 8, 2016 Hi Adam, Thank you for noticing that! Copy-paste is evil :( We will fix it ASAP. How to submit a good bug report --- FTP server for test scenes and user uploads: ftp://files.unigine.com user: upload password: 6xYkd6vLYWjpW6SN
ataylor Posted April 8, 2016 Author Posted April 8, 2016 Of course, make sure to update if(key_press_func) to if(key_press_unicode_func) too. I missed that the first time.
silent Posted April 11, 2016 Posted April 11, 2016 Hi Adam, Sure :) Already fixed in our internal builds. Thanks again! How to submit a good bug report --- FTP server for test scenes and user uploads: ftp://files.unigine.com user: upload password: 6xYkd6vLYWjpW6SN
Recommended Posts