Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
一个简单的问题:是否可以在同一个窗口中查看 java Swing 库的 gui 和 lwjgl 3D 场景而不使用任何额外的 gui 库?如何?
您可以使用方法 Display.setParent(java.awt.Canvas) 将 LWJGL 显示放在画布上。然后,您可以将此画布合并到您的 Swing GUI 中。请注意,上述方法可能存在轻微的性能问题。