Set Playback Focuser

Adjusts the playback camera to focus on zero or more riders based on weights.

Syntax

store.dispatch({ type: "SET_PLAYBACK_FOLLOWER_FOCUS", payload: focusList });

Parameters

focusList

The weights of each rider on the playback camera movement.

Examples

Adjusts the playback camera to focus between riders 1 and 3.

store.dispatch({
  type: "SET_PLAYBACK_FOLLOWER_FOCUS",
  payload: [1, 0, 1]
});