示例#1
0
    /// <summary>
    /// Returns a Tween instance that is configured to animate a Material.color property.
    /// Note that this function relies on the target having a renderer whose material property
    /// has been assigned. If it has not, a NullReferenceException will be thrown.
    /// </summary>
    /// <param name="component">The Monobehavior whose color will be animated.</param>
    public static Tween <Color> TweenColor(this Component component)
    {
        // Special cases for components which have a specific color property
        if (component is TextMesh)
        {
            return(TweenTextExtensions.TweenColor((TextMesh)component));
        }
        else if (component is GUIText)
        {
            return(TweenMaterialExtensions.TweenColor(((GUIText)component).material));
        }
        else if (component.GetComponent <Renderer>() is SpriteRenderer)
        {
            return(TweenSpriteExtensions.TweenColor((SpriteRenderer)component.GetComponent <Renderer>()));
        }

        if (component.GetComponent <Renderer>() == null)
        {
            throw new NullReferenceException("Component does not have a Renderer assigned");
        }

        var material = component.GetComponent <Renderer>().material;

        if (material == null)
        {
            throw new NullReferenceException("Component does not have a Material assigned");
        }

        return(TweenMaterialExtensions.TweenColor(material));
    }
示例#2
0
 public static Tween <float> Alpha(SpriteRenderer renderer)
 {
     return(TweenSpriteExtensions.TweenAlpha(renderer));
 }
示例#3
0
 public static Tween <Color> Color(SpriteRenderer renderer)
 {
     return(TweenSpriteExtensions.TweenColor(renderer));
 }