static public TweenLabelInteger Begin(GameObject go, float duration, int target)
    {
        TweenLabelInteger comp = UITweener.Begin <TweenLabelInteger>(go, duration);

        comp.from = 0;
        comp.to   = target;

        if (duration <= 0f)
        {
            comp.Sample(1f, true);
            comp.enabled = false;
        }
        return(comp);
    }