[HTML5] Better fullscreen, canvas resizing.

Three canvas resize policies:
- `None`: Godot window settings are ignored.
- `Project`: Godot handles the canvas like a native app (resizing it
  when setting the window size).
- `Adaptive`: Canvas size will always adapt to browser window size.

Use `None` if you want to control the canvas size with custom JavaScript
code.
This commit is contained in:
Fabio Alessandrelli 2021-01-30 11:35:03 +01:00
parent 1eef8a318b
commit 45a67fab35
7 changed files with 198 additions and 126 deletions

View file

@ -42,7 +42,6 @@
class OS_JavaScript : public OS_Unix {
private:
VideoMode video_mode;
Vector2 windowed_size;
bool window_maximized;
bool entering_fullscreen;
bool just_exited_fullscreen;