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.
libGDX アプリケーションは .resize(int width, int height) メソッドを実装する必要があるため、libGDX アプリのサイズ変更は大したことではないと考えましたが、実際のアプリケーションを JFrame にする方法や、JFrame のようにドラッグ可能なものを作成する方法が見つかりませんでした。 setResizable(true)。libGDX ではそれは不可能ですか?
デスクトップ アプリに gdx-backend-lwjgl を使用する場合は、次を使用できます。
LwjglApplicationConfiguration config = new LwjglApplicationConfiguration(); config.resizable = true; new LwjglApplication(new YourGame(), config);
SVN トランクからの最新のソースを使用します。