Allow hyperslicers to share controller objects. This allows doing stuff like this:
python
%matplotlib ipympl
import matplotlib.pyplot as plt
from mpl_interactions import hyperslicer
from skimage.data import binary_blobs
arr1 = []
arr2 = []
for i in range(10):
arr1.append(binary_blobs(length=128,n_dim=2))
arr2.append(binary_blobs(length=128,n_dim=2))
plt.figure()
controls = hyperslicer(arr1, play_buttons=True, cmap='jet')
_ = hyperslicer(arr2, play_buttons=True,alpha=.5, controls = controls)
![Peek 2020-10-24 16-30](https://user-images.githubusercontent.com/10111092/97093145-8bc5ff80-1617-11eb-86b0-401baeaaaa10.gif)