Ejemplo n.º 1
0
    public static MtEaseExponentialInOut Create(MtActionInterval action)
    {
        MtEaseExponentialInOut easeExpoInOut = new MtEaseExponentialInOut();

        if (easeExpoInOut.InitWithAction(action))
        {
            return(easeExpoInOut);
        }
        return(null);
    }
Ejemplo n.º 2
0
 public override MtAction Reverse()
 {
     return(MtEaseExponentialInOut.Create(m_inner.Reverse() as MtActionInterval));
 }
Ejemplo n.º 3
0
 public override MtICloneable Clone()
 {
     return(MtEaseExponentialInOut.Create(m_inner.Clone() as MtActionInterval));
 }