Toggle Onion Skinning

Enables or disables onion skinning.

Syntax

store.dispatch({ type: "SET_ONION_SKIN", payload: onionSkin });

Parameters

onionSkin

A boolean indicating whether the timeline should render onion skins.

Examples

Enables onion skinning.

store.dispatch({
  type: "SET_ONION_SKIN",
  payload: true
});