如何在 glut 中指定键盘的方向键?
我想使用上、下、左、右作为 opengl + glut 应用程序控件的一部分。如何引用“keyboard
”函数(我传递给 glutKeyboardFunc
的函数)内的按键?
I wanna use up, down, left, right as part of the controls of an opengl + glut application. How do I refer to the keys inside my 'keyboard
' function (the one that I pass to glutKeyboardFunc
)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要 glutSpecialFunc。
例如 -
You need glutSpecialFunc.
For example -
您的函数应该类似于这些
,并且您还需要在 main() 方法中调用这些
your functions should be something like these
and you also need to invoke these in your main() method