BEPUphysics.UpdateableSystems.ForceFields.BoundingBoxForceFieldShape.IsEntityAffected C# (CSharp) Method

IsEntityAffected() public method

Determines if the entity is affected by the force field.
public IsEntityAffected ( Entity testEntity ) : bool
testEntity BEPUphysics.Entities.Entity Entity to test.
return bool
        public override bool IsEntityAffected(Entity testEntity)
        {
            return true;
        }
    }