Set Player FPS
Adjusts the player fps rate.
Syntax
store.dispatch({ type: "SET_PLAYER_FPS", payload: fps });
Parameters
fps
The frames per second to set playback to.
Examples
Adjusts the playback rate to 24 fps.
store.dispatch({
type: "SET_PLAYER_FPS",
payload: 24
});