示例#1
0
 public LinearInputMoverBehaviorData(LinearInputMoverBehaviorData data)
 {
     if (data != null)
     {
         copy(data);
     }
 }
示例#2
0
    //////////////////////////////////////////////////////////////////////////////////////////
    #region Methods
    //////////////////////////////////////////////////////////////////////////////////////////

    public void copy(LinearInputMoverBehaviorData rhs)
    {
        forwardStepSize = rhs.forwardStepSize;
        reverseStepSize = rhs.reverseStepSize;
    }