---
title: "hideObjectReticle(_:)"
framework: realitykit
role: symbol
role_heading: Instance Method
path: "realitykit/objectcaptureview/hideobjectreticle(_:)"
---

# hideObjectReticle(_:)

Hides the object selection reticle when the session is in .ready state if set to true. Example: ObjectCaptureView(session: mySession) .hideObjectReticle()

## Declaration

```swift
@MainActor @preconcurrency func hideObjectReticle(_ value: Bool = true) -> ObjectCaptureView<Overlay>
```

## Discussion

Discussion It can also be passed a value if there is a state variable controlling it: ObjectCaptureView(session: mySession) .hideObjectReticle(shouldHideObjectReticle) Other modifiers can be chained to build the final view: ObjectCaptureView(session: mySession) .hideObjectReticle() .transition(.opacity)
