onGameResize method
Called whenever the size of the top-level Canvas changes.
In addition, this method will be invoked before each onMount.
Implementation
@override
@mustCallSuper
void onGameResize(Vector2 gameSize) {
super.onGameResize(gameSize);
if (isMounted) {
_updateMargins();
}
}