Problems with input
Problems with input
I found the way input was handled by Irrlicht to be quite ineffective so I went along and used DirectInput instead (C#). But, it seems like Irrlicht captures all user input before DirectInput. Is there any way to override this and stop Irrlicht from caring about input at all?
This is simply not true since I was using DirectInput before. But after building a few wrapper clases that made the Irrlicht input much easyier to use I decided to drop the DirectInput part for the sake of less external references and cross platform compatibility.
You could just not implement/set an event receiver and that way never get any Irrlicht input. You might as well just prevent keyinputs by returning true in the OnEvent() if its an keyboardinput event.
You could just not implement/set an event receiver and that way never get any Irrlicht input. You might as well just prevent keyinputs by returning true in the OnEvent() if its an keyboardinput event.