---
title: "distance(_:to:)"
framework: spritekit
role: symbol
role_heading: Type Method
path: "spritekit/skconstraint/distance(_:to:)-7yk7n"
---

# distance(_:to:)

Creates a constraint that keeps a node within a certain distance of a point.

## Declaration

```swift
class func distance(_ range: SKRange, to point: CGPoint) -> Self
```

## Parameters

- `range`: The range of allowed distances between the node and the point.
- `point`: A point in the coordinate system of the node’s parent that is used to calculate the distance.

## Return Value

Return Value A new constraint.

## Discussion

Discussion Each time when constraints are applied, a line is projected between the node’s position and the target point. The distance between the two points is calculated, and if it lies outside the specified range, the node is pushed or pulled along this line until it lies within the range.

## See Also

### Creating Distance Constraints

- [distance(_:to:)](spritekit/skconstraint/distance(_:to:)-6507j.md)
- [distance(_:to:in:)](spritekit/skconstraint/distance(_:to:in:).md)
