[SOLVED] How to monitor window size changes?

AppSettings.setResizable(true);

I resized the window.
How to add listener?
Help me!

Welcome to the JMonkeyEngine community.

To be notified of window-resolution changes, add a SceneProcessor to the RenderManager. Make sure you implement the reshape(ViewPort, int, int) method.

1 Like

Thanks!

1 Like