由于某种原因(可能是因为我无能为力),这只会打印0.0 0.0
ByteBuffer x = ByteBuffer.allocate(8);
ByteBuffer y = ByteBuffer.allocate(8);
GLFW.glfwGetCursorPos(Window.window, x, y);
System.out.println(x.getDouble() + " " + y.getDouble());
答案 0 :(得分:0)
修正了它。我忘了调查事件了。 DERP。