画面を60フレームかけてズームイン
const x = Graphics.width / 2;
const y = Graphics.height / 2;
$gameScreen.startZoom(x, y, 2.0, 60);

元に戻す
const x = Graphics.width / 2;
const y = Graphics.height / 2;
$gameScreen.startZoom(x, y, 1.0, 60);