---
title: "simdLook(at:)"
framework: scenekit
role: symbol
role_heading: Instance Method
path: "scenekit/scnnode/simdlook(at:)"
---

# simdLook(at:)

Changes the node’s orientation so that its local forward vector points toward the specified location.

## Declaration

```swift
func simdLook(at worldTarget: simd_float3)
```

## Parameters

- `worldTarget`: The point, in world space, to face the node toward.

## Discussion

Discussion Using this method is equivalent to calling the simdLook(at:up:localFront:) method and passing the node’s simdWorldUp and simdLocalFront vectors for the corresponding parameters. The effects of this method are animatable; that is, calling this method during an implicit-animation transaction animates the rotation effect. (See Animating SceneKit Content.)

## See Also

### Related Documentation

- [look(at:)](scenekit/scnnode/look(at:).md)

### Performing Node-Relative Operations

- [simdRotate(by:aroundTarget:)](scenekit/scnnode/simdrotate(by:aroundtarget:).md)
- [simdLocalTranslate(by:)](scenekit/scnnode/simdlocaltranslate(by:).md)
- [simdLocalRotate(by:)](scenekit/scnnode/simdlocalrotate(by:).md)
- [simdLook(at:up:localFront:)](scenekit/scnnode/simdlook(at:up:localfront:).md)
