Set Playback Zoom
Adjusts the zoom of the playback camera.
Syntax
store.dispatch({ type: "SET_PLAYBACK_ZOOM", payload: zoom });
Parameters
zoom
The target zoom of the playback camera.
Examples
Adjusts the zoom of the playback camera to 4.
store.dispatch({
type: "SET_PLAYBACK_ZOOM",
payload: 4
});