public void Do(float _duration, float _speed, float _magnitude, Shaker _shaker)
    {
        Shaker _thisShaker = _shaker;

        _thisShaker.duration  = _duration;
        _thisShaker.speed     = _speed;
        _thisShaker.magnitude = _magnitude;

        _thisShaker.PlayShake();
    }