Ejemplo n.º 1
0
 public void CopyFrom(UIAnimFrame other)
 {
     if (other == null)
     {
         return;
     }
     m_type         = other.m_type;
     m_tween        = other.m_tween;
     m_method       = other.m_method;
     m_duration     = other.m_duration;
     m_position     = other.m_position;
     m_rotation     = other.m_rotation;
     m_scale        = other.m_scale;
     m_color        = other.m_color;
     m_alpha        = other.m_alpha;
     m_audioName    = other.m_audioName;
     m_particlePath = other.m_particlePath;
     //m_particleParent = other.m_particleParent;
     m_particleDestroyAfterPlay = other.m_particleDestroyAfterPlay;
 }
Ejemplo n.º 2
0
 public bool HasTween(E_TweenType tweenType)
 {
     return((((int)m_tween) & ((int)tweenType)) != 0);
 }