onGameResize method

  1. @override
void onGameResize(
  1. Vector2 gameSize
)
override

It receives the new game size. Executed right after the component is attached to a game and right before onLoad is called.

Implementation

@override
void onGameResize(Vector2 gameSize) {
  initialize(gameSize);
  super.onGameResize(gameSize);
}