Johannes Jacobs

Results 18 comments of Johannes Jacobs

> Thanks for the tip. I don't understand how something like this wouldn't be recognized as a fatal issue. > > > If no one here has more comments on...

MoonSharp is dead just like NLua... Guess I will go back to implementing my own script host with c# scripts.

Same issue like mine #475 , it looks to me like its not possible to install 2 hooks at the same time. If you need onPress and onRelease at the...

event_type property is either `down` or `up`. I am very very new to python but a simple string compare did the trick for me. So if you had your callback...

```python def keyboard_hook(e): if e.event_type == "down" and e.name == "w": #W key_pressed elif e.event_type == "up" and e.name == "w": #W key_released if e.event_type == "down" and e.name ==...

Glad I could help, Cheers