示例#1
0
        public static CommandDelegate AlphaFrom(GUITexture texture, float startAlpha, double duration, CommandEase ease = null)
        {
            CheckArgumentNonNull(texture, "texture");

            return ChangeFrom(texture.ToAlphaRef(), startAlpha, duration, ease);
        }
示例#2
0
        public static CommandDelegate AlphaBy(GUITexture texture, float offset, double duration, CommandEase ease = null)
        {
            CheckArgumentNonNull(texture, "texture");

            return ChangeBy(texture.ToAlphaRef(), offset, duration, ease);
        }