Universe.Physics.BulletSPlugin.BSAPIUnman.TranslationalLimitMotor C# (CSharp) Method

TranslationalLimitMotor() public method

public TranslationalLimitMotor ( BulletConstraint constrain, float enable, float targetVel, float maxMotorForce ) : bool
constrain BulletConstraint
enable float
targetVel float
maxMotorForce float
return bool
        public override bool TranslationalLimitMotor(BulletConstraint constrain, float enable, float targetVel,
            float maxMotorForce)
        {
            BulletConstraintUnman constrainu = constrain as BulletConstraintUnman;
            return BSAPICPP.TranslationalLimitMotor2(constrainu.ptr, enable, targetVel, maxMotorForce);
        }
BSAPIUnman