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

SetConstraintParam() public method

public SetConstraintParam ( BulletConstraint constrain, ConstraintParams paramIndex, float value, ConstraintParamAxis axis ) : bool
constrain BulletConstraint
paramIndex ConstraintParams
value float
axis ConstraintParamAxis
return bool
        public override bool SetConstraintParam(BulletConstraint constrain, ConstraintParams paramIndex, float value,
            ConstraintParamAxis axis)
        {
            BulletConstraintUnman constrainu = constrain as BulletConstraintUnman;
            return BSAPICPP.SetConstraintParam2(constrainu.ptr, paramIndex, value, axis);
        }
BSAPIUnman