BEPUphysics.Paths.PathFollowing.EntityMover.EntityMover C# (CSharp) Method

EntityMover() public method

Constructs a new EntityMover.
public EntityMover ( Entity e ) : System
e Entity Entity to move.
return System
        public EntityMover(Entity e)
        {
            IsUpdatedSequentially = false;
            LinearMotor = new SingleEntityLinearMotor(e, e.Position);
            Entity = e;

            LinearMotor.Settings.Mode = MotorMode.Servomechanism;
            TargetPosition = e.Position;
        }

Same methods

EntityMover::EntityMover ( Entity e, SingleEntityLinearMotor linearMotor ) : System