public object GetValue(object defaultDestinationValue)
        {
            foreach (AnimationLayer layer in layers.Values)
            {
                defaultDestinationValue = layer.GetValue(defaultDestinationValue);
            }

            return(defaultLayer.GetValue(defaultDestinationValue));
        }