Ejemplo n.º 1
0
    public void deInit()
    {
//		m_behaviorType = BehaviorType.Undefined;
        m_behavior   = null;
        m_interpData = null;
        m_state      = State.Undefined;
    }
Ejemplo n.º 2
0
 public MoverInterpolationData(MoverInterpolationData data)
 {
     if (data != null)
     {
         copy(data);
     }
 }
Ejemplo n.º 3
0
    //////////////////////////////////////////////////////////////////////////////////////////
    #region Methods
    //////////////////////////////////////////////////////////////////////////////////////////

    public void copy(MoverInterpolationData rhs)
    {
//		moverBehaviorType = rhs.moverBehaviorType;
        interpolationType = rhs.interpolationType;
        easingType        = rhs.easingType;
        updateRate        = rhs.updateRate;
        duration          = rhs.duration;
    }
Ejemplo n.º 4
0
    //////////////////////////////////////////////////////////////////////////////////////////
    #region Constructors
    //////////////////////////////////////////////////////////////////////////////////////////

    public Mover()
    {
        m_interpData = new MoverInterpolationData();
    }