Universe.Physics.BulletSPlugin.BSActorMoveToTarget.ActivateMoveToTarget C# (CSharp) Method

ActivateMoveToTarget() private method

private ActivateMoveToTarget ( ) : void
return void
        void ActivateMoveToTarget()
        {
            if (m_targetMotor == null)
            {
                // We're taking over after this.
                m_controllingPrim.ZeroMotion(true);

                /* TODO !!!!!
                m_targetMotor = new BSPIDVMotor("BSActorMoveToTarget-" + m_controllingPrim.LocalID.ToString());
                m_targetMotor.TimeScale = m_controllingPrim.MoveToTargetTau;
                m_targetMotor.Efficiency = 1f;
                */

                m_targetMotor = new BSVMotor("BSActorMoveToTarget-" + m_controllingPrim.LocalID,
                    m_controllingPrim.MoveToTargetTau,       // timeScale
                    BSMotor.Infinite,                        // decay time scale
                    1f                                       // efficiency
                );
                m_targetMotor.PhysicsScene = m_physicsScene; // DEBUG DEBUG so motor will output detail log messages.
                m_targetMotor.SetTarget(m_controllingPrim.MoveToTargetTarget);
                m_targetMotor.SetCurrent(m_controllingPrim.RawPosition);

                //m_physicsScene.BeforeStep += Mover;
                m_physicsScene.BeforeStep += Mover2; 
            }
            else
            {
                // If already allocated, make sure the target and other parameters are current
                m_targetMotor.SetTarget(m_controllingPrim.MoveToTargetTarget);
                m_targetMotor.SetCurrent(m_controllingPrim.RawPosition);
            }

        }