-
I've got this piece of code:
I can't seem to get the "input" part to actually take any user input from the keyboard when I want to input a filename. Is what I'm trying to do not possible, or am I just not knowledgable enough? |
Beta Was this translation helpful? Give feedback.
Answered by
aallfik11
Jun 17, 2023
Replies: 1 comment
-
OK, It's always embarrassing when I ask a question and minutes later, I find the answer.
to this:
Sorry for making an unnecessary discussion :( |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
aallfik11
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
OK, It's always embarrassing when I ask a question and minutes later, I find the answer.
In case someone ever finds themselves in the same situation, change this:
return renderer->OnEvent(event);
to this:
return input->OnEvent(event);
Sorry for making an unnecessary discussion :(